/* ============================================
   ShoreEase — styles.css
   ============================================ */

/* === VARIABLES === */
:root {
  --sandy-beige: #D4B896;
  --ocean-blue: #2A6496;
  --clean-white: #FAFAFA;
  --soft-navy: #1A3A4A;
  --warm-sand: #F5EBD8;
  --light-sand: #FAF6EF;
  --text-dark: #1C1C1C;
  --text-medium: #4A4A4A;
  --text-light: #7A7A7A;
  --border-light: #E8DDD0;
  --header-height: 72px;
  --header-height-scrolled: 56px;
  --transition: 0.3s ease;
  --shadow-sm: 0 2px 8px rgba(26, 58, 74, 0.08);
  --shadow-md: 0 4px 20px rgba(26, 58, 74, 0.13);
  --shadow-lg: 0 8px 40px rgba(26, 58, 74, 0.18);
}

/* === RESET === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Lato', sans-serif;
  color: var(--text-dark);
  background-color: var(--clean-white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  color: var(--soft-navy);
}

h1 { font-size: clamp(2.2rem, 6vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.55rem); }
h4 { font-size: 1.05rem; }

p { color: var(--text-medium); line-height: 1.75; }

/* === LAYOUT UTILITIES === */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ocean-blue);
  margin-bottom: 0.75rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h2 { margin-bottom: 1rem; }

.section-header p {
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.divider {
  width: 44px;
  height: 3px;
  background: var(--sandy-beige);
  margin: 1rem auto 0;
  border-radius: 2px;
}

/* === FADE-IN ANIMATIONS === */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--ocean-blue);
  color: white;
  border-color: var(--ocean-blue);
}

.btn-primary:hover {
  background: var(--soft-navy);
  border-color: var(--soft-navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.55);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: white;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--ocean-blue);
  border-color: var(--ocean-blue);
}

.btn-outline:hover {
  background: var(--ocean-blue);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-lg { padding: 1rem 2.6rem; font-size: 0.95rem; }

/* === HEADER / NAV === */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: var(--soft-navy);
  box-shadow: var(--shadow-md);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  transition: height var(--transition);
}

.site-header.scrolled .nav-inner {
  height: var(--header-height-scrolled);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  line-height: 1;
}

.logo-img {
  height: 48px;
  width: auto;
  flex-shrink: 0;
  border-radius: 5px;
  transition: opacity var(--transition), height var(--transition);
}

.site-header.scrolled .logo-img {
  height: 38px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: white;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.logo-tagline {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sandy-beige);
  font-weight: 700;
}

.hero-slogan {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-style: italic;
  color: var(--sandy-beige);
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
  opacity: 0.9;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0; right: 0;
  height: 2px;
  background: var(--sandy-beige);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.nav-links a:hover,
.nav-links a.active {
  color: white;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-cta { margin-left: 0.75rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  z-index: 1100;
  position: relative;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--soft-navy);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--sandy-beige);
}

.mobile-nav .btn {
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  background: linear-gradient(155deg, var(--soft-navy) 0%, #1E4D6B 50%, #2A6496 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 75% 45%, rgba(42,100,150,0.35) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 15% 75%, rgba(212,184,150,0.08) 0%, transparent 55%);
  pointer-events: none;
}

/* Subtle dot-grid texture */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: calc(var(--header-height) + 4rem) 0 6rem;
  max-width: 700px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sandy-beige);
  margin-bottom: 1.75rem;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--sandy-beige);
}

.hero h1 {
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.08;
}

.hero h1 em {
  font-style: italic;
  color: var(--sandy-beige);
  display: block;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2.75rem;
  max-width: 480px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.35);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  animation: hintBounce 2.2s ease-in-out infinite;
  z-index: 1;
}

@keyframes hintBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.35; }
  50% { transform: translateX(-50%) translateY(7px); opacity: 0.6; }
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0; right: 0;
  line-height: 0;
  z-index: 1;
}

.hero-wave svg { width: 100%; height: auto; display: block; }

/* === TRUST BAR === */
.trust-bar {
  background: white;
  border-bottom: 1px solid var(--border-light);
  padding: 1.3rem 0;
}

