/*
Theme Name:  Mayson Elite Escapes
Theme URI:   https://maysoneliteescapes.com
Author:      Mayson
Author URI:  https://maysoneliteescapes.com
Description: Luxury travel agency theme for Mayson Elite Escapes — a Waiters Travel Consulting brand. Features a full-screen hero, destination galleries, services, booking form, and a premium gold-and-navy aesthetic.
Version:     1.0.0
License:     GNU General Public License v2 or later
Text Domain: mayson-elite-escapes
*/

/* =============================================
   ROOT VARIABLES & RESET
============================================= */
:root {
  --gold:        #C9A96E;
  --gold-light:  #E8D5A3;
  --gold-dark:   #9E7A3F;
  --navy:        #0D1B2A;
  --navy-mid:    #162336;
  --navy-light:  #1E3250;
  --cream:       #FAF7F2;
  --cream-mid:   #F0EBE1;
  --white:       #FFFFFF;
  --text-dark:   #1A1A1A;
  --text-mid:    #555555;
  --text-light:  #888888;
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Montserrat', sans-serif;
  --font-script: 'Dancing Script', cursive;
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-sans); background: var(--cream); color: var(--text-dark); overflow-x: hidden; line-height: 1.7; }
img { display: block; width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  z-index: 9999;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 1rem; outline: 3px solid var(--navy); outline-offset: 2px; }

/* =============================================
   UTILITY
============================================= */
.section-label {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--navy);
}

.section-title em { font-style: italic; color: var(--gold-dark); }

.divider-gold {
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  margin: 1.2rem 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.35s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  transform: translateX(-101%);
  transition: transform 0.4s var(--ease-smooth);
}

.btn:hover::after { transform: translateX(0); }

.btn-gold { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); color: var(--white); border-color: transparent; }
.btn-gold:hover { background: linear-gradient(135deg, var(--gold), var(--gold-light)); transform: translateY(-2px); box-shadow: 0 12px 35px rgba(201,169,110,0.4); }

.btn-outline-gold { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: var(--white); transform: translateY(-2px); box-shadow: 0 12px 35px rgba(201,169,110,0.3); }

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

.btn svg { width: 16px; height: 16px; flex-shrink: 0; transition: transform 0.3s var(--ease-smooth); }
.btn:hover svg { transform: translateX(4px); }

/* Focus rings - WCAG AA compliant */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.btn:focus-visible,
.nav-cta:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 4px; }
.social-link:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

