/* ============================================
   LEIGH WITH COUNSELORS TRAVEL — style.css
   ============================================ */

:root {
  --navy: #0D2B45;
  --ocean: #1A5F7A;
  --teal: #2A9D8F;
  --seafoam: #52B788;
  --sky: #A8DADC;
  --cream: #F7F3EE;
  --sand: #E8DFD0;
  --gold: #C9A84C;
  --white: #FFFFFF;
  --text: #1A1A2E;
  --muted: #6B7A8D;
  --nav-h: 72px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  padding-top: var(--nav-h);
}

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

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(13, 43, 69, 0.97);
  backdrop-filter: blur(8px);
  z-index: 100;
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.2); }
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
}
.nav-logo-sub {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sky);
  font-weight: 400;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  padding: 8px 14px;
  border-radius: 4px;
  transition: all 0.2s;
  letter-spacing: 0.3px;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links .nav-cta {
  background: var(--teal);
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: 4px;
  font-weight: 500;
  margin-left: 8px;
  transition: background 0.2s;
}
.nav-links .nav-cta:hover { background: #23857a; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}
.btn-primary {
  background: var(--teal);
  color: var(--white);
}
.btn-primary:hover { background: #23857a; transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-ghost:hover { border-color: white; background: rgba(255,255,255,0.08); }
.btn-white {
  background: var(--white);
  color: var(--navy);
}
.btn-white:hover { background: var(--cream); transform: translateY(-1px); }
.btn-full { width: 100%; text-align: center; }

/* ---- SECTION SHARED ---- */
.section { padding: 88px 0; }
.section-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}
.section-header { text-align: center; margin-bottom: 56px; }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 300;
  color: var(--navy);
  line-height: 1.15;
}
.section-title em { font-style: italic; color: var(--teal); }

/* ---- HERO ---- */
.hero {
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(13,43,69,0.92) 40%, rgba(13,43,69,0.5) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px 40px;
  display: flex;
  align-items: center;
  gap: 64px;
}
.hero-photo-wrap {
  flex-shrink: 0;
}
.hero-photo {
  width: 260px;
  height: 320px;
  object-fit: cover;
  border-radius: 4px;
  border: 3px solid rgba(168,218,220,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
}
.hero-title em { font-style: italic; color: var(--sky); }
.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.8); }
}

/* ---- INTRO STRIP ---- */
.intro-strip {
  background: var(--white);
  border-bottom: 1px solid var(--sand);
}
.intro-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px 0;
  gap: 0;
}
.intro-stat {
  text-align: center;
  padding: 0 48px;
}
.intro-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 300;
  color: var(--navy);
  line-height: 1;
}
.intro-stat-label {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}
.intro-divider {
  width: 1px;
  height: 48px;
  background: var(--sand);
  flex-shrink: 0;
}

/* ---- SPECIALTIES ---- */
.specialties { background: var(--cream); }
.specialty-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.specialty-card {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: 6px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  transition: all 0.25s;
  cursor: pointer;
}
.specialty-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(13,43,69,0.1);
  border-color: var(--teal);
}
.specialty-icon { font-size: 32px; margin-bottom: 16px; }
.specialty-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 12px;
}
.specialty-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
}
.specialty-link {
  margin-top: 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--teal);
}

/* ---- WHY ---- */
.why { background: var(--white); }
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-list {
  list-style: none;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.why-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-check {
  width: 24px;
  height: 24px;
  background: var(--teal);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-list strong { display: block; font-weight: 500; color: var(--navy); font-size: 15px; }
.why-list span { font-size: 13px; color: var(--muted); }
.why-visual { position: relative; }
.why-card-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.why-card {
  background: var(--navy);
  border-radius: 8px;
  padding: 28px;
  width: 100%;
}
.why-card-1 { }
.why-card-2 { background: var(--ocean); }
.why-card-icon { font-size: 24px; margin-bottom: 10px; }
.why-card-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 12px;
}
.why-card-author { font-size: 12px; color: var(--sky); letter-spacing: 1px; }

/* ---- CTA BANNER ---- */
.cta-banner {
  background: var(--navy);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(42,157,143,0.2) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-inner p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* ---- FOOTER ---- */
.footer {
  background: #091f33;
  padding: 64px 0 0;
}
.footer-inner {
  display: flex;
  gap: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand { flex: 0 0 280px; }
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 8px;
}
.footer-logo em { font-style: italic; color: var(--sky); }
.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  font-style: italic;
  margin-bottom: 20px;
}
.footer-social { display: flex; gap: 12px; }
.social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all 0.2s;
}
.social-link:hover { border-color: var(--teal); color: var(--teal); }
.footer-links { display: flex; gap: 48px; flex: 1; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  flex-wrap: wrap;
  gap: 8px;
}

