/* ==========================================================================
   Cre8tive Travel & Tours — public site
   1. Tokens          6. Hero              11. Blog
   2. Base            7. Sections          12. Forms
   3. Utilities       8. Package cards     13. Footer
   4. Buttons         9. Counters/trust    14. Floating UI
   5. Navigation     10. Testimonials      15. Motion & responsive
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Deep navy — the night sky over the Haram */
  --navy-900: #050f22;
  --navy-800: #0b1f3a;
  --navy-700: #123a5e;
  --navy-600: #1b5180;

  /* Gold — lamps, calligraphy, the Kiswah border */
  --gold-600: #9a7530;
  --gold-500: #b8903f;
  --gold-400: #d8b063;
  --gold-300: #f0cd8b;
  --gold-200: #f7e3bd;

  /* Emerald — the dome of Madinah */
  --emerald-700: #0a4d3a;
  --emerald-600: #0f6b52;
  --emerald-500: #16866a;
  --emerald-300: #6bc4ab;

  /* Warm neutrals */
  --cream: #f7f3ea;
  --sand: #ece2d0;
  --ink: #12203a;
  --muted: #64748b;
  --line: rgba(11, 31, 58, 0.12);

  --danger: #b8342c;
  --warning: #c47f1a;
  --success: #167a56;

  /* Surfaces */
  --surface: #ffffff;
  --surface-2: #fbf8f2;
  --glass: rgba(255, 255, 255, 0.08);
  --glass-line: rgba(255, 255, 255, 0.18);

  /* Type */
  --font-display: "Georgia", "Iowan Old Style", "Palatino Linotype", "Times New Roman", serif;
  --font-body: "Segoe UI", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;

  /* Rhythm */
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 26px;
  --shadow-sm: 0 2px 10px -4px rgba(5, 15, 34, 0.25);
  --shadow: 0 18px 40px -22px rgba(5, 15, 34, 0.55);
  --shadow-lg: 0 40px 80px -40px rgba(5, 15, 34, 0.75);
  --nav-h: 78px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 20px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; display: block; }
img { height: auto; }

a { color: var(--navy-700); text-decoration: none; transition: color .2s var(--ease-out); }
a:hover { color: var(--gold-600); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.18;
  letter-spacing: -0.015em;
  margin: 0 0 .6em;
  font-weight: 700;
}

h1 { font-size: clamp(2.1rem, 5.2vw, 3.9rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.7rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.55rem); }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