/* =============================================
   NAVBAR
============================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.5rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s var(--ease-smooth);
}

.navbar.scrolled {
  background: rgba(13, 27, 42, 0.97);
  backdrop-filter: blur(12px);
  padding: 1rem 5%;
  box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}

.navbar.nav-dark {
  background: rgba(13, 27, 42, 0.97);
  backdrop-filter: blur(12px);
  padding: 1rem 5%;
}

.nav-logo { display: flex; flex-direction: column; gap: 0; line-height: 1; }
.nav-logo-main { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 500; color: var(--white); letter-spacing: 0.06em; }
.nav-logo-sub { font-family: var(--font-sans); font-size: 0.55rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); }

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

.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-smooth);
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active,
.nav-links .current-menu-item > a,
.nav-links .current_page_item > a { color: var(--gold); }
.nav-links a.active::after,
.nav-links .current-menu-item > a::after,
.nav-links .current_page_item > a::after { width: 100%; }

.nav-cta {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  padding: 0.65rem 1.6rem;
  transition: all 0.3s var(--ease-smooth);
}

.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 25px rgba(201,169,110,0.45); color: var(--navy); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--white); transition: all 0.3s ease; }

/* =============================================
   HERO (home full-screen)
============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1800&q=80');
  background-size: cover;
  background-position: center;
  animation: heroZoom 12s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1.0); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,27,42,0.78) 0%, rgba(13,27,42,0.5) 50%, rgba(13,27,42,0.35) 100%);
}

.hero-overlay-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 250px;
  background: linear-gradient(to top, var(--cream) 0%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 5%;
  max-width: 900px;
  animation: heroFadeUp 1.2s 0.3s both;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-badge { display: inline-flex; align-items: center; gap: 0.7rem; margin-bottom: 1.8rem; animation: heroFadeUp 1.2s 0.5s both; }
.hero-badge-line { width: 40px; height: 1px; background: var(--gold); }
.hero-badge span { font-family: var(--font-sans); font-size: 0.66rem; font-weight: 600; letter-spacing: 0.38em; text-transform: uppercase; color: var(--gold-light); }

.hero-title { font-family: var(--font-serif); font-size: clamp(3rem, 7vw, 6.5rem); font-weight: 300; line-height: 1.05; color: var(--white); margin-bottom: 0.4rem; animation: heroFadeUp 1.2s 0.6s both; }
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-title .script-accent { display: block; font-family: var(--font-script); font-size: clamp(3.5rem, 6vw, 5.5rem); color: var(--gold); line-height: 1; margin-top: -0.2rem; animation: heroFadeUp 1.2s 0.75s both; }

.hero-sub { font-family: var(--font-serif); font-size: clamp(1rem, 1.8vw, 1.3rem); font-weight: 300; font-style: italic; color: rgba(255,255,255,0.75); max-width: 520px; margin: 1.5rem 0 2.5rem; line-height: 1.8; animation: heroFadeUp 1.2s 0.9s both; }

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; animation: heroFadeUp 1.2s 1.1s both; }

.hero-scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  animation: fadeIn 1s 1.8s both;
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.hero-scroll span { font-family: var(--font-sans); font-size: 0.6rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.5); }

.scroll-line { width: 1px; height: 50px; background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent); animation: scrollPulse 2s ease-in-out infinite; }

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(0.8); }
}

/* =============================================
   PAGE HERO (inner pages)
============================================= */
.page-hero {
  position: relative;
  min-height: 42vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-bottom: 4rem;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: heroZoom 10s ease-out forwards;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,0.88) 0%, rgba(13,27,42,0.45) 60%, rgba(13,27,42,0.3) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 5%;
  animation: heroFadeUp 1s 0.2s both;
}

.page-hero-label { font-family: var(--font-sans); font-size: 0.65rem; font-weight: 600; letter-spacing: 0.38em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem; display: flex; align-items: center; gap: 0.8rem; }
.page-hero-label::before { content: ''; display: block; width: 35px; height: 1px; background: var(--gold); }

.page-hero-title { font-family: var(--font-serif); font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 300; color: var(--white); line-height: 1.1; }
.page-hero-title em { font-style: italic; color: var(--gold); }

/* =============================================
   STATS BAR
============================================= */
.stats-bar { background: var(--navy); padding: 2.5rem 5%; }

.stats-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }

.stat-item { padding: 0.5rem 2rem; text-align: center; border-right: 1px solid rgba(201,169,110,0.2); }
.stat-item:last-child { border-right: none; }
.stat-number { font-family: var(--font-serif); font-size: 2.5rem; font-weight: 300; color: var(--gold); line-height: 1; }
.stat-label { font-family: var(--font-sans); font-size: 0.65rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-top: 0.4rem; }

/* =============================================
   ABOUT
============================================= */
.about { padding: 8rem 5%; background: var(--cream); }

.about-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }

.about-image-wrap { position: relative; }

.about-image-main { width: 100%; aspect-ratio: 4/5; background-image: url('https://images.unsplash.com/photo-1488085061387-422e29b40080?w=800&q=80'); background-size: cover; background-position: center; }

.about-image-accent { position: absolute; bottom: -2.5rem; right: -2.5rem; width: 55%; aspect-ratio: 4/3; background-image: url('https://images.unsplash.com/photo-1503220317375-aaad61436b1b?w=600&q=80'); background-size: cover; background-position: center; border: 5px solid var(--cream); box-shadow: 0 20px 50px rgba(0,0,0,0.15); }

.about-frame { position: absolute; top: -1.5rem; left: -1.5rem; width: 70%; height: 70%; border: 1.5px solid var(--gold-light); pointer-events: none; }

