/* ==========================================================================
   AJANTA-ELLORACARRENTAL.COM — HOMEPAGE STYLES
   Design tokens: Saffron / Maroon / Gold / Ivory heritage palette
   ========================================================================== */

:root {
  --ivory: #FAF5E9;
  --cream: #FFFDF8;
  --charcoal: #2A211B;
  --charcoal-soft: #5A4C40;
  --saffron: #E17A1B;
  --saffron-dark: #B8600F;
  --maroon: #7A1F2E;
  --maroon-dark: #5E1622;
  --gold: #B8892E;
  --gold-light: #E4C77A;
  --border-hairline: rgba(184, 137, 46, 0.35);

  --font-display: "Marcellus", Georgia, serif;
  --font-body: "Mukta", "Segoe UI", sans-serif;

  --max-width: 1180px;
  --radius-arch: 50% 50% 0 0 / 90px 90px 0 0;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--maroon-dark);
  line-height: 1.2;
  margin: 0 0 0.5em;
  font-weight: 400;
}

h1 { font-size: clamp(2rem, 4.5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; color: var(--charcoal-soft); }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 64px 0;
}

.section--band {
  background: var(--cream);
  border-top: 1px solid var(--border-hairline);
  border-bottom: 1px solid var(--border-hairline);
}

.section-head {
  max-width: 640px;
  margin-bottom: 36px;
}

.section-head p { font-size: 1.05rem; }

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0;
  border: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn--primary {
  background: var(--saffron);
  color: #fff;
}
.btn--primary:hover { background: var(--saffron-dark); }

.btn--maroon {
  background: var(--maroon);
  color: #fff;
}
.btn--maroon:hover { background: var(--maroon-dark); }

.btn--outline {
  background: transparent;
  border-color: var(--gold);
  color: var(--maroon-dark);
}
.btn--outline:hover { background: rgba(184, 137, 46, 0.1); }

.btn--wa {
  background: #ffffff;
  color: var(--maroon-dark);
  border-color: var(--maroon-dark);
}
.btn--wa:hover { background: var(--ivory); }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ivory);
  border-bottom: 1px solid var(--border-hairline);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--maroon-dark);
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand span {
  font-family: var(--font-body);
  font-size: 0.66rem;
  color: var(--gold);
  letter-spacing: 0.04em;
  font-weight: 600;
}

.main-nav {
  display: none;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
  align-items: center;
}

.main-nav > ul > li {
  position: relative;
}

.main-nav a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
  padding: 8px 0;
}
.main-nav a:hover { color: var(--saffron-dark); }

.has-dropdown > a::after {
  content: "▾";
  font-size: 0.7em;
  margin-left: 4px;
  color: var(--gold);
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--cream);
  border: 1px solid var(--border-hairline);
  min-width: 260px;
  padding: 10px 0;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
  box-shadow: 0 8px 20px rgba(42, 33, 27, 0.08);
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li a {
  display: block;
  padding: 9px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal-soft);
}
.dropdown li a:hover {
  background: var(--ivory);
  color: var(--maroon-dark);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-cta .btn { padding: 10px 18px; font-size: 0.9rem; }

.nav-toggle {
  display: inline-flex;
  background: none;
  border: 1.5px solid var(--gold);
  border-radius: 4px;
  padding: 8px 10px;
  cursor: pointer;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--maroon-dark);
  position: relative;
}
.nav-toggle span::before { content: ""; position: absolute; top: -6px; }
.nav-toggle span::after { content: ""; position: absolute; top: 6px; }

/* Mobile nav panel */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--cream);
  border-top: 1px solid var(--border-hairline);
  padding: 8px 24px 20px;
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-hairline);
  font-weight: 600;
  font-size: 0.98rem;
}
.mobile-nav .mobile-sub {
  padding-left: 14px;
  display: flex;
  flex-direction: column;
}
.mobile-nav .mobile-sub a {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--charcoal-soft);
  border-bottom: none;
  padding: 8px 0;
}

