/* ========================================================
   ELEVATED INDIA — PAGE STYLES
   pages.css — Page-specific section overrides
   ======================================================== */

/* ── HOME: Hero ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  overflow: hidden;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: transform 6.5s linear;
}

.hero-slide.active .hero-slide-bg {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(10, 8, 5, 0.72) 0%,
      rgba(10, 8, 5, 0.45) 55%,
      rgba(10, 8, 5, 0.15) 100%);
}

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

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-8);
  width: 100%;
  padding-top: var(--nav-height);
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
  opacity: 0;
  animation: fadeSlideUp 1s var(--ease-out) 0.3s forwards;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 1.04;
  letter-spacing: -0.01em;
  color: var(--ivory);
  max-width: 720px;
  margin-bottom: var(--space-6);
  opacity: 0;
  animation: fadeSlideUp 1s var(--ease-out) 0.55s forwards;
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.375rem);
  color: rgba(247, 243, 238, 0.78);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: var(--space-10);
  opacity: 0;
  animation: fadeSlideUp 1s var(--ease-out) 0.75s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeSlideUp 1s var(--ease-out) 0.95s forwards;
}

.hero-scroll-hint {
  position: absolute;
  bottom: var(--space-10);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  opacity: 0;
  animation: fadeSlideUp 1s var(--ease-out) 1.5s forwards;
}

.hero-scroll-hint span {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(247, 243, 238, 0.5);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(184, 150, 74, 0.7), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {

  0%,
  100% {
    transform: scaleY(1);
    opacity: 0.7;
  }

  50% {
    transform: scaleY(0.5);
    opacity: 0.3;
  }
}

@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(24px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── HOME: Brand Promise ── */
.promise-grid {
  display: grid;
  grid-template-columns: 1fr 2px 1fr 2px 1fr;
  gap: 0;
  align-items: start;
}

.promise-divider {
  background: var(--stone-dark);
  height: 80px;
  align-self: center;
}

.promise-item {
  padding: var(--space-10);
  text-align: center;
}

.promise-icon {
  width: 28px;
  height: 28px;
  margin: 0 auto var(--space-5);
  opacity: 0.6;
}

.promise-title {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: var(--space-4);
  line-height: 1.3;
}

.promise-body {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--charcoal-light);
  line-height: 1.75;
}

/* ── HOME: Full-width Quote ── */
.brand-quote {
  padding: var(--space-24) var(--space-8);
  text-align: center;
  background: var(--charcoal);
}

.brand-quote-text {
  font-family: var(--font-serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.5rem, 3.5vw, 2.625rem);
  color: var(--ivory);
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.55;
}

.brand-quote-author {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: var(--space-6);
}

/* ── HOME: Signature Journeys Grid ── */
.journeys-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--stone-dark);
  border: 1px solid var(--stone-dark);
}

.journeys-grid .journey-card {
  background: var(--charcoal);
}

/* ── HOME: Pillars Grid ── */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--stone-dark);
  border: 1px solid var(--stone-dark);
}

/* ── HOME: Consultation CTA ── */
.cta-section {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal);
}

.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 120px rgba(0, 0, 0, 0.6);
  pointer-events: none;
  z-index: 1;
}

.cta-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) contrast(1.05);
  animation: kenBurnsCta 12s ease-in-out infinite alternate;
  transform-origin: center;
  will-change: transform;
}

@keyframes kenBurnsCta {
  0% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1.1);
  }
}

.cta-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to top, rgba(10, 8, 5, 0.9) 0%, rgba(10, 8, 5, 0.5) 50%, rgba(10, 8, 5, 0.2) 100%);
}

.cta-content {
  position: relative;
  z-index: 3;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: var(--space-16) var(--space-8);
}

.cta-label {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: var(--space-5);
}

.cta-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  color: white;
  line-height: 1.15;
  margin-bottom: var(--space-6);
}

.cta-body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: 300;
  color: white;
  line-height: 1.75;
  margin-bottom: var(--space-10);
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.cta-buttons .btn {
  transition: transform var(--duration-base) var(--ease-out), background var(--duration-base), color var(--duration-base), box-shadow var(--duration-base);
}

.cta-buttons .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

/* ── JOURNEYS PAGE ── */
.journeys-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--stone-dark);
  margin-bottom: 2px;
}

.journeys-featured .journey-card-image {
  aspect-ratio: 16 / 10;
}

.journeys-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--stone-dark);
}

/* ── EXPERIENCES PAGE ── */
.experience-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
  align-items: stretch;
}

.experience-section:nth-child(even) .experience-image-col {
  order: 2;
}

.experience-section:nth-child(even) .experience-text-col {
  order: 1;
}

.experience-image-col {
  position: relative;
  overflow: hidden;
}

.experience-section-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slower) var(--ease-out);
}

.experience-section:hover .experience-section-image {
  transform: scale(1.03);
}

.experience-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-16) var(--space-12);
  background: var(--ivory);
}

.experience-text-col.dark {
  background: var(--charcoal);
  color: var(--ivory);
}

/* ── DESTINATIONS PAGE ── */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--stone-dark);
}

/* ── ABOUT PAGE ── */
.about-philosophy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.about-philosophy-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.about-philosophy-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-1);
  background: var(--stone-dark);
}

.value-item {
  background: var(--ivory);
  padding: var(--space-10);
}

.value-number {
  font-family: var(--font-serif);
  font-size: var(--text-4xl);
  font-weight: 300;
  color: var(--gold-pale);
  line-height: 1;
  margin-bottom: var(--space-4);
}

.value-title {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  color: var(--charcoal);
  margin-bottom: var(--space-3);
}

.value-body {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--charcoal-light);
  line-height: 1.75;
}

/* ── CONCIERGE PAGE ── */
.process-timeline {
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

.process-step {
  padding-left: var(--space-12);
  margin-bottom: var(--space-12);
  position: relative;
}

.process-step::before {
  content: '';
  position: absolute;
  left: -4px;
  top: 6px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
}

/* ── CONTACT PAGE ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: start;
}

.contact-info-title {
  font-family: var(--font-serif);
  font-size: var(--text-3xl);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.25;
  margin-bottom: var(--space-6);
}

.contact-info-body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: 300;
  color: var(--charcoal-light);
  line-height: 1.75;
  margin-bottom: var(--space-8);
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}

.contact-detail-label {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  min-width: 80px;
}

.contact-detail-value {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: var(--charcoal-light);
  text-decoration: none;
  transition: color var(--duration-fast);
}

.contact-detail-value:hover {
  color: var(--gold);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .journeys-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .journeys-featured {
    grid-template-columns: 1fr;
  }

  .promise-grid {
    grid-template-columns: 1fr;
  }

  .promise-divider {
    display: none;
  }

  .about-philosophy {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .experience-section {
    grid-template-columns: 1fr;
  }

  .experience-section:nth-child(even) .experience-image-col,
  .experience-section:nth-child(even) .experience-text-col {
    order: unset;
  }
}

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

  .journeys-grid,
  .journeys-list {
    grid-template-columns: 1fr;
  }

  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .hero-scroll-hint {
    display: none;
  }

  .experience-text-col {
    padding: var(--space-10) var(--space-5);
  }
}

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

  .destinations-grid {
    grid-template-columns: 1fr;
  }
}