.about-gold-tag { position: absolute; top: 1.5rem; right: -1rem; background: linear-gradient(135deg, var(--gold-dark), var(--gold)); color: var(--white); padding: 0.8rem 1.4rem; font-family: var(--font-sans); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; box-shadow: 0 8px 20px rgba(158,122,63,0.4); }

.about-content { padding-right: 1rem; }

.about-intro-text { font-family: var(--font-serif); font-size: 1.35rem; font-weight: 300; font-style: italic; color: var(--navy); line-height: 1.8; margin: 1.5rem 0; }

.about-body { font-family: var(--font-sans); font-size: 0.9rem; color: var(--text-mid); line-height: 2; margin-bottom: 1.5rem; }

.about-signature { font-family: var(--font-script); font-size: 2rem; color: var(--gold-dark); margin: 1.5rem 0 0.3rem; }

.about-sig-title { font-family: var(--font-sans); font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--text-light); }

/* =============================================
   SERVICES
============================================= */
.services { padding: 8rem 5%; background: var(--navy); position: relative; overflow: hidden; }

.services::before { content: ''; position: absolute; top: -200px; right: -200px; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(201,169,110,0.06) 0%, transparent 70%); pointer-events: none; }

.services-inner { max-width: 1200px; margin: 0 auto; }

.services-header { text-align: center; margin-bottom: 5rem; }
.services-header .section-title { color: var(--white); }
.services-header .divider-gold { margin: 1.2rem auto; }

.services-sub { font-family: var(--font-serif); font-style: italic; font-size: 1.05rem; color: rgba(255,255,255,0.55); max-width: 500px; margin: 0 auto; }

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

.service-card { position: relative; aspect-ratio: 3/4; overflow: hidden; cursor: pointer; }

.service-card-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.05); transition: transform 0.7s var(--ease-smooth); }
.service-card:hover .service-card-bg { transform: scale(1.12); }

.service-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,27,42,0.92) 0%, rgba(13,27,42,0.5) 45%, rgba(13,27,42,0.15) 100%); transition: background 0.5s ease; }
.service-card:hover .service-card-overlay { background: linear-gradient(to top, rgba(13,27,42,0.96) 0%, rgba(13,27,42,0.65) 50%, rgba(13,27,42,0.25) 100%); }

.service-card-content { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 2.5rem; }

.service-icon { width: 44px; height: 44px; border: 1px solid var(--gold); display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem; opacity: 0; transform: translateY(15px); transition: all 0.4s 0.1s var(--ease-smooth); }
.service-card:hover .service-icon { opacity: 1; transform: translateY(0); }
.service-icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; }

.service-label { font-family: var(--font-sans); font-size: 0.62rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.6rem; }

.service-title { font-family: var(--font-serif); font-size: 1.7rem; font-weight: 400; color: var(--white); line-height: 1.2; margin-bottom: 0.8rem; }

.service-desc { font-size: 0.82rem; color: rgba(255,255,255,0.65); line-height: 1.7; max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease-smooth), opacity 0.4s ease; opacity: 0; }
.service-card:hover .service-desc { max-height: 100px; opacity: 1; }

.service-arrow { display: flex; align-items: center; gap: 0.5rem; margin-top: 1.2rem; font-family: var(--font-sans); font-size: 0.65rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); opacity: 0; transform: translateY(10px); transition: all 0.4s 0.15s var(--ease-smooth); }
.service-card:hover .service-arrow { opacity: 1; transform: translateY(0); }
.service-arrow svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; }

/* =============================================
   EXPERIENCE STRIP
============================================= */
.experience-strip { background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%); padding: 4rem 5%; }

.experience-strip-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }

.exp-text-wrap { flex: 1; }

.exp-title { font-family: var(--font-serif); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 300; color: var(--navy); line-height: 1.2; }
.exp-title strong { font-weight: 600; }
.exp-sub { font-family: var(--font-sans); font-size: 0.82rem; color: rgba(13,27,42,0.65); margin-top: 0.5rem; }

/* =============================================
   DESTINATIONS
============================================= */
.destinations { padding: 9rem 5%; background: var(--cream-mid); }
.destinations.destinations-alt { background: var(--white); }