/* Sticky mobile call/whatsapp bar */
.sticky-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  border-top: 1px solid var(--border-hairline);
}
.sticky-cta-bar a {
  flex: 1;
  text-align: center;
  padding: 14px 4px;
  font-weight: 700;
  font-size: 0.85rem;
}
.sticky-cta-bar .call { background: var(--saffron); color: #fff; }
.sticky-cta-bar .whatsapp { background: #1F7A4D; color: #fff; }
.sticky-cta-bar .enquire { background: var(--maroon); color: #fff; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  padding: 56px 0 48px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.hero-content .eyebrow {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.hero-content h1 { margin-bottom: 18px; }

.hero-content .lede {
  font-size: 1.08rem;
  max-width: 46ch;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 30px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 460px;
}
.trust-strip li {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--maroon-dark);
  padding-left: 18px;
  position: relative;
}
.trust-strip li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

.hero-image-frame {
  border-radius: var(--radius-arch);
  overflow: hidden;
  border: 2px solid var(--gold);
  aspect-ratio: 4 / 5;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  background: repeating-linear-gradient(
    135deg,
    rgba(184, 137, 46, 0.08),
    rgba(184, 137, 46, 0.08) 10px,
    transparent 10px,
    transparent 20px
  );
  color: var(--maroon-dark);
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.5;
  border: 1px dashed var(--gold);
}

/* ==========================================================================
   QUICK BOOKING FORM
   ========================================================================== */
.booking-form-section {
  background: var(--maroon);
  color: #fff;
}
.booking-form-section h2,
.booking-form-section .section-head p { color: #fff; }
.booking-form-section .section-head p { color: rgba(255,255,255,0.82); }

.booking-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  background: var(--cream);
  padding: 28px;
  border-radius: 6px;
  border: 1px solid var(--gold);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--maroon-dark);
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 0.96rem;
  padding: 11px 12px;
  border: 1.5px solid var(--border-hairline);
  border-radius: 4px;
  background: #fff;
  color: var(--charcoal);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid var(--saffron);
  outline-offset: 1px;
}

.form-note {
  font-size: 0.82rem;
  color: var(--charcoal-soft);
  margin: 0;
}

.enquiry-success {
  display: none;
  background: var(--cream);
  border: 1px solid var(--gold);
  border-left: 4px solid var(--saffron);
  padding: 24px 28px;
  border-radius: 6px;
}
.enquiry-success p { margin: 0; color: var(--charcoal); }
.enquiry-success a { color: var(--saffron-dark); font-weight: 700; }

/* ==========================================================================
   COMPACT CTA BOX (top-of-page conversion point on commercial pages)
   ========================================================================== */
.compact-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--cream);
  border: 1px solid var(--gold);
  border-left: 4px solid var(--maroon);
  padding: 18px 22px;
  border-radius: 6px;
  margin: 24px 0;
}
.compact-cta p {
  margin: 0;
  font-weight: 600;
  color: var(--maroon-dark);
  font-size: 0.98rem;
}
.compact-cta .compact-cta-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.compact-cta .btn { padding: 10px 18px; font-size: 0.88rem; }

/* ==========================================================================
   MID-PAGE CTA STRIP (after ~40-60% of long-form page content)
   ========================================================================== */
.mid-cta-strip {
  background: var(--maroon);
  color: #fff;
  padding: 36px 0;
  margin: 40px 0;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}
