/* ==========================================================================
   Rajal Helicopter Services — Public site stylesheet
   Design tokens (client brand palette):
     Royal Deep Red #8B1111 · Deep Burgundy #450808 · Royal Black Red #1A0505
     Luxury Gold #D9A21B · Highlight Gold #F5C542 · Saffron Orange #E87516
     Warm Ivory #FFF3D6 · Champagne #D8C4A0 · Charcoal #171010 · Royal Cream #FFF9ED
   Signature motif: the "jharokha" arch — Rajasthani palace-window silhouette
   used as a recurring frame for images, buttons and dividers.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  /* Brand palette — variable names kept stable for maintainability;
     values below map directly to the client's palette. */
  --indigo: #8B1111;       /* Primary Brand — Royal Deep Red */
  --indigo-deep: #450808;  /* Dark Brand — Deep Burgundy */
  --indigo-soft: #E87516;  /* Saffron Orange — warm gradient/accent stop */
  --black-red: #1A0505;    /* Darkest Background — Royal Black Red */
  --amber: #D9A21B;        /* Primary Gold — Luxury Gold (buttons/accents) */
  --amber-deep: #F5C542;   /* Highlight Gold — brighter shine/hover state */
  --cream: #FFF9ED;        /* Royal Cream — light section background */
  --sand: #D8C4A0;         /* Champagne — muted backgrounds & dark-section secondary text */
  --charcoal: #171010;     /* Charcoal — dark text */
  --white: #ffffff;        /* pure white — cards & form surfaces */
  --ivory: #FFF3D6;        /* Warm Ivory — primary light text on dark backgrounds */

  /* Semantic */
  --bg: var(--cream);
  --text: var(--charcoal);
  --text-muted: #7A6350;
  --border: #E8DAC0;

  /* Type */
  --font-display: 'Marcellus', 'Georgia', serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --container: 1240px;
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 10px rgba(26,5,5,0.07);
  --shadow-md: 0 12px 40px rgba(26,5,5,0.14);
  --shadow-lg: 0 24px 70px rgba(26,5,5,0.22);
  --ease: cubic-bezier(.16,.8,.28,1);
  --mobile-bar-h: 68px;
}

/* ---------------------------------------------------------------- reset */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; margin: 0 0 .5em; line-height: 1.15; color: var(--indigo-deep); }
p { margin: 0 0 1em; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; font-size: 1rem; }
:focus-visible { outline: 3px solid var(--amber); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }
.section--sand { background: var(--sand); }
.section--indigo { background: linear-gradient(160deg, var(--black-red), var(--indigo-deep) 55%, var(--indigo)); color: var(--cream); }
.section--indigo h2, .section--indigo h3 { color: var(--ivory); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 700; font-size: .78rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--indigo-soft);
  margin-bottom: 14px;
}
.eyebrow::before { content: ''; width: 26px; height: 2px; background: var(--amber); display: inline-block; }
.section--indigo .eyebrow { color: var(--amber-deep); }

.section-head { max-width: 640px; margin: 0 0 48px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
h2.section-title { font-size: clamp(1.9rem, 3vw, 2.6rem); }
.lede { font-size: 1.08rem; color: var(--text-muted); }
.section--indigo .lede { color: var(--sand); }

/* ---------------------------------------------------------------- buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px; border-radius: 999px; border: 2px solid transparent;
  font-weight: 700; font-size: .95rem; letter-spacing: .01em;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--amber); color: var(--indigo-deep); box-shadow: 0 10px 30px rgba(217,162,27,.35); }
.btn-primary:hover { background: var(--amber-deep); transform: translateY(-2px); box-shadow: 0 14px 36px rgba(245,197,66,.5); }
.btn-outline { border-color: currentColor; color: var(--indigo); background: transparent; }
.btn-outline:hover { background: var(--indigo); color: var(--ivory); border-color: var(--indigo); }
.section--indigo .btn-outline { color: var(--ivory); }
.section--indigo .btn-outline:hover { background: var(--ivory); color: var(--indigo-deep); }
.btn-ghost-light { border-color: rgba(255,243,214,.5); color: var(--ivory); }
.btn-ghost-light:hover { background: rgba(245,197,66,.18); border-color: var(--amber-deep); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 20px; font-size: .85rem; }

/* ---------------------------------------------------------------- header */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  padding: 18px 0;
  transition: background .35s var(--ease), padding .35s var(--ease), box-shadow .35s var(--ease);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.site-header.is-scrolled { background: rgba(255,249,237,.95); backdrop-filter: blur(10px); box-shadow: 0 4px 24px rgba(26,5,5,.10); padding: 10px 0; }

.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-size: 1.4rem; color: var(--indigo-deep); }
.site-header:not(.is-scrolled) .brand { color: var(--ivory); }
.brand img { height: 46px; width: auto; max-width: 190px; object-fit: contain; }
.site-header .brand-logo { height: 62px; width: auto; max-width: 260px; object-fit: contain; }
/* Two-version logo swap: default (for the transparent hero) fades out and the
   scrolled/brand-color version fades in once the header gets its solid cream
   background. Only applies when both versions are uploaded — see header.php. */