.destinations-inner { max-width: 1280px; margin: 0 auto; }

.destinations-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 4.5rem; flex-wrap: wrap; gap: 1.5rem; }
.destinations-intro { font-family: var(--font-serif); font-size: 1rem; font-style: italic; color: rgba(13,27,42,0.6); line-height: 1.8; max-width: 46ch; margin-top: 1rem; }

/* Featured grid — asymmetric hero layout */
.dest-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 320px 320px; gap: 1.5rem; }

/* More destinations — uniform 4-col grid */
.dest-grid-more { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.dest-card { position: relative; overflow: hidden; cursor: pointer; display: flex; flex-direction: column; justify-content: flex-end; }
.dest-grid .dest-card:first-child { grid-row: 1 / 3; }
.dest-grid-more .dest-card { aspect-ratio: 3/4; min-height: 320px; }

.dest-card-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.04); transition: transform 0.7s var(--ease-smooth); }
.dest-card:hover .dest-card-bg { transform: scale(1.12); }

.dest-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,27,42,0.88) 0%, rgba(13,27,42,0.2) 55%, transparent 100%); transition: background 0.4s; }
.dest-card:hover .dest-card-overlay { background: linear-gradient(to top, rgba(13,27,42,0.92) 0%, rgba(13,27,42,0.35) 60%, rgba(13,27,42,0.05) 100%); }

.dest-card-content { position: relative; padding: 2.5rem; z-index: 2; width: 100%; box-sizing: border-box; pointer-events: none; }
.dest-stretched-link { position: absolute; inset: 0; z-index: 3; }
.dest-grid-more .dest-card-content { padding: 1.75rem; }

.dest-region { font-family: var(--font-sans); font-size: 0.58rem; font-weight: 700; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 0.35rem; }

.dest-name { font-family: var(--font-serif); font-size: 1.6rem; font-weight: 400; color: var(--white); line-height: 1.15; }
.dest-grid .dest-card:first-child .dest-name { font-size: 2.4rem; }
.dest-grid-more .dest-card .dest-name { font-size: 1.25rem; }

.dest-tag { display: inline-block; margin-top: 0.65rem; font-family: var(--font-sans); font-size: 0.58rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--navy); background: var(--gold); padding: 0.28rem 0.75rem; transform: translateY(6px); opacity: 0; transition: all 0.35s var(--ease-smooth); }
.dest-card:hover .dest-tag { opacity: 1; transform: translateY(0); }

.dest-card-link { display: block; text-decoration: none; color: inherit; }
.dest-card-link:hover, .dest-card-link:focus { color: inherit; text-decoration: none; }

.dest-desc { font-family: var(--font-sans); font-size: 0.75rem; color: rgba(255,255,255,0.8); line-height: 1.65; margin: 0.55rem 0 0; max-width: 30ch; transform: translateY(10px); opacity: 0; transition: all 0.4s var(--ease-smooth) 0.05s; }
.dest-grid-more .dest-card .dest-desc { font-size: 0.7rem; max-width: 26ch; }
.dest-card:hover .dest-desc { opacity: 1; transform: translateY(0); }

.dest-book-cta { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 0.8rem; font-family: var(--font-sans); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); transform: translateY(10px); opacity: 0; transition: all 0.4s var(--ease-smooth) 0.1s; }
.dest-card:hover .dest-book-cta { opacity: 1; transform: translateY(0); }

/* Divider between destination sections */
.dest-section-divider { max-width: 1280px; margin: 0 auto; padding: 0 5%; }
.dest-section-divider hr { border: none; border-top: 1px solid rgba(13,27,42,0.08); margin: 0; }

/* On touch devices: always show hover states */
@media (hover: none) {
  .dest-tag, .dest-desc, .dest-book-cta { opacity: 1; transform: translateY(0); }
}

/* =============================================
   PROCESS
============================================= */
.process { padding: 8rem 5%; background: var(--white); }

.process-inner { max-width: 1100px; margin: 0 auto; }

