/* ============================================
   KORAPUT EXPERIENCE — Warm Editorial
   Premium Travel Magazine Aesthetic
   ============================================ */

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: var(--color-terracotta) var(--color-cream);
}

html::-webkit-scrollbar {
  width: 5px;
}

html::-webkit-scrollbar-track {
  background: var(--color-cream);
}

html::-webkit-scrollbar-thumb {
  background: var(--color-terracotta-light);
  border-radius: var(--radius-full);
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.text-odia {
  font-family: var(--font-odia);
}

/* ============================================
   HERO SECTION — Warm Editorial
   ============================================ */

.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    background: var(--color-cream);
}

/* Subtle warm gradient background */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        160deg,
        var(--color-cream) 0%,
        var(--color-ivory) 30%,
        var(--color-warm-sand) 70%,
        var(--color-cream) 100%
    );
}

/* Soft warm color accents — editorial blobs */
.hero-decor {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 2;
    pointer-events: none;
}

.hero-decor-1 {
    width: 600px;
    height: 600px;
    background: var(--color-terracotta-light);
    top: -200px;
    right: 10%;
    opacity: 0.12;
    animation: floatBlob1 25s ease-in-out infinite;
}

.hero-decor-2 {
    width: 400px;
    height: 400px;
    background: var(--color-clay);
    bottom: -100px;
    left: 15%;
    opacity: 0.1;
    animation: floatBlob2 30s ease-in-out infinite;
}

.hero-decor-3 {
    width: 300px;
    height: 300px;
    background: var(--color-sage);
    top: 20%;
    right: 0;
    opacity: 0.08;
    animation: floatBlob3 22s ease-in-out infinite;
}

.hero-decor-4 {
    width: 200px;
    height: 200px;
    background: var(--color-spice);
    bottom: 30%;
    left: 40%;
    opacity: 0.06;
    animation: floatBlob4 28s ease-in-out infinite;
}

@keyframes floatBlob1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-40px, 30px) scale(1.08); }
}

@keyframes floatBlob2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -25px) scale(1.05); }
}

@keyframes floatBlob3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-25px, -20px) scale(1.1); }
}

@keyframes floatBlob4 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, 15px) scale(0.95); }
}

/* ---- NAVIGATION ---- */
.hero-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 48px;
    transition: all 0.4s var(--ease-out-expo);
}

.hero-nav.scrolled {
    padding: 14px 40px;
}

.hero-nav.scrolled .hero-nav-glass {
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 4px 20px rgba(26, 26, 26, 0.08);
}

.hero-nav-logo {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--color-charcoal);
    text-decoration: none;
    letter-spacing: -0.02em;
    z-index: 1;
    transition: all 0.4s var(--ease-out-expo);
}

.hero-nav.scrolled .hero-nav-logo {
    font-size: 1.15rem;
}

.hero-nav-logo span {
    color: var(--color-terracotta);
}

/* Floating Glass Menu - Centered */
.hero-nav-glass {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 999px;
    padding: 8px 6px;
    box-shadow: 0 2px 12px rgba(26, 26, 26, 0.04);
    transition: all 0.4s var(--ease-out-expo);
}

.hero-nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.hero-nav-link {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 400;
    transition: all 0.3s ease;
    padding: 8px 20px;
    border-radius: 999px;
}

.hero-nav-link:hover {
    color: var(--color-charcoal);
    background: rgba(26, 26, 26, 0.04);
}

/* ---- HERO CONTENT ---- */
.hero-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    height: 100vh;
    min-height: 700px;
    align-items: stretch;
}

/* ---- LEFT: TEXT ---- */
.hero-text {
    padding: 120px 48px 0 72px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 680px;
}

/* Hero Label */
.hero-label {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
    opacity: 0;
}

.hero-label-line {
    width: 32px;
    height: 1.5px;
    background: var(--color-terracotta);
}

.hero-label span:last-child {
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    color: var(--color-text-muted);
    font-weight: 500;
    text-transform: uppercase;
}