.brand-logo-scrolled { display: none; }
.site-header.is-scrolled .brand-logo-default { display: none; }
.site-header.is-scrolled .brand-logo-scrolled { display: block; }
.brand-mark { width: 42px; height: 42px; border-radius: 50%; background: var(--amber); display: flex; align-items: center; justify-content: center; color: var(--indigo-deep); font-weight: 800; font-family: var(--font-body); }
.brand-tagline { display: block; font-family: var(--font-body); font-size: .65rem; letter-spacing: .14em; text-transform: uppercase; opacity: .8; font-weight: 700; }

.main-nav { display: flex; align-items: center; gap: 8px; }
.main-nav a { padding: 10px 16px; border-radius: 999px; font-weight: 600; font-size: .93rem; color: var(--ivory); transition: background .2s, color .2s; }
.site-header.is-scrolled .main-nav a { color: var(--indigo-deep); }
.main-nav a:hover, .main-nav a.is-active { background: var(--amber); color: var(--indigo-deep); }
.header-cta { display: flex; align-items: center; gap: 14px; }
.header-phone { display: flex; align-items: center; gap: 8px; font-weight: 700; color: var(--ivory); }
.site-header.is-scrolled .header-phone { color: var(--indigo-deep); }

.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; background: none; border: 0; padding: 10px; width: 42px; height: 42px; z-index: 600; position: relative; }
.nav-toggle span { width: 22px; height: 2.5px; background: var(--ivory); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s var(--ease), background .3s var(--ease); transform-origin: center; }
.site-header.is-scrolled .nav-toggle span { background: var(--indigo-deep); }
/* Open state: animate hamburger into an X, and force a light icon since the
   full-screen nav overlay behind it is always dark — this is what makes the
   close affordance visible regardless of scroll state. !important is used
   deliberately here: nav-open must always beat the scrolled-header dark-icon
   rule above, which is otherwise more specific (3 classes vs 2). */