.process-header { text-align: center; margin-bottom: 5rem; }
.process-header .divider-gold { margin: 1.2rem auto; }

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

.process-steps::before { content: ''; position: absolute; top: 2.8rem; left: 12%; right: 12%; height: 1px; background: linear-gradient(90deg, transparent, var(--gold-light), transparent); }

.process-step { text-align: center; padding: 0 1rem; }

.step-number { width: 56px; height: 56px; border-radius: 50%; background: var(--cream); border: 1.5px solid var(--gold); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; font-family: var(--font-serif); font-size: 1.2rem; font-weight: 300; color: var(--gold-dark); position: relative; z-index: 1; transition: all 0.35s var(--ease-smooth); }

.process-step:hover .step-number { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); color: var(--white); transform: scale(1.1); box-shadow: 0 8px 25px rgba(201,169,110,0.35); }

.step-title { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 500; color: var(--navy); margin-bottom: 0.7rem; }

.step-desc { font-size: 0.82rem; color: var(--text-mid); line-height: 1.8; }

/* =============================================
   TESTIMONIALS
============================================= */
.testimonials { padding: 8rem 5%; background: var(--navy); position: relative; overflow: hidden; }

.testimonials::before { content: '"'; position: absolute; top: -2rem; left: 4%; font-family: var(--font-serif); font-size: 28rem; color: rgba(201,169,110,0.04); line-height: 1; pointer-events: none; }

.testimonials-inner { max-width: 1200px; margin: 0 auto; }

.testimonials-header { text-align: center; margin-bottom: 4rem; }
.testimonials-header .section-title { color: var(--white); }
.testimonials-header .divider-gold { margin: 1.2rem auto; }

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

.testimonial-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(201,169,110,0.15); padding: 2.5rem; transition: all 0.4s var(--ease-smooth); position: relative; }

.testimonial-card::before { content: '"'; position: absolute; top: 1.5rem; right: 2rem; font-family: var(--font-serif); font-size: 4rem; color: rgba(201,169,110,0.2); line-height: 1; }

.testimonial-card:hover { background: rgba(201,169,110,0.06); border-color: rgba(201,169,110,0.35); transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,0.25); }

.stars { display: flex; gap: 3px; margin-bottom: 1.2rem; }
.stars span { color: var(--gold); font-size: 0.9rem; }

.testimonial-text { font-family: var(--font-serif); font-size: 1.0rem; font-style: italic; color: rgba(255,255,255,0.75); line-height: 1.9; margin-bottom: 1.8rem; }

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

.author-avatar { width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--gold); background-size: cover; background-position: center; flex-shrink: 0; }

.author-name { font-family: var(--font-sans); font-size: 0.8rem; font-weight: 600; color: var(--white); letter-spacing: 0.05em; }

.author-trip { font-family: var(--font-sans); font-size: 0.65rem; color: var(--gold); letter-spacing: 0.1em; margin-top: 0.2rem; }

/* =============================================
   WHY CHOOSE
============================================= */
.why { padding: 8rem 5%; background: var(--cream); }

.why-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }

.why-image { position: relative; }

.why-image-main { width: 100%; aspect-ratio: 3/4; background-image: url('https://images.unsplash.com/photo-1540541338287-41700207dee6?w=800&q=80'); background-size: cover; background-position: center; }

.why-image-card { position: absolute; bottom: -2rem; left: -2rem; background: var(--navy); padding: 2rem; width: 220px; }

.why-card-number { font-family: var(--font-serif); font-size: 3rem; font-weight: 300; color: var(--gold); line-height: 1; }

.why-card-label { font-family: var(--font-sans); font-size: 0.65rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-top: 0.3rem; }

.why-list { margin: 2.5rem 0; display: flex; flex-direction: column; gap: 1.8rem; }

.why-item { display: flex; gap: 1.2rem; }