/* Hero Title */
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 4.5vw + 0.5rem, 4.5rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.12;
    color: var(--color-charcoal);
    margin-bottom: 28px;
    letter-spacing: -0.01em;
}

.hero-title-row {
    display: block;
    overflow: hidden;
}

.hero-title-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(105%);
    margin-right: 0.2em;
}

.hero-title-accent {
    color: var(--color-terracotta);
    font-style: italic;
    font-weight: 500;
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: clamp(0.95rem, 0.8rem + 0.5vw, 1.1rem);
    color: var(--color-text-secondary);
    font-weight: 400;
    line-height: 1.75;
    max-width: 440px;
    margin-bottom: 44px;
    opacity: 0;
    transform: translateY(20px);
}

/* ---- ACTIONS ---- */
.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    border-radius: 999px;
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    letter-spacing: 0.02em;
    white-space: nowrap;
    font-family: var(--font-heading);
    border: none;
    background: none;
}

.hero-btn-primary {
    background: var(--color-charcoal);
    color: var(--color-cream);
    box-shadow: 0 4px 20px rgba(26, 26, 26, 0.2);
}

.hero-btn-primary:hover {
    background: var(--color-terracotta);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(194, 89, 74, 0.25);
}

.hero-btn-primary svg {
    transition: transform 0.3s var(--ease-out-expo);
}

.hero-btn-primary:hover svg {
    transform: translateX(4px);
}

.hero-btn-outline {
    color: var(--color-charcoal);
    border: 1.5px solid var(--color-border);
    background: transparent;
    padding: 15px 28px;
}

.hero-btn-outline:hover {
    border-color: var(--color-charcoal);
    background: var(--color-charcoal);
    color: var(--color-cream);
}

/* Travelers Social Proof */
.hero-travelers {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
    opacity: 0;
    transform: translateY(10px);
}

.traveler-avatars {
    display: flex;
    flex-shrink: 0;
}

.traveler-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 2px solid var(--color-cream);
    margin-left: -6px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.traveler-avatar:first-child {
    margin-left: 0;
}

.traveler-count {
    font-size: 0.72rem;
    color: var(--color-text-muted);
    font-weight: 400;
    letter-spacing: 0.02em;
}

.traveler-count strong {
    color: var(--color-text-secondary);
    font-weight: 600;
}

/* ---- RIGHT: SCROLLING IMAGES ---- */
.hero-images {
    position: relative;
    height: 100%;
    display: flex;
    gap: 10px;
    padding: 0 56px 0 0;
    overflow: hidden;
    background: rgba(194, 89, 74, 0.05);
}

.hero-images::before,
.hero-images::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 120px;
    z-index: 5;
    pointer-events: none;
}

.hero-images::before {
    top: 0;
    background: linear-gradient(180deg, var(--color-cream) 0%, transparent 100%);
}

.hero-images::after {
    bottom: 0;
    background: linear-gradient(0deg, var(--color-cream) 0%, transparent 100%);
}

.image-col {
    flex: 1;
    overflow: hidden;
    position: relative;
    height: 100%;
}

.image-strip {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: max-content;
}

.image-col-1 .image-strip {
    animation: scrollUp 45s linear infinite;
}

.image-col-2 .image-strip {
    animation: scrollDown 50s linear infinite;
}

@keyframes scrollUp {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

@keyframes scrollDown {
    0% { transform: translateY(-50%); }
    100% { transform: translateY(0); }
}

.scroll-img {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 12px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-color: var(--color-border);
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.scroll-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(26, 26, 26, 0.25) 100%);
}

.scroll-img-label {
    position: absolute;
    bottom: 10px;
    left: 10px;
    z-index: 2;
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: white;
    font-weight: 500;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    background: rgba(26, 26, 26, 0.4);
    backdrop-filter: blur(8px);
    padding: 4px 10px;
    border-radius: 999px;
}