.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--soft-navy);
  text-transform: uppercase;
}

.trust-item svg {
  color: var(--ocean-blue);
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

/* === HOW IT WORKS === */
.how-it-works {
  padding: 7rem 0;
  background: var(--light-sand);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.steps-connector {
  position: absolute;
  top: 2.3rem;
  left: calc(16.67% + 1.5rem);
  right: calc(16.67% + 1.5rem);
  height: 1px;
  background: linear-gradient(to right, var(--sandy-beige), var(--sandy-beige));
  opacity: 0.5;
}

.step-card {
  text-align: center;
  padding: 2rem 1.5rem;
}

.step-number {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--ocean-blue);
  color: white;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.75rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px var(--light-sand), 0 0 0 7px rgba(42,100,150,0.15);
}

.step-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.step-card p { font-size: 0.95rem; color: var(--text-light); }

/* === SERVICES SNAPSHOT === */
.services-snapshot {
  padding: 7rem 0;
  background: white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--light-sand);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  transition: box-shadow var(--transition), transform var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.service-icon {
  width: 48px;
  height: 48px;
  background: rgba(42,100,150,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--ocean-blue);
}

.service-card h3 { margin-bottom: 0.75rem; }
.service-card p { font-size: 0.93rem; line-height: 1.7; }

.services-cta {
  text-align: center;
  margin-top: 3rem;
}

/* === PRICING SECTION === */
.pricing-section {
  padding: 7rem 0;
  background: var(--soft-navy);
  position: relative;
  overflow: hidden;
}

.pricing-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 28px 28px;
}

.pricing-section .section-header h2 { color: white; }
.pricing-section .section-label { color: var(--sandy-beige); }
.pricing-section .section-header p { color: rgba(255,255,255,0.65); }
.pricing-section .divider { background: var(--sandy-beige); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.pricing-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all var(--transition);
  position: relative;
}

.pricing-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.22);
  transform: translateY(-5px);
}

.pricing-card.featured {
  background: var(--ocean-blue);
  border-color: var(--ocean-blue);
}

.pricing-card.featured:hover {
  background: #2f6fa7;
  border-color: #2f6fa7;
}

.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sandy-beige);
  color: var(--soft-navy);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sandy-beige);
  margin-bottom: 1.25rem;
}

.pricing-price {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  color: white;
  line-height: 1;
  margin-bottom: 0.2rem;
}

.pricing-price sup {
  font-size: 1.5rem;
  vertical-align: super;
  font-weight: 400;
}

.pricing-period {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.75rem;
}

.pricing-features {
  text-align: left;
  margin-bottom: 2rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  line-height: 1.5;
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-features li svg {
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--sandy-beige);
  width: 16px;
  height: 16px;
}

/* === TESTIMONIALS === */
.testimonials {
  padding: 7rem 0;
  background: var(--light-sand);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: box-shadow var(--transition), transform var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
  color: #F59E0B;
}

.testimonial-text {
  font-size: 0.93rem;
  line-height: 1.78;
  color: var(--text-medium);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--warm-sand);
  border: 2px solid var(--sandy-beige);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 0.88rem;
  color: var(--soft-navy);
  font-weight: 700;
  flex-shrink: 0;
}

.author-name {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--soft-navy);
  line-height: 1.3;
}

.author-location {
  font-size: 0.76rem;
  color: var(--text-light);
}

/* === FOOTER === */
.site-footer {
  background: var(--soft-navy);
  color: rgba(255,255,255,0.7);
  padding: 4.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: white;
  display: block;
  margin-bottom: 0.3rem;
}

.footer-logo-tag {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sandy-beige);
  display: block;
  margin-bottom: 1.25rem;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  max-width: 270px;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.footer-heading {
  font-family: 'Playfair Display', serif;
  color: white;
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  font-weight: 600;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--sandy-beige); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.85rem;
}

.footer-contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--sandy-beige);
  width: 16px;
  height: 16px;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.footer-contact-item a:hover { color: var(--sandy-beige); }

.footer-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.25rem;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  transition: all var(--transition);
}