.why-item-icon { width: 40px; height: 40px; background: linear-gradient(135deg, var(--gold-dark), var(--gold)); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.why-item-icon svg { width: 18px; height: 18px; stroke: var(--white); fill: none; }

.why-item-title { font-family: var(--font-serif); font-size: 1.05rem; font-weight: 500; color: var(--navy); margin-bottom: 0.3rem; }

.why-item-desc { font-size: 0.82rem; color: var(--text-mid); line-height: 1.75; }

/* =============================================
   CTA SECTION
============================================= */
.cta-section { position: relative; padding: 10rem 5%; overflow: hidden; }

.cta-bg { position: absolute; inset: 0; background-image: url('https://images.unsplash.com/photo-1551882547-ff40c63fe5fa?w=1600&q=80'); background-size: cover; background-position: center; }

.cta-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(13,27,42,0.9) 0%, rgba(13,27,42,0.7) 100%); }

.cta-inner { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; text-align: center; }

.cta-title { font-family: var(--font-serif); font-size: clamp(2.2rem, 4.5vw, 3.8rem); font-weight: 300; color: var(--white); line-height: 1.2; margin: 1.5rem 0; }
.cta-title em { font-style: italic; color: var(--gold); }

.cta-sub { font-family: var(--font-serif); font-style: italic; font-size: 1.05rem; color: rgba(255,255,255,0.65); margin-bottom: 2.5rem; line-height: 1.8; }

.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* =============================================
   BOOKING FORM PAGE
============================================= */
.book-section { padding: 6rem 5%; background: var(--cream); }

.book-inner { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.6fr; gap: 5rem; align-items: start; }

.book-info-title { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 500; color: var(--navy); margin: 1.5rem 0 0.5rem; }

.book-info-text { font-size: 0.85rem; color: var(--text-mid); line-height: 1.85; }

.book-contact-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }

.book-contact-item { display: flex; align-items: center; gap: 0.9rem; }
.book-contact-item svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; flex-shrink: 0; }
.book-contact-item span { font-size: 0.85rem; color: var(--text-mid); }

.book-form { background: var(--white); padding: 3rem; box-shadow: 0 10px 50px rgba(0,0,0,0.06); }

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

.form-group { display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 1.2rem; }

.form-label { font-family: var(--font-sans); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--navy); }

.form-input,
.form-select,
.form-textarea {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: var(--text-dark);
  background: var(--cream);
  border: 1.5px solid var(--cream-mid);
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.12);
}

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

.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239E7A3F' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; }

.form-submit { width: 100%; padding: 1.1rem; background: linear-gradient(135deg, var(--gold-dark), var(--gold)); color: var(--white); border: none; font-family: var(--font-sans); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; cursor: pointer; transition: all 0.35s var(--ease-smooth); margin-top: 0.5rem; }
.form-submit:hover { background: linear-gradient(135deg, var(--gold), var(--gold-light)); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(201,169,110,0.4); }

.form-note { font-size: 0.72rem; color: var(--text-light); text-align: center; margin-top: 1rem; line-height: 1.6; }

/* WPForms override — match site style */
.wpforms-form .wpforms-field-label { font-family: var(--font-sans) !important; font-size: 0.65rem !important; font-weight: 700 !important; letter-spacing: 0.18em !important; text-transform: uppercase !important; color: var(--navy) !important; }
.wpforms-form input, .wpforms-form select, .wpforms-form textarea { font-family: var(--font-sans) !important; background: var(--cream) !important; border: 1.5px solid var(--cream-mid) !important; border-radius: 0 !important; }
.wpforms-form input:focus, .wpforms-form select:focus, .wpforms-form textarea:focus { border-color: var(--gold) !important; box-shadow: 0 0 0 3px rgba(201,169,110,0.12) !important; }
.wpforms-submit { background: linear-gradient(135deg, var(--gold-dark), var(--gold)) !important; border: none !important; border-radius: 0 !important; font-family: var(--font-sans) !important; letter-spacing: 0.2em !important; text-transform: uppercase !important; }

/* =============================================
   FOOTER
============================================= */
.footer { background: var(--navy); padding: 5rem 5% 2.5rem; border-top: 1px solid rgba(201,169,110,0.15); }

.footer-inner { max-width: 1200px; margin: 0 auto; }

.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem; padding-bottom: 4rem; border-bottom: 1px solid rgba(255,255,255,0.07); }