:focus-visible {
  outline: 3px solid var(--gold-400);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--gold-300); color: var(--navy-900); }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 999;
  background: var(--navy-800); color: #fff; padding: 12px 20px;
  border-radius: 0 0 12px 12px; transition: top .2s var(--ease-out);
}
.skip-link:focus { top: 0; color: #fff; }

/* --------------------------------------------------------------------------
   3. Utilities
   -------------------------------------------------------------------------- */
.container { width: min(1220px, calc(100% - 44px)); margin-inline: auto; }
.container-narrow { width: min(820px, calc(100% - 44px)); margin-inline: auto; }

.section { padding: clamp(64px, 8vw, 118px) 0; position: relative; }
.section--tight { padding: clamp(48px, 5vw, 72px) 0; }
.section--dark { background: var(--navy-800); color: #e8eef6; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.section--sand { background: linear-gradient(180deg, var(--cream), var(--sand)); }

.section-head { max-width: 720px; margin: 0 auto clamp(36px, 5vw, 62px); text-align: center; }
.section-head--left { margin-inline: 0; text-align: left; }
.section-head p { color: var(--muted); font-size: 1.05rem; }
.section--dark .section-head p { color: #a9bdd4; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-body); font-size: .74rem; font-weight: 700;
  letter-spacing: .19em; text-transform: uppercase;
  color: var(--gold-600); margin-bottom: 14px;
}
.eyebrow::before {
  content: ""; width: 30px; height: 2px; flex: none;
  background: linear-gradient(90deg, transparent, var(--gold-400));
}
.section--dark .eyebrow { color: var(--gold-300); }

.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }

.text-center { text-align: center; }
.text-gold { color: var(--gold-400); }
.text-muted { color: var(--muted); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-3 { margin-top: 18px; }
.mt-4 { margin-top: 26px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* Islamic geometric pattern, drawn once and reused as a tint */
.pattern-overlay::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='none' stroke='%23d8b063' stroke-width='1.1'%3E%3Cpath d='M40 0l40 40-40 40L0 40z'/%3E%3Cpath d='M40 14l26 26-26 26-26-26z'/%3E%3Ccircle cx='40' cy='40' r='9'/%3E%3Cpath d='M0 0h80v80H0z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 80px 80px;
}

.divider-ornament {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  margin: 34px 0; color: var(--gold-400);
}
.divider-ornament::before,
.divider-ornament::after {
  content: ""; height: 1px; width: min(140px, 24vw);
  background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
}

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.btn {
  --btn-bg: var(--navy-800);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px; border: 0; border-radius: 999px; cursor: pointer;
  font: 600 .96rem/1 var(--font-body); letter-spacing: .01em;
  background: var(--btn-bg); color: var(--btn-fg);
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out), background .25s;
  box-shadow: 0 12px 26px -16px rgba(5, 15, 34, .9);
  position: relative; overflow: hidden; text-align: center;
}
.btn:hover { transform: translateY(-3px); color: var(--btn-fg); box-shadow: 0 20px 34px -18px rgba(5, 15, 34, .95); }
.btn:active { transform: translateY(-1px); }

.btn-gold {
  --btn-bg: linear-gradient(120deg, var(--gold-300), var(--gold-400) 55%, var(--gold-500));
  --btn-fg: var(--navy-900);
  box-shadow: 0 14px 32px -14px rgba(216, 176, 99, .95);
}
.btn-emerald { --btn-bg: linear-gradient(120deg, var(--emerald-500), var(--emerald-700)); }

.btn-ghost {
  --btn-bg: transparent; --btn-fg: #fff;
  border: 1.5px solid rgba(255, 255, 255, .45);
  backdrop-filter: blur(6px); box-shadow: none;
}
.btn-ghost:hover { background: rgba(255, 255, 255, .12); }

.btn-outline {
  --btn-bg: transparent; --btn-fg: var(--navy-800);
  border: 1.5px solid var(--line); box-shadow: none;
}
.btn-outline:hover { background: var(--navy-800); --btn-fg: #fff; border-color: var(--navy-800); }

.btn-sm { padding: 10px 20px; font-size: .86rem; }
.btn-lg { padding: 18px 38px; font-size: 1.03rem; }
.btn-block { width: 100%; }

/* Slow sheen sweep on the primary CTA */
.btn-glow::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, .55) 50%, transparent 70%);
  transform: translateX(-120%);
  animation: sheen 4.5s var(--ease-in-out) infinite;
}
@keyframes sheen {
  0%, 62% { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}

.btn-whatsapp { --btn-bg: #25d366; --btn-fg: #06331a; }

/* --------------------------------------------------------------------------
   5. Navigation
   -------------------------------------------------------------------------- */
.site-nav {
  position: fixed; inset: 0 0 auto; z-index: 200; height: var(--nav-h);
  display: flex; align-items: center;
  background: transparent;
  transition: background .35s var(--ease-out), box-shadow .35s, height .35s, backdrop-filter .35s;
}
.site-nav.is-stuck {
  height: 66px;
  background: rgba(7, 22, 44, .88);
  backdrop-filter: blur(16px) saturate(1.4);
  box-shadow: 0 12px 30px -20px rgba(0, 0, 0, .9);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}
/* Interior pages start with a solid bar since there is no hero video behind it */
.site-nav.is-solid { background: rgba(7, 22, 44, .95); backdrop-filter: blur(14px); }

.site-nav .container { display: flex; align-items: center; gap: 26px; }

.brand { display: flex; align-items: center; gap: 12px; color: #fff; flex: none; }
.brand:hover { color: #fff; }
.brand-mark {
  width: 42px; height: 42px; flex: none; display: grid; place-items: center;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  box-shadow: 0 8px 20px -10px rgba(216, 176, 99, .95);
}
.brand-mark svg { width: 24px; height: 24px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.12; }
.brand-text strong { font-family: var(--font-display); font-size: 1.06rem; letter-spacing: .01em; }
.brand-text span { font-size: .62rem; letter-spacing: .26em; text-transform: uppercase; color: var(--gold-300); }

.nav-menu { display: flex; align-items: center; gap: 4px; margin-left: auto; list-style: none; padding: 0; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 15px; border-radius: 999px;
  color: rgba(255, 255, 255, .86); font-size: .93rem; font-weight: 500;
  transition: color .2s, background .2s;
}
.nav-menu > li > a:hover,
.nav-menu > li.is-active > a { color: #fff; background: rgba(255, 255, 255, .1); }
.nav-menu > li.is-active > a { color: var(--gold-300); }
.nav-caret { width: 9px; height: 9px; transition: transform .25s var(--ease-out); opacity: .7; }
.nav-menu > li:hover .nav-caret { transform: rotate(180deg); }

/* Dropdowns */
.nav-drop {
  position: absolute; top: calc(100% + 10px); left: 50%; translate: -50% 0;
  min-width: 274px; padding: 10px; margin: 0; list-style: none;
  background: rgba(9, 26, 49, .97);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .25s var(--ease-out), transform .25s var(--ease-out), visibility .25s;
}
.nav-menu > li:hover .nav-drop,
.nav-menu > li:focus-within .nav-drop { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-drop::before {
  content: ""; position: absolute; top: -6px; left: 50%; translate: -50% 0;
  width: 12px; height: 12px; rotate: 45deg;
  background: rgba(9, 26, 49, .97);
  border-left: 1px solid rgba(255, 255, 255, .1);
  border-top: 1px solid rgba(255, 255, 255, .1);
}
.nav-drop a {
  display: block; padding: 11px 14px; border-radius: 11px;
  color: rgba(255, 255, 255, .84); font-size: .9rem;
}
.nav-drop a:hover { background: rgba(216, 176, 99, .16); color: var(--gold-200); }
.nav-drop a strong { display: block; font-weight: 600; color: #fff; font-size: .93rem; }
.nav-drop a span { display: block; font-size: .78rem; color: rgba(255, 255, 255, .55); margin-top: 2px; }

.nav-actions { display: flex; align-items: center; gap: 12px; flex: none; }

.nav-toggle {
  display: none; width: 46px; height: 46px; border: 0; border-radius: 13px; cursor: pointer;
  background: rgba(255, 255, 255, .12); color: #fff;
  align-items: center; justify-content: center;
}
.nav-toggle span {
  display: block; width: 20px; height: 2px; background: currentColor; border-radius: 2px;
  position: relative; transition: background .2s;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 20px; height: 2px;
  background: currentColor; border-radius: 2px; transition: transform .3s var(--ease-out);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative; min-height: min(100svh, 940px);
  display: flex; align-items: center;
  padding: calc(var(--nav-h) + 60px) 0 90px;
  background: radial-gradient(ellipse at 22% 8%, var(--navy-700), var(--navy-900) 62%);
  color: #fff; overflow: hidden; isolation: isolate;
}
.hero__media { position: absolute; inset: 0; z-index: -3; }
.hero__media video,
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__scrim {
  position: absolute; inset: 0; z-index: -2;
  background:
    linear-gradient(180deg, rgba(5, 15, 34, .82) 0%, rgba(5, 15, 34, .58) 45%, rgba(5, 15, 34, .95) 100%),
    radial-gradient(circle at 78% 28%, rgba(216, 176, 99, .2), transparent 55%);
}
.hero__particles { position: absolute; inset: 0; z-index: -1; pointer-events: none; }

.hero__inner { position: relative; z-index: 2; max-width: 760px; }

.hero__badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 18px 8px 10px; margin-bottom: 24px;
  background: var(--glass); border: 1px solid var(--glass-line);
  border-radius: 999px; backdrop-filter: blur(12px);
  font-size: .82rem; color: var(--gold-200);
}
.hero__badge i {
  width: 8px; height: 8px; border-radius: 50%; background: var(--emerald-300);
  box-shadow: 0 0 0 0 rgba(107, 196, 171, .8); animation: pulse-dot 2.4s infinite;
}
@keyframes pulse-dot {
  70% { box-shadow: 0 0 0 11px rgba(107, 196, 171, 0); }
  100% { box-shadow: 0 0 0 0 rgba(107, 196, 171, 0); }
}

.hero h1 { color: #fff; margin-bottom: .35em; text-wrap: balance; }
.hero h1 .accent {
  background: linear-gradient(120deg, var(--gold-200), var(--gold-400) 45%, var(--gold-300));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  display: inline-block;
}
.hero__lead {
  font-size: clamp(1.02rem, 1.6vw, 1.22rem); color: #c8d6e6;
  max-width: 58ch; margin-bottom: 34px;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 46px; }

/* Live counters under the hero copy */
.hero__stats {
  display: flex; flex-wrap: wrap; gap: 14px;
  padding: 20px 8px 0; border-top: 1px solid rgba(255, 255, 255, .14);
}
.hero-stat { padding-right: 30px; }
.hero-stat strong {
  display: block; font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.4rem); color: var(--gold-300); line-height: 1;
}
.hero-stat span { font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: #9db2ca; }

.hero__scroll {
  position: absolute; bottom: 26px; left: 50%; translate: -50% 0; z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255, 255, 255, .55); font-size: .7rem; letter-spacing: .22em; text-transform: uppercase;
}
.hero__scroll::after {
  content: ""; width: 1px; height: 42px;
  background: linear-gradient(180deg, var(--gold-400), transparent);
  animation: scroll-hint 2.6s var(--ease-in-out) infinite;
}
@keyframes scroll-hint {
  0%, 100% { opacity: .25; transform: scaleY(.55); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* Floating 3D-ish ornaments (pure CSS, no WebGL required) */
.float-object { position: absolute; z-index: 1; pointer-events: none; opacity: .82; will-change: transform; }
.float-object svg { filter: drop-shadow(0 18px 26px rgba(0, 0, 0, .5)); }
.float-object--plane { top: 20%; right: 6%; width: clamp(90px, 13vw, 190px); animation: drift-plane 17s var(--ease-in-out) infinite; }
.float-object--kaaba { bottom: 13%; right: 15%; width: clamp(72px, 9vw, 130px); animation: drift-slow 13s var(--ease-in-out) infinite; }
.float-object--palm { bottom: 6%; left: 3%; width: clamp(80px, 11vw, 160px); animation: sway 9s var(--ease-in-out) infinite; opacity: .5; }
.float-object--compass { top: 30%; left: 4%; width: clamp(60px, 7vw, 104px); animation: spin-slow 34s linear infinite; opacity: .38; }

@keyframes drift-plane {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-7deg); }
  50% { transform: translate3d(-40px, -28px, 0) rotate(-2deg); }
}
@keyframes drift-slow {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50% { transform: translate3d(0, -20px, 0) rotate(3deg); }
}
@keyframes sway {
  0%, 100% { transform: rotate(-3deg); }
  50% { transform: rotate(4deg); }
}
@keyframes spin-slow { to { transform: rotate(360deg); } }

/* Compact hero used by interior pages */
.page-hero {
  position: relative; padding: calc(var(--nav-h) + 74px) 0 66px;
  background: radial-gradient(ellipse at 25% 0%, var(--navy-700), var(--navy-900) 70%);
  color: #fff; overflow: hidden;
}
.page-hero h1 { color: #fff; margin-bottom: .3em; }
.page-hero p { color: #b6c8dc; max-width: 62ch; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; font-size: .84rem; color: #8fa5be; margin-bottom: 18px; }
.breadcrumbs a { color: #b8cbe2; }
.breadcrumbs a:hover { color: var(--gold-300); }
.breadcrumbs span[aria-hidden] { opacity: .5; }

/* --------------------------------------------------------------------------
   7. Sections — services & feature cards
   -------------------------------------------------------------------------- */
.service-card {
  position: relative; padding: 34px 30px 30px; border-radius: var(--radius-lg);
  background: var(--surface); border: 1px solid var(--line);
  box-shadow: var(--shadow-sm); overflow: hidden;
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out), border-color .4s;
}
.service-card::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: linear-gradient(135deg, rgba(216, 176, 99, .16), transparent 55%);
  opacity: 0; transition: opacity .4s var(--ease-out);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: rgba(216, 176, 99, .5); }
.service-card:hover::after { opacity: 1; }

.service-card__icon {
  width: 60px; height: 60px; border-radius: 18px; display: grid; place-items: center;
  margin-bottom: 20px; color: var(--navy-800);
  background: linear-gradient(135deg, var(--gold-200), var(--gold-400));
  box-shadow: 0 12px 26px -14px rgba(216, 176, 99, .95);
}
.service-card__icon svg { width: 28px; height: 28px; }
.service-card h3 { margin-bottom: .5em; }
.service-card p { color: var(--muted); font-size: .96rem; }

.service-card__list { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 9px; }
.service-card__list li { display: flex; gap: 10px; font-size: .9rem; color: var(--ink); }
.service-card__list li::before {
  content: "✓"; flex: none; width: 19px; height: 19px; border-radius: 50%;
  display: grid; place-items: center; font-size: .68rem; font-weight: 700;
  background: rgba(22, 134, 106, .14); color: var(--emerald-600);
}
.service-card__foot { margin-top: 24px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.service-card__price { font-family: var(--font-display); font-size: 1.2rem; color: var(--navy-800); }
.service-card__price small { display: block; font-size: .72rem; color: var(--muted); font-family: var(--font-body); }

/* --------------------------------------------------------------------------
   8. Package cards
   -------------------------------------------------------------------------- */
.package-card {
  position: relative; display: flex; flex-direction: column;
  background: var(--surface); border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out);
}
.package-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }

.package-card__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--navy-700); }
.package-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out); }
.package-card:hover .package-card__media img { transform: scale(1.08); }
.package-card__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(5, 15, 34, .82));
}