.social-link:hover {
  border-color: var(--sandy-beige);
  color: var(--sandy-beige);
  background: rgba(212,184,150,0.1);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

/* === PAGE HERO (inner pages) === */
.page-hero {
  background: linear-gradient(155deg, var(--soft-navy) 0%, #1E4D6B 100%);
  padding: calc(var(--header-height) + 4rem) 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.page-hero-content { position: relative; z-index: 1; }

.page-hero h1 {
  color: white;
  margin-bottom: 1rem;
}

.page-hero p {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto;
}

.page-hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0; right: 0;
  line-height: 0;
  z-index: 1;
}

.page-hero-wave svg { width: 100%; height: auto; display: block; }

/* === SERVICES PAGE === */
.services-page {
  padding: 6rem 0;
  background: white;
}

.services-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.service-full-card {
  border: 1px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.service-full-card:hover { box-shadow: var(--shadow-md); }

.sfc-header {
  background: var(--soft-navy);
  padding: 2.25rem 2rem;
  text-align: center;
}

.sfc-header .price {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: white;
  line-height: 1;
  margin-bottom: 0.2rem;
}

.sfc-header .price sup { font-size: 1.5rem; vertical-align: super; }

.sfc-header .period {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.75rem;
}

.sfc-header h3 {
  color: var(--sandy-beige);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sfc-body {
  padding: 2rem;
  background: var(--light-sand);
}

.sfc-includes h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ocean-blue);
  margin-bottom: 0.85rem;
}

.sfc-includes li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--text-medium);
  padding: 0.35rem 0;
  line-height: 1.5;
}

.sfc-includes li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--ocean-blue);
  width: 16px;
  height: 16px;
}

.sfc-note {
  background: rgba(42,100,150,0.08);
  border-left: 3px solid var(--ocean-blue);
  padding: 0.75rem 1rem;
  border-radius: 0 4px 4px 0;
  font-size: 0.84rem;
  color: var(--text-medium);
  margin: 1.25rem 0;
  line-height: 1.6;
}

.surcharge-note {
  background: var(--warm-sand);
  border: 1px solid var(--sandy-beige);
  border-radius: 8px;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 1rem;
}

.surcharge-note svg {
  flex-shrink: 0;
  color: var(--ocean-blue);
  margin-top: 2px;
  width: 20px;
  height: 20px;
}

.surcharge-note p {
  font-size: 0.9rem;
  color: var(--text-medium);
  line-height: 1.65;
}

.services-bottom-cta {
  text-align: center;
  padding: 4rem 0 0;
  border-top: 1px solid var(--border-light);
  margin-top: 2rem;
}

.services-bottom-cta h2 { margin-bottom: 1rem; }
.services-bottom-cta p { margin-bottom: 2rem; }

/* === BOOKING PAGE === */
.booking-page {
  padding: 6rem 0;
  background: white;
}

.booking-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 4rem;
  align-items: start;
}

.booking-form-section h2 { margin-bottom: 0.5rem; }
.booking-form-section > p { color: var(--text-light); margin-bottom: 2.5rem; }

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--soft-navy);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border-light);
  border-radius: 4px;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: white;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--ocean-blue);
  box-shadow: 0 0 0 3px rgba(42,100,150,0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #E53E3E;
}

.form-error {
  font-size: 0.76rem;
  color: #E53E3E;
  display: none;
}

.form-error.show { display: block; }

.form-send-error.show {
  display: block;
  background: #FFF5F5;
  border: 1px solid #FEB2B2;
  border-radius: 4px;
  padding: 0.65rem 1rem;
  font-size: 0.85rem;
  line-height: 1.5;
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234A4A4A' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-submit-note {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.5;
}

.form-success {
  display: none;
  background: #F0FFF4;
  border: 1px solid #9AE6B4;
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
}

.form-success.show { display: block; }
.form-success h3 { color: #276749; margin-bottom: 0.5rem; }
.form-success p { color: #2F855A; font-size: 0.9rem; }

/* Booking sidebar */
.booking-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 1.5rem);
}

.booking-info-card {
  background: var(--light-sand);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.booking-info-card h3 {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: var(--soft-navy);
}

.info-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
}