.footer-logo-main { font-family: var(--font-serif); font-size: 1.6rem; font-weight: 400; color: var(--white); letter-spacing: 0.06em; }

.footer-logo-sub { font-family: var(--font-sans); font-size: 0.55rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-top: 0.2rem; }

.footer-brand-desc { font-size: 0.82rem; color: rgba(255,255,255,0.45); line-height: 1.9; margin: 1.5rem 0; max-width: 280px; }

.footer-social { display: flex; gap: 0.8rem; }

.social-link { width: 36px; height: 36px; border: 1px solid rgba(201,169,110,0.3); display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; }
.social-link:hover { background: var(--gold); border-color: var(--gold); }
.social-link svg { width: 14px; height: 14px; stroke: rgba(255,255,255,0.6); fill: none; transition: stroke 0.3s ease; }
.social-link:hover svg { stroke: var(--white); }

.footer-col-title { font-family: var(--font-sans); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; }

.footer-links { display: flex; flex-direction: column; gap: 0.8rem; }
.footer-links a { font-size: 0.82rem; color: rgba(255,255,255,0.45); transition: color 0.3s ease; }
.footer-links a:hover { color: var(--gold-light); }

.footer-contact-item { display: flex; align-items: flex-start; gap: 0.8rem; margin-bottom: 1rem; }
.footer-contact-item svg { width: 14px; height: 14px; stroke: var(--gold); fill: none; flex-shrink: 0; margin-top: 3px; }
.footer-contact-item span { font-size: 0.82rem; color: rgba(255,255,255,0.45); line-height: 1.6; }

.footer-bottom { padding-top: 2rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }

.footer-copy { font-size: 0.72rem; color: rgba(255,255,255,0.3); }
.footer-copy span { color: var(--gold); }

.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: 0.72rem; color: rgba(255,255,255,0.3); transition: color 0.3s ease; }
.footer-bottom-links a:hover { color: var(--gold); }

/* =============================================
   SCROLL REVEAL
============================================= */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth); }
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Respect user's motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .reveal.revealed {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid .service-card:last-child { display: none; }
  .about-inner, .why-inner { grid-template-columns: 1fr; gap: 4rem; }
  .about-image-accent { right: 0; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
  .process-steps::before { display: none; }
  .dest-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 260px 260px 260px; }
  .dest-grid .dest-card:first-child { grid-column: 1 / 3; grid-row: auto; min-height: 260px; }
  .dest-grid-more { grid-template-columns: repeat(2, 1fr); }
  .book-inner { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .services-grid { grid-template-columns: 1fr; }
  .services-grid .service-card:last-child { display: block; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .experience-strip-inner { flex-direction: column; text-align: center; }
  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .dest-grid { grid-template-columns: 1fr; grid-template-rows: repeat(4, 260px); }
  .dest-grid .dest-card:first-child { grid-column: auto; grid-row: auto; }
  .dest-grid-more { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .book-form { padding: 2rem; }
}

/* =============================================
   MOBILE NAV MENU
============================================= */
.mobile-nav { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: var(--navy); z-index: 999; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2rem; transform: translateX(100%); transition: transform 0.5s var(--ease-smooth); }
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a { font-family: var(--font-serif); font-size: 2rem; font-weight: 300; color: var(--white); transition: color 0.3s ease; }
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav-close { position: absolute; top: 2rem; right: 5%; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.mobile-nav-close svg { width: 28px; height: 28px; stroke: var(--white); fill: none; }

/* =============================================
   FAMILY PACKAGES POPUP
============================================= */
.pkg-popup {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-smooth), visibility 0.4s;
}
.pkg-popup.open { opacity: 1; visibility: visible; pointer-events: all; }

.pkg-popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 27, 42, 0.82);
  backdrop-filter: blur(4px);
}

.pkg-popup-box {
  position: relative;
  z-index: 1;
  background: var(--cream);
  max-width: 980px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 3rem;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.4s var(--ease-smooth);
}
.pkg-popup.open .pkg-popup-box { transform: translateY(0) scale(1); }