.mid-cta-strip h3 { color: #fff; margin-bottom: 8px; }
.mid-cta-strip p { color: rgba(255,255,255,0.85); margin-bottom: 18px; }
.mid-cta-strip .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.mid-cta-strip .btn--outline { border-color: #fff; color: #fff; }
.mid-cta-strip .btn--outline:hover { background: rgba(255,255,255,0.15); }

/* ==========================================================================
   SERVICE / PACKAGE / DESTINATION CARDS
   ========================================================================== */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.card {
  background: var(--cream);
  border: 1px solid var(--border-hairline);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-accent-top { border-top: 4px solid var(--saffron); }
.card-accent-top.maroon { border-top-color: var(--maroon); }
.card-accent-top.gold { border-top-color: var(--gold); }

.card-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.card-body {
  padding: 20px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-body h3 { margin-bottom: 8px; }
.card-body p { font-size: 0.94rem; flex: 1; }

.card-link {
  font-weight: 700;
  color: var(--saffron-dark);
  font-size: 0.9rem;
  margin-top: 8px;
}
.card-link:hover { color: var(--maroon-dark); }

/* ==========================================================================
   NETWORK USP
   ========================================================================== */
.network-section {
  background: var(--ivory);
}

.network-banner {
  text-align: left;
  max-width: 720px;
  margin-bottom: 28px;
}

.agency-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.agency-list li {
  background: var(--cream);
  border: 1px solid var(--border-hairline);
  border-left: 3px solid var(--gold);
  padding: 14px 18px;
  font-weight: 600;
  color: var(--maroon-dark);
  font-size: 0.98rem;
}

.network-figures {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.network-figures .figure { min-width: 140px; }
.network-figures .figure strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--saffron-dark);
}
.network-figures .figure span {
  font-size: 0.85rem;
  color: var(--charcoal-soft);
}

/* ==========================================================================
   WHY CHOOSE US
   ========================================================================== */
.why-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.why-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.98rem;
  color: var(--charcoal);
  font-weight: 500;
}
.why-list li::before {
  content: "";
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  margin-top: 6px;
  border: 2px solid var(--gold);
  transform: rotate(45deg);
}

/* ==========================================================================
   HOW BOOKING WORKS
   ========================================================================== */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  counter-reset: step;
}
.step {
  border-left: 2px solid var(--gold);
  padding-left: 20px;
  position: relative;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: -15px;
  top: 0;
  width: 28px;
  height: 28px;
  background: var(--maroon);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.9rem;
}
.step h3 { font-size: 1.05rem; margin-bottom: 4px; }
.step p { font-size: 0.92rem; margin: 0; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list {
  max-width: 760px;
}
.faq-item {
  border-bottom: 1px solid var(--border-hairline);
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--maroon-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-question .icon {
  color: var(--gold);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-answer p {
  padding-bottom: 18px;
  margin: 0;
  font-size: 0.95rem;
}
.faq-item.is-open .faq-answer { max-height: 300px; }

/* ==========================================================================
   FINAL CTA
   ========================================================================== */
.final-cta {
  background: var(--saffron);
  color: #fff;
  text-align: left;
}
.final-cta h2 { color: #fff; }
.final-cta p { color: rgba(255,255,255,0.92); font-size: 1.05rem; }
.final-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}
.final-cta .btn--outline {
  border-color: #fff;
  color: #fff;
}
.final-cta .btn--outline:hover { background: rgba(255,255,255,0.15); }
.final-cta .btn--wa { background: var(--maroon); color: #fff; border-color: var(--maroon); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--maroon-dark);
  color: rgba(255,255,255,0.85);
  padding: 56px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 36px;
}
.footer-brand h2 {
  color: #fff;
  font-size: 1.4rem;
}
.footer-brand p { color: rgba(255,255,255,0.7); font-size: 0.92rem; max-width: 42ch; }
.footer-contact a {
  display: block;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 6px;
}
.footer-col h4 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 700;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 0.9rem; color: rgba(255,255,255,0.75); }
.footer-col a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
}
.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: #fff; }

/* ==========================================================================
   RESPONSIVE — TABLET / DESKTOP
   ========================================================================== */
@media (min-width: 768px) {
  .hero-grid { grid-template-columns: 1.1fr 0.9fr; }
  .form-row { grid-template-columns: repeat(2, 1fr); }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .why-list { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.3fr repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .network-figures { gap: 48px; }
}

@media (min-width: 1024px) {
  .main-nav { display: block; }
  .nav-toggle, .mobile-nav { display: none !important; }
  .card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
  .card-grid.cols-5 { grid-template-columns: repeat(3, 1fr); }
  .agency-list { grid-template-columns: repeat(2, 1fr); }
  .sticky-cta-bar { display: none; }
}

@media (max-width: 1023px) {
  body { padding-bottom: 54px; } /* space for sticky bar */
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .dropdown, .faq-answer { transition: none; }
}

/* Visible keyboard focus */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--saffron);
  outline-offset: 2px;
}