.info-item:last-child { margin-bottom: 0; }

.info-icon {
  width: 36px;
  height: 36px;
  background: rgba(42,100,150,0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--ocean-blue);
}

.info-text strong {
  display: block;
  font-size: 0.82rem;
  color: var(--soft-navy);
  margin-bottom: 0.15rem;
}

.info-text span {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.5;
}

.quick-pricing {
  background: var(--soft-navy);
  border-radius: 8px;
  padding: 2rem;
}

.quick-pricing h3 {
  color: white;
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

.qp-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.qp-item:last-child { border-bottom: none; }

.qp-name {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
}

.qp-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--sandy-beige);
}

/* === ABOUT PAGE === */
.about-page {
  padding: 6rem 0;
  background: white;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 2rem;
}

.about-visual { position: relative; }

.about-img-placeholder {
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, var(--ocean-blue) 0%, var(--soft-navy) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  text-align: center;
}

.about-img-inner {
  color: rgba(255,255,255,0.2);
}

.about-img-inner svg {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
}

.about-img-inner p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--sandy-beige);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.about-badge .badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--soft-navy);
  line-height: 1;
  font-weight: 700;
}

.about-badge .badge-lbl {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--soft-navy);
  opacity: 0.65;
  line-height: 1.4;
}

.about-content .section-label { text-align: left; }
.about-content h2 { margin-bottom: 1.5rem; }

.about-content p {
  margin-bottom: 1.25rem;
  font-size: 1rem;
  line-height: 1.85;
}

.about-signature {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--ocean-blue);
  margin-top: 2rem;
}

/* Values section */
.values-section {
  padding: 6rem 0;
  background: var(--light-sand);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.value-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  transition: box-shadow var(--transition), transform var(--transition);
}

.value-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.value-icon {
  width: 54px;
  height: 54px;
  background: var(--ocean-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
}

.value-card h3 { margin-bottom: 0.75rem; font-size: 1.2rem; }
.value-card p { font-size: 0.9rem; }

/* === CONTACT PAGE === */
.contact-page {
  padding: 6rem 0;
  background: white;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.contact-info .section-label { text-align: left; }
.contact-info h2 { margin-bottom: 1rem; }

.contact-info > p {
  color: var(--text-medium);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.cm-icon {
  width: 44px;
  height: 44px;
  background: rgba(42,100,150,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--ocean-blue);
}

.cm-info strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--soft-navy);
  margin-bottom: 0.2rem;
}

.cm-info a,
.cm-info span {
  font-size: 0.95rem;
  color: var(--text-medium);
  transition: color var(--transition);
}

.cm-info a:hover { color: var(--ocean-blue); }

.contact-social-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cs-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--text-medium);
  transition: all var(--transition);
  letter-spacing: 0.04em;
}

.cs-link:hover {
  border-color: var(--ocean-blue);
  color: var(--ocean-blue);
  background: rgba(42,100,150,0.04);
}

.contact-form-card {
  background: var(--light-sand);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 2.5rem;
}

.contact-form-card h3 { margin-bottom: 0.4rem; }
.contact-form-card > p {
  color: var(--text-light);
  font-size: 0.88rem;
  margin-bottom: 1.75rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* === RESPONSIVE === */

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid > *:first-child {
    grid-column: 1 / -1;
  }
  .booking-layout {
    grid-template-columns: 1fr;
  }
  .booking-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .about-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-visual {
    max-width: 380px;
    margin: 0 auto;
  }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .logo-text { display: none; }
  .logo-img { height: 42px; }

  .hero-content {
    padding-top: calc(var(--header-height) + 2.5rem);
    padding-bottom: 6rem;
  }

  .steps-grid { grid-template-columns: 1fr; }
  .steps-connector { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

  .services-full-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .booking-sidebar { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }

  .trust-items { gap: 1.25rem; }
  .trust-item { font-size: 0.76rem; }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn { text-align: center; }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .about-badge {
    right: 0;
    bottom: -1rem;
  }

  .contact-social-row { flex-direction: column; }
  .cs-link { justify-content: center; }
}