.package-card__tags { position: absolute; top: 14px; left: 14px; right: 14px; z-index: 2; display: flex; flex-wrap: wrap; gap: 8px; }
.package-card__meta {
  position: absolute; left: 18px; right: 18px; bottom: 14px; z-index: 2;
  color: #fff; display: flex; align-items: flex-end; justify-content: space-between; gap: 12px;
}
.package-card__meta h3 { color: #fff; margin: 0 0 3px; font-size: 1.22rem; text-shadow: 0 2px 12px rgba(0, 0, 0, .5); }
.package-card__where { font-size: .82rem; color: rgba(255, 255, 255, .8); display: flex; align-items: center; gap: 6px; }

.package-card__body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.package-card__body > p { color: var(--muted); font-size: .93rem; }

.package-card__facts {
  display: flex; flex-wrap: wrap; gap: 8px 16px; margin: 0 0 16px; padding: 0; list-style: none;
  font-size: .82rem; color: var(--muted);
}
.package-card__facts li { display: flex; align-items: center; gap: 6px; }
.package-card__facts svg { width: 15px; height: 15px; color: var(--gold-500); flex: none; }

.package-card__foot {
  margin-top: auto; padding-top: 18px; border-top: 1px dashed var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
}
.price { font-family: var(--font-display); font-size: 1.32rem; color: var(--navy-800); line-height: 1.15; }
.price small { display: block; font-family: var(--font-body); font-size: .72rem; color: var(--muted); font-weight: 400; }
.price-from { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); display: block; }