/* ---- PAGE HERO ---- */
.page-hero {
  background: var(--navy);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(42,157,143,0.2) 0%, transparent 60%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  max-width: 700px;
}
.page-hero h1 em { font-style: italic; color: var(--sky); }
.page-hero-short { padding: 60px 0; }

/* ---- ABOUT ---- */
.about-main { background: var(--cream); }
.about-inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 72px;
  align-items: flex-start;
}
.about-photo-wrap { position: relative; margin-bottom: 24px; }
.about-photo {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 4px;
  background: var(--sky);
  display: block;
  min-height: 420px;
}
.about-photo-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--teal);
  color: white;
  padding: 16px 20px;
  border-radius: 4px;
  text-align: center;
}
.about-photo-badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  line-height: 1;
}
.about-photo-badge-text { font-size: 11px; line-height: 1.3; opacity: 0.9; margin-top: 4px; }
.about-quick-facts {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}
.fact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text);
}
.fact-icon { font-size: 18px; }
.about-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 24px;
}
.about-text-col p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 18px;
}
.about-passion {
  margin-top: 32px;
  padding: 28px;
  background: var(--white);
  border-left: 3px solid var(--teal);
  border-radius: 0 4px 4px 0;
}
.about-passion-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.about-passion p { margin-bottom: 0; }

/* ---- AGENCY ---- */
.agency-section { background: var(--white); }
.agency-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.agency-text p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 16px;
}
.agency-badges {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.agency-badge {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--cream);
  padding: 24px;
  border-radius: 6px;
  border: 1px solid var(--sand);
}
.agency-badge-icon { font-size: 28px; flex-shrink: 0; }
.agency-badge-title { font-weight: 500; color: var(--navy); margin-bottom: 4px; font-size: 15px; }
.agency-badge-desc { font-size: 13px; color: var(--muted); }

/* ---- DESTINATIONS ---- */
.dest-section { background: var(--cream); }
.dest-section.dest-alt { background: var(--white); }
.dest-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 72px;
  align-items: center;
}
.dest-inner-reverse { grid-template-columns: 420px 1fr; }
.dest-inner-reverse .dest-visual { order: -1; }
.dest-eyebrow {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.dest-text p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 16px;
}
.dest-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 32px;
}
.dest-highlight {
  background: var(--white);
  border: 1px solid var(--sand);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  color: var(--navy);
}
.dest-alt .dest-highlight { background: var(--cream); }
.dest-visual {
  border-radius: 8px;
  padding: 40px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.dest-visual-navy { background: var(--navy); }
.dest-visual-teal { background: var(--teal); }
.dest-visual-seafoam { background: var(--seafoam); }
.dest-visual-ocean { background: var(--ocean); }
.dest-icon-large { font-size: 56px; margin-bottom: 16px; }
.dest-visual-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 8px;
}
.dest-visual-desc { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.6; }
.dest-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  border-radius: 8px;
}

/* ---- NOT SURE ---- */
.not-sure {
  background: var(--cream);
  padding: 64px 0;
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
}
.not-sure-inner { text-align: center; max-width: 600px; margin: 0 auto; }
.not-sure-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 12px;
}
.not-sure-inner p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