body.nav-open .nav-toggle span { background: var(--ivory) !important; }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------------------------------------------------------------- hero */
.hero { position: relative; height: 100vh; min-height: 620px; overflow: hidden; color: var(--ivory); }
.hero-slide {
  position: absolute; inset: 0; opacity: 0; visibility: hidden;
  transition: opacity 1.1s var(--ease), visibility 1.1s;
}
.hero-slide.is-active { opacity: 1; visibility: visible; z-index: 2; }
.hero-slide-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transform: scale(1.08); transition: transform 6.5s linear;
}
.hero-slide.is-active .hero-slide-bg { transform: scale(1); }
.hero-slide::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(69,8,8,.58) 0%, rgba(69,8,8,.38) 40%, rgba(26,5,5,.90) 100%);
}
.hero-content {
  position: relative; z-index: 3; height: 100%; display: flex; flex-direction: column;
  justify-content: center; max-width: 780px; padding: 0 24px; margin: 0 auto;
}
.hero-eyebrow { color: var(--amber-deep); font-weight: 700; letter-spacing: .18em; text-transform: uppercase; font-size: .8rem; margin-bottom: 18px; opacity: 0; transform: translateY(16px); }
.hero-heading { font-size: clamp(2.3rem, 5.4vw, 4.2rem); color: var(--ivory); white-space: pre-line; margin-bottom: 20px; opacity: 0; transform: translateY(20px); }
.hero-sub { font-size: 1.15rem; max-width: 540px; color: #F2E2C4; margin-bottom: 34px; opacity: 0; transform: translateY(20px); }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; opacity: 0; transform: translateY(20px); }
.hero-slide.is-active .hero-eyebrow,
.hero-slide.is-active .hero-heading,
.hero-slide.is-active .hero-sub,
.hero-slide.is-active .hero-actions { opacity: 1; transform: translateY(0); transition: opacity .9s var(--ease) .35s, transform .9s var(--ease) .35s; }
.hero-slide.is-active .hero-heading { transition-delay: .5s; }
.hero-slide.is-active .hero-sub { transition-delay: .65s; }
.hero-slide.is-active .hero-actions { transition-delay: .8s; }

.hero-nav-dots { position: absolute; z-index: 4; bottom: 46px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; }
.hero-nav-dots button { width: 34px; height: 4px; border-radius: 2px; border: 0; background: rgba(255,243,214,.35); padding: 0; transition: background .3s; }
.hero-nav-dots button.is-active { background: var(--amber); }
.hero-arrows { position: absolute; z-index: 4; bottom: 44px; right: 24px; display: flex; gap: 10px; }
.hero-arrows button { width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid rgba(255,243,214,.4); background: rgba(255,243,214,.08); color: var(--ivory); display: flex; align-items: center; justify-content: center; transition: background .25s, border-color .25s; }
.hero-arrows button:hover { background: var(--amber); border-color: var(--amber); color: var(--indigo-deep); }
.hero-scroll-cue { position: absolute; z-index: 4; left: 24px; bottom: 46px; display: flex; align-items: center; gap: 10px; color: rgba(255,243,214,.8); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; }
.hero-scroll-cue .line { width: 34px; height: 1px; background: rgba(255,243,214,.6); }

@media (max-width: 720px) {
  .hero-arrows, .hero-scroll-cue { display: none; }
}

/* -------------------------------------------------- jharokha arch motif */
.arch-frame {
  position: relative;
  border-radius: 220px 220px 16px 16px / 130px 130px 16px 16px;
  overflow: hidden;
}
.arch-frame img { width: 100%; height: 100%; object-fit: cover; }
.jali-divider {
  height: 34px;
  background-image: radial-gradient(circle at 10px 10px, var(--sand) 4px, transparent 4.5px);
  background-size: 20px 20px;
  opacity: .9;
}

/* ---------------------------------------------------------------- stats */
.stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: -86px; position: relative; z-index: 10; }
.stat-card {
  background: var(--white); border-radius: var(--radius-md); padding: 30px 20px; text-align: center;
  box-shadow: var(--shadow-md); border-top: 4px solid var(--amber);
}
.stat-num { font-family: var(--font-display); font-size: 2.3rem; color: var(--indigo); display: block; }
.stat-label { font-size: .82rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; font-weight: 700; }

/* ---------------------------------------------------------------- about */
.about-grid { display: grid; grid-template-columns: .85fr 1fr; gap: 64px; align-items: center; }
.about-media { position: relative; }
.about-media .arch-frame { aspect-ratio: 3/4; box-shadow: var(--shadow-lg); }
.about-media .badge-float {
  position: absolute; bottom: -26px; right: -26px; background: var(--indigo-deep); color: var(--ivory);
  border-radius: 50%; width: 128px; height: 128px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center; box-shadow: var(--shadow-md);
  border: 4px solid var(--amber);
}
.badge-float strong { font-family: var(--font-display); font-size: 1.7rem; display: block; color: var(--amber-deep); }
.badge-float span { font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; }
.about-copy .feature-list { margin-top: 28px; display: grid; gap: 16px; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; }
.feature-list .ico { flex: none; width: 40px; height: 40px; border-radius: 50%; background: var(--sand); color: var(--indigo); display: flex; align-items: center; justify-content: center; }