/* Badges */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px; border-radius: 999px;
  font-size: .71rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  background: rgba(255, 255, 255, .92); color: var(--navy-800);
  backdrop-filter: blur(6px); box-shadow: var(--shadow-sm);
}
.badge--gold { background: linear-gradient(120deg, var(--gold-300), var(--gold-400)); color: var(--navy-900); }
.badge--emerald { background: var(--emerald-600); color: #fff; }
.badge--danger { background: var(--danger); color: #fff; }
.badge--warning { background: var(--warning); color: #fff; }
.badge--muted { background: rgba(100, 116, 139, .16); color: var(--muted); box-shadow: none; }
.badge--outline { background: transparent; border: 1px solid var(--line); color: var(--muted); box-shadow: none; }

/* "Only 6 seats left" urgency pill */
.badge--urgent {
  background: linear-gradient(120deg, #e8503a, #b8342c); color: #fff;
  animation: urgent-pulse 2.1s var(--ease-in-out) infinite;
}
@keyframes urgent-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232, 80, 58, .55); }
  55% { box-shadow: 0 0 0 9px rgba(232, 80, 58, 0); }
}

.seat-meter { margin: 14px 0 4px; }
.seat-meter__track { height: 7px; border-radius: 999px; background: rgba(11, 31, 58, .1); overflow: hidden; }
.seat-meter__fill {
  height: 100%; border-radius: 999px; width: 0;
  background: linear-gradient(90deg, var(--emerald-500), var(--gold-400));
  transition: width 1.4s var(--ease-out);
}
.seat-meter__fill--hot { background: linear-gradient(90deg, var(--gold-400), #e8503a); }
.seat-meter__label {
  display: flex; justify-content: space-between; font-size: .77rem; color: var(--muted); margin-top: 7px;
}
.seat-meter__label strong { color: var(--danger); }

/* Tier comparison */
.tier-grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(248px, 1fr)); }
.tier-card {
  position: relative; padding: 28px 24px; border-radius: var(--radius);
  background: var(--surface); border: 1.5px solid var(--line);
  display: flex; flex-direction: column;
  transition: transform .35s var(--ease-out), border-color .35s, box-shadow .35s;
}
.tier-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--gold-400); }
.tier-card--popular { border-color: var(--gold-400); box-shadow: 0 24px 50px -30px rgba(216, 176, 99, .9); }
.tier-card--popular::before {
  content: "Most chosen"; position: absolute; top: -12px; left: 50%; translate: -50% 0;
  padding: 5px 16px; border-radius: 999px; white-space: nowrap;
  background: linear-gradient(120deg, var(--gold-300), var(--gold-500));
  color: var(--navy-900); font-size: .68rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
}
.tier-card h3 { font-size: 1.16rem; margin-bottom: .3em; }
.tier-card__price { font-family: var(--font-display); font-size: 1.75rem; color: var(--navy-800); margin-bottom: 4px; }
.tier-card__price small { font-size: .72rem; font-family: var(--font-body); color: var(--muted); display: block; }
.tier-card__list { list-style: none; margin: 18px 0 22px; padding: 0; display: grid; gap: 8px; font-size: .88rem; }
.tier-card__list li { display: flex; gap: 9px; color: var(--ink); }
.tier-card__list li::before { content: "•"; color: var(--gold-500); font-weight: 700; }
.tier-card__hotels { font-size: .8rem; color: var(--muted); border-top: 1px solid var(--line); padding-top: 12px; margin-top: auto; }
.tier-card__hotels div { display: flex; justify-content: space-between; gap: 10px; padding: 3px 0; }
.tier-card .btn { margin-top: 16px; }