/* ---- CONTACT ---- */
.contact-section { background: var(--cream); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 64px;
  align-items: flex-start;
}
.contact-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 12px;
}
.contact-subhead {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 36px;
}
.inquiry-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--sand);
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
  resize: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
}
.form-group-check { flex-direction: row; align-items: flex-start; }
.checkbox-label { display: flex; gap: 12px; align-items: flex-start; cursor: pointer; }
.checkbox-label input { width: 16px; height: 16px; margin-top: 2px; accent-color: var(--teal); flex-shrink: 0; }
.checkbox-label span { font-size: 13px; color: var(--muted); line-height: 1.5; }
.form-note { font-size: 12px; color: var(--muted); text-align: center; margin-top: -8px; }
.form-success {
  text-align: center;
  padding: 60px 40px;
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: 8px;
}
.success-icon {
  width: 56px; height: 56px;
  background: var(--teal);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 20px;
}
.form-success h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 12px;
}
.form-success p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* CONTACT SIDEBAR */
.contact-info-card {
  background: var(--navy);
  border-radius: 8px;
  padding: 32px;
  margin-bottom: 24px;
}
.contact-info-title {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 24px;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon { color: var(--teal); flex-shrink: 0; margin-top: 2px; font-size: 18px; }
.contact-info-label { font-size: 11px; color: rgba(255,255,255,0.4); margin-bottom: 3px; letter-spacing: 1px; text-transform: uppercase; }
.contact-info-value { font-size: 14px; color: var(--white); }
.contact-info-value:hover { color: var(--sky); }
.contact-faq {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: 8px;
  padding: 28px;
}
.contact-faq-title {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
}
.faq-item { padding: 14px 0; border-bottom: 1px solid var(--sand); }
.faq-item:last-child { border-bottom: none; padding-bottom: 0; }
.faq-q { font-size: 14px; font-weight: 500; color: var(--navy); margin-bottom: 6px; }
.faq-a { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-text { animation: fadeUp 0.7s ease both; }
.hero-photo-wrap { animation: fadeUp 0.7s 0.15s ease both; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .specialty-grid { grid-template-columns: repeat(2, 1fr); }
  .why-inner, .agency-inner, .dest-inner, .dest-inner-reverse { grid-template-columns: 1fr; gap: 40px; }
  .dest-inner-reverse .dest-visual { order: 0; }
  .contact-inner { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  body { --nav-h: 64px; }
  .container { padding: 0 20px; }
  .section { padding: 56px 0; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 20px;
    gap: 4px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; }
  .nav-links .nav-cta { margin-left: 0; }
  .hero-content { flex-direction: column; gap: 32px; padding: 60px 20px; }
  .hero-photo { width: 200px; height: 240px; }
  .intro-strip-inner { flex-wrap: wrap; gap: 24px; }
  .intro-divider { display: none; }
  .specialty-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 32px; }
  .footer-links { flex-wrap: wrap; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 4px; }
}

/* ---- GOOGLE FORM CTA ---- */
.google-form-cta {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: 8px;
  padding: 48px 40px;
  text-align: center;
  margin-bottom: 32px;
}
.google-form-icon { font-size: 48px; margin-bottom: 16px; }
.google-form-cta h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 12px;
}
.google-form-cta p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 400px;
  margin: 0 auto;
}
.contact-reassurance {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.reassurance-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: 4px;
}
.reassurance-icon {
  width: 24px;
  height: 24px;
  background: var(--teal);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}
.reassurance-item strong { display: block; font-weight: 500; color: var(--navy); font-size: 15px; }
.reassurance-item span { font-size: 13px; color: var(--muted); }

/* ---- TESTIMONIALS ---- */
.testimonials-section { background: var(--cream); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: 8px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.25s;
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(13,43,69,0.08);
  border-color: var(--teal);
}
.testimonial-stars { font-size: 16px; letter-spacing: 2px; }
.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-style: italic;
  font-weight: 300;
  color: var(--navy);
  line-height: 1.6;
  flex: 1;
}
.testimonial-author {
  padding-top: 16px;
  border-top: 1px solid var(--sand);
}
.testimonial-name { font-weight: 500; color: var(--navy); font-size: 14px; }
.testimonial-trip { font-size: 12px; color: var(--teal); letter-spacing: 1px; text-transform: uppercase; margin-top: 2px; }

@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ---- TESTIMONIALS CTA ---- */
.testimonials-cta {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: var(--muted);
}
.testimonials-cta a {
  color: var(--teal);
  font-weight: 500;
  text-decoration: underline;
}
.testimonials-cta a:hover { color: var(--ocean); }