/* ---------------------------------------------------------------- packages */
.pkg-filter { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.pkg-filter button {
  padding: 9px 20px; border-radius: 999px; border: 1.5px solid var(--border); background: var(--white);
  font-weight: 700; font-size: .85rem; color: var(--text-muted); transition: all .2s;
}
.pkg-filter button:hover { border-color: var(--indigo); color: var(--indigo); }
.pkg-filter button.is-active { background: var(--indigo); border-color: var(--indigo); color: var(--ivory); }

.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.pkg-card {
  background: var(--white); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  display: flex; flex-direction: column;
}
.pkg-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.pkg-media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.pkg-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.pkg-card:hover .pkg-media img { transform: scale(1.08); }
.pkg-tag { position: absolute; top: 16px; left: 16px; background: var(--amber); color: var(--indigo-deep); font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; padding: 6px 14px; border-radius: 999px; }
.pkg-body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.pkg-body h3 { font-size: 1.25rem; margin-bottom: 0; }
.pkg-meta { display: flex; gap: 16px; font-size: .82rem; color: var(--text-muted); font-weight: 600; }
.pkg-meta span { display: flex; align-items: center; gap: 6px; }
.pkg-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px dashed var(--border); }
.pkg-price { font-family: var(--font-display); font-size: 1.35rem; color: var(--indigo); }
.pkg-price small { font-family: var(--font-body); font-size: .68rem; color: var(--text-muted); display: block; font-weight: 700; text-transform: uppercase; }

/* ---------------------------------------------------------------- gallery */
.gallery-filter { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; justify-content: center; }
.gallery-grid { columns: 4 260px; column-gap: 20px; }
.gallery-item { break-inside: avoid; margin-bottom: 20px; border-radius: var(--radius-sm); overflow: hidden; position: relative; cursor: zoom-in; box-shadow: var(--shadow-sm); }
.gallery-item img { width: 100%; display: block; transition: transform .5s var(--ease); }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 14px 16px; background: linear-gradient(0deg, rgba(69,8,8,.88), transparent); color: var(--ivory); font-size: .85rem; font-weight: 700; opacity: 0; transition: opacity .3s; }
.gallery-item:hover .cap { opacity: 1; }

.lightbox { position: fixed; inset: 0; background: rgba(20,5,5,.94); z-index: 2000; display: none; align-items: center; justify-content: center; padding: 40px; }
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 84vh; border-radius: 10px; box-shadow: 0 30px 90px rgba(0,0,0,.5); }
.lightbox-close, .lightbox-prev, .lightbox-next { position: absolute; background: rgba(255,243,214,.1); border: 1px solid rgba(255,243,214,.3); color: var(--ivory); border-radius: 50%; width: 46px; height: 46px; display: flex; align-items: center; justify-content: center; }
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }

/* ---------------------------------------------------------------- testimonials */
.testi-track-wrap { overflow: hidden; }
.testi-track { display: flex; gap: 26px; transition: transform .6s var(--ease); }
.testi-card {
  flex: 0 0 calc(33.333% - 18px); background: var(--white); border-radius: var(--radius-md); padding: 30px;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 14px;
}
.testi-stars { color: var(--amber-deep); letter-spacing: 2px; }
.testi-text { color: var(--text); font-size: .98rem; }
.testi-person { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testi-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--sand); display: flex; align-items: center; justify-content: center; color: var(--indigo); font-weight: 800; font-family: var(--font-display); overflow: hidden; }
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-name { font-weight: 800; font-size: .92rem; }
.testi-loc { font-size: .78rem; color: var(--text-muted); }
.testi-controls { display: flex; gap: 12px; justify-content: center; margin-top: 34px; }
.testi-controls button { width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--border); background: var(--white); display: flex; align-items: center; justify-content: center; transition: all .2s; }
.testi-controls button:hover { background: var(--indigo); border-color: var(--indigo); color: var(--ivory); }

/* ---------------------------------------------------------------- CTA banner */
.cta-banner { position: relative; border-radius: var(--radius-lg); overflow: hidden; padding: 70px 60px; text-align: center; background: linear-gradient(150deg, var(--black-red), var(--indigo-deep) 55%, var(--indigo-soft) 130%); color: var(--ivory); }
.cta-banner::before {
  content: ''; position: absolute; inset: 0; opacity: .14; pointer-events: none;
  background-image: radial-gradient(circle, var(--amber) 2px, transparent 2.2px);
  background-size: 26px 26px;
}
.cta-banner h2 { color: var(--ivory); }
.cta-banner .btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }

/* ---------------------------------------------------------------- forms */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: .82rem; font-weight: 700; color: var(--indigo-deep); }
.form-field input, .form-field select, .form-field textarea {
  padding: 14px 16px; border-radius: var(--radius-sm); border: 1.5px solid var(--border); background: var(--white);
  color: var(--text); transition: border-color .2s, box-shadow .2s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--indigo); box-shadow: 0 0 0 4px rgba(139,17,17,.12); outline: none; }
.form-field textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: .78rem; color: var(--text-muted); }
.form-status { padding: 14px 18px; border-radius: var(--radius-sm); font-weight: 700; font-size: .9rem; display: none; }
.form-status.show { display: block; }
.form-status.ok { background: #e4f6ea; color: #1c7a3f; }
.form-status.err { background: #fdeaea; color: #b23434; }
.pay-options { display: flex; gap: 12px; flex-wrap: wrap; }
.pay-option { flex: 1; min-width: 140px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); padding: 14px; cursor: pointer; text-align: center; font-weight: 700; font-size: .85rem; transition: all .2s; }
.pay-option input { display: none; }
.pay-option.is-checked, .pay-option:has(input:checked) { border-color: var(--indigo); background: var(--sand); color: var(--indigo-deep); }
.upi-panel { display: flex; gap: 18px; align-items: center; background: var(--sand); border-radius: var(--radius-sm); padding: 16px; }
.upi-panel img { border-radius: 8px; background: var(--white); padding: 6px; flex: none; }
.upi-panel-info { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.upi-id-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.upi-id-row code { background: var(--white); padding: 8px 12px; border-radius: 6px; font-weight: 700; color: var(--indigo-deep); font-size: .95rem; border: 1px dashed var(--border); }

/* ---------------------------------------------------------------- contact page */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 50px; }
.contact-info-card { background: var(--white); border-radius: var(--radius-md); padding: 34px; box-shadow: var(--shadow-sm); display: grid; gap: 22px; }
.info-row { display: flex; gap: 16px; align-items: flex-start; }
.info-row .ico { flex: none; width: 44px; height: 44px; border-radius: 50%; background: var(--sand); color: var(--indigo); display: flex; align-items: center; justify-content: center; }
.info-row h4 { margin: 0 0 4px; font-size: 1rem; font-family: var(--font-body); font-weight: 800; color: var(--indigo-deep); }
.info-row p { margin: 0; color: var(--text-muted); font-size: .92rem; }
.social-row { display: flex; gap: 10px; margin-top: 6px; }
.social-row a { width: 40px; height: 40px; border-radius: 50%; background: var(--indigo); color: var(--ivory); display: flex; align-items: center; justify-content: center; transition: background .2s; }
.social-row a:hover { background: var(--amber); color: var(--indigo-deep); }
.map-embed { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); margin-top: 40px; }
.map-embed iframe { width: 100%; height: 340px; border: 0; display: block; }

/* ---------------------------------------------------------------- footer */
.site-footer { background: var(--black-red); color: var(--sand); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 60px; border-bottom: 1px solid rgba(217,162,27,.15); }
.footer-brand .brand { color: var(--ivory); margin-bottom: 14px; }
.footer-col h5 { color: var(--ivory); font-family: var(--font-body); font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { font-size: .92rem; color: var(--sand); transition: color .2s; }
.footer-col a:hover { color: var(--amber-deep); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 26px 0; font-size: .82rem; color: #B8A183; flex-wrap: wrap; gap: 10px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(217,162,27,.3); color: var(--sand); display: flex; align-items: center; justify-content: center; transition: all .2s; }
.footer-social a:hover { background: var(--amber); border-color: var(--amber); color: var(--indigo-deep); }

.whatsapp-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 400; width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-md);
  animation: pulse 2.4s infinite;
}
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(37,211,102,.45); } 50% { box-shadow: 0 0 0 12px rgba(37,211,102,0); } }