.section {
  padding: var(--space-6xl) var(--space-3xl);
  position: relative;
}

.section-dark {
  background: linear-gradient(180deg, var(--color-espresso) 0%, var(--color-charcoal) 100%);
  color: var(--color-cream);
}

.section-header {
  text-align: center;
  max-width: var(--container-narrow);
  margin: 0 auto var(--space-4xl);
}

.section-label {
  font-size: var(--text-xs);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-terracotta);
  margin-bottom: var(--space-md);
  display: block;
  font-weight: 500;
}

.section-title {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-lg);
  font-weight: 500;
}

.section-desc {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.section-dark .section-desc {
  color: rgba(245, 230, 211, 0.6);
}

/* The Experience — Cinematic Panels */
.section-experience {
    background: var(--color-charcoal);
    padding: var(--space-6xl) 0 0 0;
    overflow: hidden;
    position: relative;
}

.section-experience::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-terracotta), var(--color-clay), transparent);
    opacity: 0.4;
}

.anti-header {
    text-align: center;
    max-width: var(--container-narrow);
    margin: 0 auto var(--space-4xl);
    padding: 0 var(--space-3xl);
}

.anti-label {
    font-size: var(--text-xs);
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--color-terracotta-light);
    margin-bottom: var(--space-lg);
    display: block;
    font-weight: 500;
}

.anti-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw + 0.5rem, 3.5rem);
    font-weight: 400;
    font-style: italic;
    color: var(--color-cream);
    line-height: 1.15;
    margin-bottom: var(--space-lg);
    letter-spacing: -0.02em;
}

.anti-subtitle {
    font-size: var(--text-lg);
    color: rgba(245, 230, 211, 0.5);
    line-height: 1.6;
}

.anti-panels {
    display: flex;
    gap: 0;
    width: 100%;
    height: 70vh;
    min-height: 500px;
}

.anti-panel {
    flex: 1;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.6s var(--ease-out-expo);
}

.anti-panel:hover {
    flex: 2;
}

.panel-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s var(--ease-out-expo);
}

.anti-panel:hover .panel-image {
    transform: scale(1.08);
}

.panel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(26, 26, 26, 0.3) 0%,
        rgba(26, 26, 26, 0.7) 100%
    );
    transition: background 0.4s ease;
}

.anti-panel:hover .panel-overlay {
    background: linear-gradient(
        180deg,
        rgba(26, 26, 26, 0.1) 0%,
        rgba(26, 26, 26, 0.6) 100%
    );
}

.panel-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-2xl);
    transform: translateY(20px);
    transition: transform 0.5s var(--ease-out-expo);
}

.anti-panel:hover .panel-content {
    transform: translateY(0);
}

.panel-time {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-terracotta-light);
    margin-bottom: var(--space-sm);
    font-weight: 500;
    opacity: 0.8;
}

.panel-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    font-weight: 400;
    font-style: italic;
    color: var(--color-cream);
    line-height: 1.2;
    margin-bottom: var(--space-sm);
    letter-spacing: -0.01em;
}

.panel-desc {
    font-size: var(--text-sm);
    color: rgba(245, 230, 211, 0.6);
    line-height: 1.6;
    max-width: 280px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s var(--ease-out-expo) 0.1s;
}

.anti-panel:hover .panel-desc {
    opacity: 1;
    transform: translateY(0);
}

/* Anti-Itinerary Responsive */
@media (max-width: 1024px) {
    .anti-panels {
        flex-direction: column;
        height: auto;
    }
    
    .anti-panel {
        height: 300px;
        flex: none;
    }
    
    .anti-panel:hover {
        flex: none;
    }
    
    .panel-desc {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .anti-panel {
        height: 250px;
    }
    
    .panel-heading {
        font-size: 1.3rem;
    }
}

/* Stats Section */
.stats-section {
    padding: var(--space-4xl) var(--space-3xl);
    background: var(--color-cream);
}

.stats-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-3xl);
    max-width: var(--container-wide);
    margin: 0 auto;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.stat-number {
    font-family: var(--font-body);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 600;
    color: var(--color-charcoal);
    line-height: 1.1;
    margin-bottom: var(--space-sm);
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.72rem;
    color: var(--color-text-muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
    white-space: nowrap;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: var(--color-border);
    flex-shrink: 0;
}

/* The Pulse */
.pulse-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  max-width: var(--container-wide);
  margin: 0 auto;
}