/* Destination rotator used on honeymoon cards */
.rotator { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.rotator img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .9s var(--ease-in-out); }
.rotator img.is-current { opacity: 1; }
.rotator__dots { position: absolute; bottom: 12px; left: 50%; translate: -50% 0; z-index: 3; display: flex; gap: 6px; }
.rotator__dots button {
  width: 7px; height: 7px; padding: 0; border: 0; border-radius: 50%; cursor: pointer;
  background: rgba(255, 255, 255, .45); transition: width .3s, background .3s;
}
.rotator__dots button.is-current { width: 20px; border-radius: 999px; background: var(--gold-300); }

/* --------------------------------------------------------------------------
   9. Counters, trust badges, why-us
   -------------------------------------------------------------------------- */
.stat-card {
  text-align: center; padding: 32px 20px; border-radius: var(--radius);
  background: var(--glass); border: 1px solid var(--glass-line); backdrop-filter: blur(10px);
}
.stat-card__icon { width: 46px; height: 46px; margin: 0 auto 14px; color: var(--gold-300); }
.stat-card strong {
  display: block; font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.9rem); color: var(--gold-300); line-height: 1;
}
.stat-card span { font-size: .84rem; letter-spacing: .1em; text-transform: uppercase; color: #a9bdd4; }

.trust-row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 44px;
}
.trust-chip {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 11px 20px; border-radius: 999px;
  background: rgba(255, 255, 255, .07); border: 1px solid var(--glass-line);
  font-size: .84rem; color: #d5e2f0;
}
.trust-chip svg { width: 17px; height: 17px; color: var(--emerald-300); flex: none; }

.feature-row { display: flex; gap: 18px; align-items: flex-start; }
.feature-row__icon {
  width: 50px; height: 50px; flex: none; border-radius: 15px; display: grid; place-items: center;
  background: rgba(216, 176, 99, .15); color: var(--gold-600);
}
.feature-row__icon svg { width: 23px; height: 23px; }
.feature-row h3 { font-size: 1.1rem; margin-bottom: .3em; }
.feature-row p { font-size: .93rem; color: var(--muted); margin: 0; }

/* --------------------------------------------------------------------------
   10. Testimonials
   -------------------------------------------------------------------------- */
.testimonial-track {
  display: flex; gap: 22px; overflow-x: auto; padding: 6px 4px 24px;
  scroll-snap-type: x mandatory; scrollbar-width: thin;
}
.testimonial-track::-webkit-scrollbar { height: 6px; }
.testimonial-track::-webkit-scrollbar-thumb { background: rgba(216, 176, 99, .5); border-radius: 999px; }

.testimonial-card {
  flex: 0 0 min(400px, 84vw); scroll-snap-align: start;
  padding: 32px 30px; border-radius: var(--radius-lg);
  background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; position: relative;
}
.testimonial-card::before {
  content: "\201C"; position: absolute; top: 4px; right: 24px;
  font-family: var(--font-display); font-size: 6rem; line-height: 1;
  color: rgba(216, 176, 99, .2);
}
.testimonial-card blockquote { margin: 0 0 22px; font-size: .98rem; color: var(--ink); position: relative; z-index: 1; }
.stars { display: flex; gap: 3px; margin-bottom: 14px; color: var(--gold-400); }
.stars svg { width: 16px; height: 16px; }
.stars .is-empty { color: rgba(11, 31, 58, .18); }

.testimonial-card__who { display: flex; align-items: center; gap: 13px; margin-top: auto; }
.avatar {
  width: 46px; height: 46px; flex: none; border-radius: 50%; object-fit: cover;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-600));
  display: grid; place-items: center; color: var(--gold-300);
  font-family: var(--font-display); font-size: 1.05rem;
}
.testimonial-card__who strong { display: block; font-size: .95rem; }
.testimonial-card__who span { font-size: .8rem; color: var(--muted); }

.carousel-nav { display: flex; gap: 10px; justify-content: center; margin-top: 8px; }
.carousel-nav button {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line); cursor: pointer;
  background: var(--surface); color: var(--navy-800); display: grid; place-items: center;
  transition: background .25s, color .25s, transform .25s;
}
.carousel-nav button:hover { background: var(--navy-800); color: #fff; transform: translateY(-2px); }
.section--dark .carousel-nav button { background: transparent; border-color: var(--glass-line); color: #fff; }
.section--dark .carousel-nav button:hover { background: var(--gold-400); color: var(--navy-900); border-color: transparent; }

/* --------------------------------------------------------------------------
   11. Blog
   -------------------------------------------------------------------------- */
.post-card {
  display: flex; flex-direction: column; background: var(--surface);
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.post-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.post-card__media { aspect-ratio: 16 / 9; overflow: hidden; background: var(--sand); }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out); }
.post-card:hover .post-card__media img { transform: scale(1.07); }
.post-card__body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.post-card__cat {
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-600); font-weight: 700; margin-bottom: 10px;
}
.post-card h3 { font-size: 1.14rem; margin-bottom: .45em; }
.post-card p { font-size: .92rem; color: var(--muted); }
.post-card__foot {
  margin-top: auto; padding-top: 16px; display: flex; align-items: center; gap: 14px;
  font-size: .8rem; color: var(--muted);
}
.post-card__foot span { display: flex; align-items: center; gap: 6px; }

.article-body { font-size: 1.05rem; line-height: 1.85; }
.article-body h2 { margin-top: 1.9em; font-size: 1.55rem; }
.article-body h3 { margin-top: 1.5em; }
.article-body img { border-radius: var(--radius); margin: 1.8em 0; }
.article-body ul, .article-body ol { padding-left: 1.3em; margin-bottom: 1.2em; }
.article-body li { margin-bottom: .5em; }
.article-body blockquote {
  margin: 1.8em 0; padding: 20px 26px; border-left: 3px solid var(--gold-400);
  background: var(--surface-2); border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic; color: var(--navy-700);
}
.article-body a { color: var(--emerald-600); text-decoration: underline; text-underline-offset: 3px; }