.pkg-popup-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--text-mid);
  transition: color 0.2s ease;
}
.pkg-popup-close:hover { color: var(--navy); }
.pkg-popup-close svg { width: 22px; height: 22px; stroke: currentColor; fill: none; display: block; }

.pkg-popup-header { text-align: center; margin-bottom: 2.5rem; }

.pkg-popup-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  color: var(--navy);
  line-height: 1.2;
  margin: 0.6rem 0 0.8rem;
}
.pkg-popup-title em { font-style: italic; color: var(--gold-dark); }

.pkg-popup-sub { font-family: var(--font-serif); font-style: italic; font-size: 0.95rem; color: var(--text-mid); }

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

.pkg-card {
  background: var(--white);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s var(--ease-smooth), box-shadow 0.3s var(--ease-smooth);
}
.pkg-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.14); }

.pkg-card-img {
  height: 160px;
  background-size: cover;
  background-position: center;
  position: relative;
  flex-shrink: 0;
}
.pkg-card-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(13,27,42,0.1) 0%, rgba(13,27,42,0.3) 100%); }

.pkg-card-tag {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  z-index: 1;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.35rem 0.8rem;
}

.pkg-card-body { padding: 1.4rem; display: flex; flex-direction: column; flex: 1; }

.pkg-card-location {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.pkg-card-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 1rem;
}

.pkg-card-features { list-style: none; padding: 0; margin: 0 0 1.2rem; display: flex; flex-direction: column; gap: 0.4rem; flex: 1; }
.pkg-card-features li { font-family: var(--font-sans); font-size: 0.75rem; color: var(--text-mid); padding-left: 1.1rem; position: relative; }
.pkg-card-features li::before { content: '✦'; position: absolute; left: 0; color: var(--gold); font-size: 0.45rem; top: 3px; }

.pkg-card-price {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--text-mid);
  margin-bottom: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--cream-mid);
}
.pkg-card-price strong { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 400; color: var(--navy); }
.pkg-card-price span { font-size: 0.7rem; color: var(--text-light); }

.pkg-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  padding: 0.75rem 1.2rem;
  transition: all 0.3s var(--ease-smooth);
  text-decoration: none;
}
.pkg-card-cta:hover { background: linear-gradient(135deg, var(--gold), var(--gold-light)); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(201,169,110,0.4); color: var(--white); }
.pkg-card-cta svg { width: 12px; height: 12px; stroke: currentColor; fill: none; flex-shrink: 0; transition: transform 0.3s ease; }
.pkg-card-cta:hover svg { transform: translateX(3px); }

.pkg-popup-note {
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  color: var(--text-light);
  letter-spacing: 0.06em;
  padding-top: 1.5rem;
  border-top: 1px solid var(--cream-mid);
}

@media (max-width: 768px) {
  .pkg-popup-box { padding: 2rem 1.5rem; }
  .pkg-popup-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .pkg-card-img { height: 140px; }
}

/* =============================================
   LAYOUT UTILITIES
   ============================================= */

.container {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.section-pad {
  padding: 7rem 5%;
}

@media (max-width: 768px) {
  .section-pad { padding: 4rem 5%; }
}

/* =============================================
   PHONE CTA & FLOATING CALL BUTTON
   ============================================= */

/* Navbar phone link */
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: opacity 0.2s;
}
.nav-phone:hover { opacity: 0.75; }
.nav-phone svg { stroke: currentColor; flex-shrink: 0; }

/* Hide nav-phone on small screens (floating button used instead) */
@media (max-width: 900px) {
  .nav-phone { display: none; }
}

/* Footer phone link */
.footer-phone-link {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-phone-link:hover { color: var(--gold); }

/* Floating call button — mobile only */
.call-float {
  display: none;
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 8000;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50px;
  padding: 0.75rem 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 20px rgba(201,169,110,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}
.call-float svg { stroke: currentColor; width: 18px; height: 18px; }
.call-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,169,110,0.55);
}
@media (max-width: 900px) {
  .call-float { display: inline-flex; }
}
@media (prefers-reduced-motion: reduce) {
  .call-float { transition: none; }
}