/* ---------------------------------------------------------------- mobile bottom call/book bar */
.mobile-cta-bar {
  display: none; /* shown only on mobile — see media query below */
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 480;
  background: var(--indigo-deep); border-top: 2px solid var(--amber);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -8px 24px rgba(26,5,5,.28);
}
.mobile-cta-bar .inner { display: flex; gap: 10px; }
.mobile-cta-bar a { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; height: 46px; border-radius: 999px; font-weight: 700; font-size: .92rem; }
.mobile-cta-bar .call-btn { background: rgba(255,243,214,.1); border: 1.5px solid rgba(255,243,214,.4); color: var(--ivory); }
.mobile-cta-bar .book-btn { background: var(--amber); color: var(--indigo-deep); }
.mobile-cta-bar svg { width: 18px; height: 18px; flex: none; }

/* ---------------------------------------------------------------- scroll reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------------------------------------------------------------- breadcrumb / page header */
.page-hero { position: relative; padding: 200px 0 90px; color: var(--ivory); background: linear-gradient(160deg, var(--black-red), var(--indigo-deep) 60%, var(--indigo)); overflow: hidden; }
.page-hero::after { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(217,162,27,.22) 2px, transparent 2.4px); background-size: 24px 24px; }
.page-hero .container { position: relative; }
.page-hero h1 { color: var(--ivory); font-size: clamp(2.1rem, 4vw, 3.2rem); }
.breadcrumb { display: flex; gap: 8px; font-size: .85rem; color: var(--sand); margin-bottom: 16px; }
.breadcrumb a:hover { color: var(--amber-deep); }

/* ---------------------------------------------------------------- misc */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.tag-pill { display: inline-block; background: var(--sand); color: var(--indigo-deep); font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; padding: 5px 14px; border-radius: 999px; }
.divider-gold { width: 60px; height: 3px; background: var(--amber); border-radius: 2px; margin: 18px 0; }
.skeleton { background: linear-gradient(90deg, var(--sand) 25%, #F5E9D0 37%, var(--sand) 63%); background-size: 400% 100%; animation: shimmer 1.4s infinite; }
@keyframes shimmer { 0% { background-position: 100% 0; } 100% { background-position: -100% 0; } }

/* ================================================================
   Responsive
   ================================================================ */
@media (max-width: 1080px) {
  .about-grid, .contact-grid, .two-col { grid-template-columns: 1fr; }
  .pkg-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .testi-card { flex: 0 0 calc(50% - 13px); }
  .gallery-grid { columns: 3 220px; }
}

@media (max-width: 860px) {
  .main-nav, .header-phone, .header-cta > .btn-primary { display: none; }
  .nav-toggle { display: flex; }
  .site-header .brand-logo { height: 46px; max-width: 170px; }
  .main-nav.is-open {
    display: flex; position: fixed; inset: 0; background: linear-gradient(160deg, var(--black-red), var(--indigo-deep)); flex-direction: column;
    justify-content: center; align-items: center; gap: 8px; z-index: 550;
  }
  .main-nav.is-open a { color: var(--ivory); font-size: 1.3rem; }
  .main-nav.is-open a:hover, .main-nav.is-open a.is-active { background: var(--amber); color: var(--indigo-deep); }
  .stat-strip { grid-template-columns: repeat(2, 1fr); margin-top: 34px; }
  .form-grid { grid-template-columns: 1fr; }
  .testi-card { flex: 0 0 100%; }
  .gallery-grid { columns: 2 180px; }
  .section { padding: 64px 0; }

  /* Bottom call/book bar takes over the header's CTAs on mobile */
  .mobile-cta-bar { display: block; }
  body { padding-bottom: calc(var(--mobile-bar-h) + env(safe-area-inset-bottom, 0px)); }
  /* Lift WhatsApp float above the new bottom bar so they never collide */
  .whatsapp-float { bottom: calc(var(--mobile-bar-h) + 16px); }
}

@media (max-width: 600px) {
  .pkg-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; padding-bottom: 40px; }
  .hero-content { padding: 0 20px; }
  .cta-banner { padding: 46px 24px; }
  .contact-info-card { padding: 24px; }
  .whatsapp-float { width: 52px; height: 52px; bottom: calc(var(--mobile-bar-h) + 12px); right: 16px; }
  .gallery-grid { columns: 1; }
  .mobile-cta-bar a { font-size: .85rem; }
}