/* PDF lead magnet */
.lead-magnet {
  display: grid; gap: 22px; grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  align-items: center; padding: 30px; border-radius: var(--radius-lg);
  background: linear-gradient(125deg, var(--navy-800), var(--navy-700));
  color: #fff; box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.lead-magnet h3 { color: #fff; margin-bottom: .35em; }
.lead-magnet p { color: #b6c8dc; font-size: .93rem; margin: 0; }
.lead-magnet form { display: grid; gap: 10px; position: relative; z-index: 2; }

/* --------------------------------------------------------------------------
   12. Forms
   -------------------------------------------------------------------------- */
.field { margin-bottom: 18px; }
.field label {
  display: block; font-size: .84rem; font-weight: 600; margin-bottom: 7px; color: var(--navy-800);
}
.field label .req { color: var(--danger); }
.field .hint { font-size: .78rem; color: var(--muted); margin-top: 6px; }
.field .err { font-size: .8rem; color: var(--danger); margin-top: 6px; display: block; }

.input, .select, .textarea {
  width: 100%; padding: 13px 15px; font: inherit; color: var(--ink);
  background: var(--surface); border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.textarea { min-height: 128px; resize: vertical; }
.select {
  appearance: none; padding-right: 42px; cursor: pointer;
  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 fill='%2364748b' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 15px center;
}
.input:focus, .select:focus, .textarea:focus {
  outline: none; border-color: var(--gold-400);
  box-shadow: 0 0 0 4px rgba(216, 176, 99, .18);
}
.input.has-error, .select.has-error, .textarea.has-error {
  border-color: var(--danger); box-shadow: 0 0 0 4px rgba(184, 52, 44, .12);
}
.input::placeholder, .textarea::placeholder { color: #9aa8bb; }

.field-row { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }

/* Card-style radio / checkbox options */
.option-grid { display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); }
.option {
  position: relative; display: flex; gap: 12px; align-items: flex-start;
  padding: 15px 16px; border-radius: var(--radius-sm); cursor: pointer;
  background: var(--surface); border: 1.5px solid var(--line);
  transition: border-color .25s, background .25s, transform .25s;
}
.option:hover { border-color: var(--gold-400); transform: translateY(-2px); }
.option input { position: absolute; opacity: 0; pointer-events: none; }
.option__mark {
  width: 20px; height: 20px; flex: none; margin-top: 2px; border-radius: 50%;
  border: 2px solid var(--line); display: grid; place-items: center; transition: border-color .25s;
}
.option__mark::after {
  content: ""; width: 10px; height: 10px; border-radius: 50%;
  background: var(--gold-400); transform: scale(0); transition: transform .25s var(--ease-out);
}
.option input:checked ~ .option__mark { border-color: var(--gold-400); }
.option input:checked ~ .option__mark::after { transform: scale(1); }
.option:has(input:checked) { border-color: var(--gold-400); background: rgba(216, 176, 99, .07); }
.option input:focus-visible ~ .option__mark { outline: 3px solid var(--gold-400); outline-offset: 2px; }
.option__text strong { display: block; font-size: .92rem; }
.option__text span { display: block; font-size: .79rem; color: var(--muted); margin-top: 2px; }
.option--checkbox .option__mark { border-radius: 6px; }
.option--checkbox .option__mark::after { border-radius: 2px; }

/* File drop zone */
.dropzone {
  border: 2px dashed var(--line); border-radius: var(--radius); padding: 26px;
  text-align: center; cursor: pointer; background: var(--surface-2);
  transition: border-color .25s, background .25s;
}
.dropzone:hover, .dropzone.is-over { border-color: var(--gold-400); background: rgba(216, 176, 99, .07); }
.dropzone svg { width: 34px; height: 34px; color: var(--gold-500); margin: 0 auto 10px; }
.dropzone strong { display: block; font-size: .93rem; }
.dropzone span { font-size: .8rem; color: var(--muted); }
.dropzone input[type="file"] { display: none; }
.dropzone__name { margin-top: 10px; font-size: .85rem; color: var(--emerald-600); font-weight: 600; }

/* Multi-step wizard */
.wizard {
  background: var(--surface); border-radius: var(--radius-lg); box-shadow: var(--shadow);
  border: 1px solid var(--line); overflow: hidden;
}
.wizard__steps {
  display: flex; background: linear-gradient(120deg, var(--navy-800), var(--navy-700));
  padding: 22px 26px; gap: 6px;
}
.wizard__step { flex: 1; display: flex; align-items: center; gap: 11px; color: rgba(255, 255, 255, .5); min-width: 0; }
.wizard__step i {
  width: 32px; height: 32px; flex: none; border-radius: 50%; display: grid; place-items: center;
  font-style: normal; font-size: .84rem; font-weight: 700;
  background: rgba(255, 255, 255, .12); color: rgba(255, 255, 255, .7);
  transition: background .35s var(--ease-out), color .35s, transform .35s;
}
.wizard__step strong { font-size: .84rem; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.wizard__step small { display: block; font-size: .72rem; opacity: .7; }
.wizard__step.is-active { color: #fff; }
.wizard__step.is-active i { background: linear-gradient(120deg, var(--gold-300), var(--gold-500)); color: var(--navy-900); transform: scale(1.1); }
.wizard__step.is-done { color: var(--emerald-300); }
.wizard__step.is-done i { background: var(--emerald-600); color: #fff; }
.wizard__step.is-done i::after { content: "✓"; }
.wizard__step.is-done i span { display: none; }

.wizard__progress { height: 3px; background: rgba(255, 255, 255, .12); }
.wizard__progress span {
  display: block; height: 100%; width: 33%;
  background: linear-gradient(90deg, var(--gold-400), var(--emerald-500));
  transition: width .5s var(--ease-out);
}

.wizard__panel { padding: 32px; display: none; }
.wizard__panel.is-active { display: block; animation: panel-in .45s var(--ease-out); }
@keyframes panel-in {
  from { opacity: 0; transform: translateX(18px); }
  to { opacity: 1; transform: translateX(0); }
}
.wizard__panel h3 { margin-bottom: .3em; }
.wizard__panel > p.lead { color: var(--muted); margin-bottom: 24px; font-size: .95rem; }

.wizard__nav {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 22px 32px; border-top: 1px solid var(--line); background: var(--surface-2);
}

/* Read-only summary on the review step */
.summary-list { list-style: none; margin: 0 0 22px; padding: 0; display: grid; gap: 1px; background: var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.summary-list li { display: flex; justify-content: space-between; gap: 16px; padding: 13px 16px; background: var(--surface); font-size: .91rem; }
.summary-list li span:first-child { color: var(--muted); }
.summary-list li span:last-child { font-weight: 600; text-align: right; }

/* Flight search bar */
.search-bar {
  display: grid; gap: 12px; padding: 22px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  background: rgba(255, 255, 255, .96); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); border: 1px solid rgba(255, 255, 255, .6);
  backdrop-filter: blur(20px); align-items: end;
}
.search-bar .field { margin: 0; }
.search-bar .btn { height: 48px; }

/* Newsletter */
.newsletter-form { display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter-form .input { flex: 1 1 200px; background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .18); color: #fff; }
.newsletter-form .input::placeholder { color: rgba(255, 255, 255, .45); }

/* Flash messages */
.flash-stack { position: fixed; top: calc(var(--nav-h) + 12px); right: 20px; z-index: 400; display: grid; gap: 10px; width: min(380px, calc(100% - 40px)); }
.flash {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 14px 16px; border-radius: var(--radius-sm); font-size: .9rem;
  background: var(--surface); box-shadow: var(--shadow); border-left: 4px solid var(--muted);
  animation: flash-in .45s var(--ease-out);
}
@keyframes flash-in { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: none; } }
.flash--success { border-left-color: var(--success); }
.flash--error { border-left-color: var(--danger); }
.flash--warning { border-left-color: var(--warning); }
.flash--info { border-left-color: var(--navy-600); }
.flash button { margin-left: auto; background: none; border: 0; cursor: pointer; color: var(--muted); font-size: 1.1rem; line-height: 1; padding: 0 2px; }

/* Accordion (FAQs) */
.accordion { display: grid; gap: 12px; }
.accordion__item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: border-color .3s, box-shadow .3s; }
.accordion__item.is-open { border-color: var(--gold-400); box-shadow: var(--shadow-sm); }
.accordion__trigger {
  width: 100%; display: flex; align-items: center; gap: 16px; justify-content: space-between;
  padding: 19px 22px; background: none; border: 0; cursor: pointer;
  font: 600 1rem/1.5 var(--font-body); color: var(--navy-800); text-align: left;
}
.accordion__trigger i {
  width: 26px; height: 26px; flex: none; border-radius: 50%; display: grid; place-items: center;
  background: rgba(216, 176, 99, .16); color: var(--gold-600); font-style: normal;
  transition: transform .35s var(--ease-out), background .3s;
}
.accordion__item.is-open .accordion__trigger i { transform: rotate(45deg); background: var(--gold-400); color: var(--navy-900); }
.accordion__panel { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease-in-out); }
.accordion__panel > div { padding: 0 22px 22px; color: var(--muted); font-size: .95rem; }

/* Tabs */
.tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.tab {
  padding: 10px 20px; border-radius: 999px; border: 1.5px solid var(--line); cursor: pointer;
  background: var(--surface); color: var(--muted); font: 600 .88rem/1 var(--font-body);
  transition: all .25s var(--ease-out);
}
.tab:hover { border-color: var(--gold-400); color: var(--navy-800); }
.tab.is-active { background: var(--navy-800); border-color: var(--navy-800); color: #fff; }

/* Pagination */
.pagination { display: flex; flex-wrap: wrap; gap: 7px; justify-content: center; margin-top: 46px; }
.pagination a, .pagination span {
  min-width: 42px; height: 42px; padding: 0 12px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line); background: var(--surface); font-size: .9rem; color: var(--navy-800);
}
.pagination a:hover { background: var(--navy-800); color: #fff; border-color: var(--navy-800); }
.pagination .is-current { background: var(--gold-400); border-color: var(--gold-400); color: var(--navy-900); font-weight: 700; }
.pagination .is-disabled { opacity: .4; pointer-events: none; }

/* Empty state */
.empty-state { text-align: center; padding: 62px 24px; color: var(--muted); }
.empty-state svg { width: 62px; height: 62px; margin: 0 auto 18px; color: var(--gold-400); opacity: .6; }
.empty-state h3 { color: var(--navy-800); }

/* --------------------------------------------------------------------------
   13. Footer
   -------------------------------------------------------------------------- */
.site-footer { background: var(--navy-900); color: #a9bdd4; padding: 74px 0 0; position: relative; overflow: hidden; }
.site-footer h4 {
  color: #fff; font-family: var(--font-body); font-size: .8rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; margin-bottom: 20px;
}
.site-footer a { color: #a9bdd4; font-size: .92rem; }
.site-footer a:hover { color: var(--gold-300); }
.footer-grid { display: grid; gap: 42px; grid-template-columns: 1.5fr repeat(3, 1fr); position: relative; z-index: 2; }
.footer-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer-about p { font-size: .93rem; margin-bottom: 22px; }
.footer-contact { display: grid; gap: 13px; margin-bottom: 24px; }
.footer-contact div { display: flex; gap: 11px; align-items: flex-start; font-size: .92rem; }
.footer-contact svg { width: 17px; height: 17px; flex: none; margin-top: 3px; color: var(--gold-400); }

.social-row { display: flex; gap: 10px; }
.social-row a {
  width: 42px; height: 42px; border-radius: 13px; display: grid; place-items: center;
  background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .1); color: #fff;
  transition: transform .3s var(--ease-out), background .3s, color .3s;
}
.social-row a:hover { transform: translateY(-4px); background: var(--gold-400); color: var(--navy-900); }
.social-row svg { width: 18px; height: 18px; }

.app-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.app-badge {
  display: flex; align-items: center; gap: 10px; padding: 9px 16px; border-radius: 12px;
  background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .12);
  color: #fff; font-size: .78rem; line-height: 1.25;
}
.app-badge svg { width: 21px; height: 21px; flex: none; }
.app-badge strong { display: block; font-size: .9rem; }
.app-badge span { opacity: .65; }

.footer-bottom {
  margin-top: 58px; padding: 24px 0; border-top: 1px solid rgba(255, 255, 255, .1);
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center;
  font-size: .84rem; position: relative; z-index: 2;
}
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 20px; }

/* --------------------------------------------------------------------------
   14. Floating UI
   -------------------------------------------------------------------------- */
.float-actions {
  position: fixed; right: 20px; bottom: 22px; z-index: 300;
  display: flex; flex-direction: column-reverse; gap: 12px; align-items: flex-end;
}
.float-btn {
  width: 56px; height: 56px; border-radius: 50%; border: 0; cursor: pointer;
  display: grid; place-items: center; color: #fff;
  box-shadow: 0 16px 32px -14px rgba(0, 0, 0, .65);
  transition: transform .3s var(--ease-out), box-shadow .3s;
  position: relative;
}
.float-btn:hover { transform: scale(1.09) translateY(-2px); color: #fff; }
.float-btn svg { width: 26px; height: 26px; }
.float-btn--whatsapp { background: #25d366; }
.float-btn--whatsapp::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: #25d366; opacity: .55; z-index: -1;
  animation: ripple 2.6s var(--ease-out) infinite;
}
@keyframes ripple {
  0% { transform: scale(1); opacity: .55; }
  100% { transform: scale(1.85); opacity: 0; }
}
.float-btn--top {
  background: var(--navy-800); width: 46px; height: 46px;
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity .3s, visibility .3s, transform .3s;
}
.float-btn--top.is-visible { opacity: 1; visibility: visible; transform: none; }
.float-btn--top svg { width: 20px; height: 20px; }

.float-label {
  position: absolute; right: calc(100% + 12px); top: 50%; translate: 0 -50%;
  white-space: nowrap; padding: 8px 14px; border-radius: 10px;
  background: var(--navy-900); color: #fff; font-size: .82rem;
  opacity: 0; pointer-events: none; transition: opacity .25s, transform .25s;
  transform: translateX(8px);
}
.float-btn:hover .float-label { opacity: 1; transform: translateX(0); }

/* --------------------------------------------------------------------------
   15. Motion
   -------------------------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  transition: opacity .85s var(--ease-out), transform .85s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
[data-reveal="left"]  { transform: translate3d(-40px, 0, 0); }
[data-reveal="right"] { transform: translate3d(40px, 0, 0); }
[data-reveal="zoom"]  { transform: scale(.92); }
[data-reveal="fade"]  { transform: none; }
[data-reveal].is-revealed { opacity: 1; transform: none; }

[data-parallax] { will-change: transform; }

.tilt { transform-style: preserve-3d; transition: transform .4s var(--ease-out); }
.tilt > * { transform: translateZ(24px); }

/* Everything above is decoration — switch it off when asked to. */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .float-object, .hero__particles { display: none; }
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .lead-magnet { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed; inset: var(--nav-h) 0 auto; margin: 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    padding: 18px 20px 26px; max-height: calc(100svh - var(--nav-h)); overflow-y: auto;
    background: rgba(7, 22, 44, .98); backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, .08);
    transform: translateY(-12px); opacity: 0; visibility: hidden;
    transition: opacity .3s var(--ease-out), transform .3s var(--ease-out), visibility .3s;
  }
  .nav-menu.is-open { opacity: 1; visibility: visible; transform: none; }
  .nav-menu > li > a { padding: 14px 16px; font-size: 1rem; }
  .nav-drop {
    position: static; translate: none; opacity: 1; visibility: visible; transform: none;
    background: rgba(255, 255, 255, .04); box-shadow: none; border: 0;
    min-width: 0; margin: 2px 0 8px; padding: 4px;
    max-height: 0; overflow: hidden; transition: max-height .35s var(--ease-in-out);
  }
  .nav-drop::before { display: none; }
  .nav-menu > li.is-expanded .nav-drop { max-height: 460px; }
  .nav-actions .btn-quote { display: none; }
  .hero__stats { gap: 6px; }
  .hero-stat { flex: 1 1 40%; padding-right: 12px; }
  .float-object--palm, .float-object--compass { display: none; }
  .wizard__step strong, .wizard__step small { display: none; }
  .wizard__steps { justify-content: center; gap: 14px; }
  .wizard__step { flex: none; }
}

@media (max-width: 620px) {
  .container, .container-narrow { width: calc(100% - 32px); }
  .section { padding: 56px 0; }
  .wizard__panel, .wizard__nav { padding: 24px 20px; }
  .testimonial-card { padding: 26px 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero__cta .btn { flex: 1 1 100%; }
  .flash-stack { right: 16px; left: 16px; width: auto; }
  .float-actions { right: 16px; bottom: 16px; }
}

@media print {
  .site-nav, .float-actions, .site-footer, .hero__particles, .float-object { display: none !important; }
  body { background: #fff; }
}