.pulse-card {
  position: relative;
  aspect-ratio: 9/16;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--duration-slow) var(--ease-out-expo);
}

.pulse-card:hover {
  transform: scale(1.02);
}

.pulse-card-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pulse-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 35%,
    rgba(26, 26, 26, 0.85) 100%
  );
}

.pulse-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-2xl);
}

.pulse-card-title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  color: var(--color-cream);
  margin-bottom: var(--space-sm);
  font-weight: 500;
}

.pulse-card-desc {
  font-size: var(--text-sm);
  color: rgba(245, 230, 211, 0.75);
  margin-bottom: var(--space-lg);
}

.pulse-card-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--color-terracotta-light);
  font-size: var(--text-sm);
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}

.pulse-card-cta::after {
  content: '\2192';
  transition: transform var(--duration-normal);
}

.pulse-card-cta:hover::after {
  transform: translateX(4px);
}

/* The Offerings */
.offerings-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-4xl);
  max-width: var(--container-wide);
  margin: 0 auto;
}

.offering-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  opacity: 0;
  transform: translateY(60px);
}

.offering-card:nth-child(even) {
  grid-template-columns: 1fr 1.2fr;
}

.offering-card:nth-child(even) .offering-image {
  order: 2;
}

.offering-card:nth-child(even) .offering-content {
  order: 1;
}

.offering-image {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.offering-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slowest) var(--ease-out-expo);
}

.offering-card:hover .offering-image img {
  transform: scale(1.04);
}

.offering-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(26, 26, 26, 0.15), transparent);
}

.offering-badge {
  position: absolute;
  top: var(--space-xl);
  left: var(--space-xl);
  background: var(--color-charcoal);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  color: var(--color-cream);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}

.offering-content {
  padding: var(--space-xl);
}

.offering-duration {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  color: var(--color-terracotta);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
  font-weight: 500;
}

.offering-title {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-lg);
  line-height: 1.15;
  font-weight: 500;
}

.offering-desc {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xl);
  line-height: 1.8;
}

.offering-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.offering-highlight {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  font-weight: 400;
}

.offering-highlight svg {
  width: 16px;
  height: 16px;
  fill: var(--color-terracotta);
}

.offering-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-xl);
  background: var(--color-charcoal);
  color: var(--color-cream);
  text-decoration: none;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  letter-spacing: 0.05em;
  font-weight: 500;
  transition: all var(--duration-normal) var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.offering-cta:hover {
  background: var(--color-terracotta);
  transform: translateY(-2px);
}

.offering-cta span {
  position: relative;
  z-index: 1;
}

.offering-cta svg {
  position: relative;
  z-index: 1;
  width: 16px;
  height: 16px;
  transition: transform var(--duration-normal);
}

.offering-cta:hover svg {
  transform: translateX(4px);
}

/* The Cartography */
.map-container {
  position: relative;
  max-width: var(--container-max);
  margin: 0 auto;
  aspect-ratio: 16/10;
  background: var(--color-espresso);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.map-svg {
  width: 100%;
  height: 100%;
}

.map-location {
  position: absolute;
  cursor: pointer;
  transition: transform var(--duration-normal) var(--ease-spring);
}

.map-location:hover {
  transform: scale(1.2);
  z-index: 10;
}

.map-pin {
  width: 32px;
  height: 32px;
  background: var(--color-terracotta);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(194, 89, 74, 0.3);
  transition: all var(--duration-normal);
}

.map-pin::after {
  content: '';
  width: 12px;
  height: 12px;
  background: var(--color-cream);
  border-radius: 50%;
}

.map-location:hover .map-pin {
  background: var(--color-terracotta-light);
}

.map-tooltip {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--color-charcoal);
  color: var(--color-cream);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  width: 260px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--duration-normal) var(--ease-out-expo);
  pointer-events: none;
}

.map-location:hover .map-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.map-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-top-color: var(--color-charcoal);
}

.map-tooltip-title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
  font-weight: 500;
}

.map-tooltip-desc {
  font-size: var(--text-sm);
  color: rgba(245, 230, 211, 0.7);
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.map-tooltip-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-xs);
  color: var(--color-terracotta-light);
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}

/* The Voices */
.voices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2xl);
  max-width: var(--container-wide);
  margin: 0 auto;
}

.voice-card {
  background: rgba(245, 230, 211, 0.06);
  border: 1px solid rgba(245, 230, 211, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  transition: all var(--duration-slow) var(--ease-out-expo);
}

.voice-card:hover {
  transform: translateY(-6px);
  border-color: rgba(194, 89, 74, 0.3);
}

.voice-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: var(--space-lg);
  border: 2px solid rgba(194, 89, 74, 0.3);
}

.voice-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.voice-name {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  color: var(--color-cream);
  margin-bottom: 4px;
  font-weight: 500;
}

.voice-role {
  font-size: var(--text-sm);
  color: var(--color-terracotta-light);
  margin-bottom: var(--space-lg);
  font-weight: 400;
}

.voice-quote {
  font-size: var(--text-base);
  color: rgba(245, 230, 211, 0.75);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
  font-style: italic;
}

.voice-audio-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  background: rgba(194, 89, 74, 0.15);
  border: 1px solid rgba(194, 89, 74, 0.25);
  border-radius: var(--radius-full);
  color: var(--color-cream);
  cursor: pointer;
  font-size: var(--text-sm);
  transition: all var(--duration-normal);
  font-family: var(--font-body);
}

.voice-audio-btn:hover {
  background: rgba(194, 89, 74, 0.3);
}

.voice-audio-btn svg {
  width: 16px;
  height: 16px;
}

/* Footer */
.footer {
  position: relative;
  padding: var(--space-6xl) var(--space-3xl) var(--space-3xl);
  background: var(--color-charcoal);
  color: var(--color-cream);
  overflow: hidden;
}

.footer-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-terracotta), var(--color-clay), var(--color-sage), transparent);
}

.footer-content {
  max-width: var(--container-wide);
  margin: 0 auto;
}

.footer-poetry {
  text-align: center;
  margin-bottom: var(--space-4xl);
}

.footer-poetry-odia {
  font-size: var(--text-xl);
  color: rgba(245, 230, 211, 0.7);
  margin-bottom: var(--space-md);
  font-style: italic;
}

.footer-poetry-english {
  font-size: var(--text-base);
  color: rgba(245, 230, 211, 0.45);
}

.footer-wave {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: var(--space-4xl);
}

.footer-wave-bar {
  width: 2px;
  height: 20px;
  background: var(--color-terracotta);
  border-radius: 2px;
  animation: footerWave 1.5s ease-in-out infinite;
}

.footer-wave-bar:nth-child(2) { animation-delay: 0.1s; }
.footer-wave-bar:nth-child(3) { animation-delay: 0.2s; }
.footer-wave-bar:nth-child(4) { animation-delay: 0.3s; }
.footer-wave-bar:nth-child(5) { animation-delay: 0.4s; }
.footer-wave-bar:nth-child(6) { animation-delay: 0.5s; }
.footer-wave-bar:nth-child(7) { animation-delay: 0.6s; }
.footer-wave-bar:nth-child(8) { animation-delay: 0.7s; }
.footer-wave-bar:nth-child(9) { animation-delay: 0.8s; }

@keyframes footerWave {
  0%, 100% { height: 10px; opacity: 0.4; }
  50% { height: 28px; opacity: 1; }
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3xl);
  margin-bottom: var(--space-4xl);
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  margin-bottom: var(--space-lg);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-link {
  display: block;
  color: rgba(245, 230, 211, 0.5);
  text-decoration: none;
  font-size: var(--text-sm);
  margin-bottom: var(--space-sm);
  transition: color var(--duration-normal);
}

.footer-link:hover {
  color: var(--color-terracotta-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-2xl);
  border-top: 1px solid rgba(245, 230, 211, 0.08);
}

.footer-copyright {
  font-size: var(--text-sm);
  color: rgba(245, 230, 211, 0.35);
}

.footer-social {
  display: flex;
  gap: var(--space-lg);
}

.footer-social-link {
  color: rgba(245, 230, 211, 0.5);
  transition: color var(--duration-normal);
}

.footer-social-link:hover {
  color: var(--color-terracotta-light);
}

/* Mobile Compass */
.mobile-compass {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  background: rgba(253, 249, 243, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--color-border-light);
  display: none;
}

.compass-inner {
  display: flex;
  justify-content: space-around;
  padding: var(--space-sm) 0;
}

.compass-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: var(--color-text-muted);
  font-size: 0.58rem;
  font-weight: 500;
  padding: var(--space-sm) var(--space-md);
  transition: color var(--duration-normal);
  letter-spacing: 0.05em;
}

.compass-item svg {
  width: 20px;
  height: 20px;
}

.compass-item.active {
  color: var(--color-terracotta);
}

/* Glass Card */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
}

.glass-card-dark {
  background: rgba(245, 230, 211, 0.06);
  backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(245, 230, 211, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
}

/* Accordion */
.accordion-item {
  border-bottom: 1px solid var(--color-border-light);
}

.accordion-header {
  padding: var(--space-lg) 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-weight: 500;
}

.accordion-item.open .accordion-content {
  max-height: 500px;
  padding-bottom: var(--space-lg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-slow) var(--ease-out-expo);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .stats-container {
        gap: var(--space-xl);
    }
    .stat-divider {
        display: none;
    }
    .stat-item {
        min-width: 120px;
    }
    
    .hero {
        height: auto;
        min-height: 100vh;
        overflow: visible;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        height: auto;
        min-height: 100vh;
    }
    
    .hero-images {
        display: grid;
        grid-template-columns: 1fr;
        height: 60vh;
        min-height: 400px;
        padding: 0 8px 24px;
        gap: 10px;
        background: transparent;
    }
    
    .image-col:nth-child(2) {
        display: none;
    }
    
    .image-col {
        flex: unset;
        width: 100%;
    }
    
    .scroll-img {
        aspect-ratio: 3/4;
        border-radius: 14px;
    }
    
    .hero-text {
        padding: 100px 24px 24px;
        max-width: 100%;
        align-items: center;
        text-align: center;
    }
    
    .hero-subtitle {
        max-width: 500px;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-nav {
        padding: 20px 24px;
    }
    
    .hero-nav-glass {
        display: none;
    }
    
    .pulse-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
    }
    
    .offerings-grid {
        gap: var(--space-3xl);
    }
    
    .offering-card,
    .offering-card:nth-child(even) {
        grid-template-columns: 1fr;
    }
    
    .offering-card:nth-child(even) .offering-image,
    .offering-card:nth-child(even) .offering-content {
        order: unset;
    }
    
    .voices-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(2.2rem, 9vw, 3rem);
    }
    
    .hero-btn {
        padding: 14px 26px;
        font-size: 0.85rem;
    }
    
    .mobile-compass {
        display: block;
    }
    
    .audio-toggle {
        bottom: 80px;
    }
}

@media (max-width: 480px) {
    .hero-text {
        padding: 90px 20px 48px;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-btn {
        width: 100%;
        justify-content: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-lg);
        text-align: center;
    }
}
