/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Remove outline on click for all elements, but keep for keyboard navigation */
*:focus {
  outline: none;
}

*:focus-visible {
  outline: 2px solid var(--muted-gold);
  outline-offset: 2px;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  line-height: 1.6;
  color: #343a40;
  overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Premium Eco-Luxe Color Variables */
:root {
  --deep-muted-green: #1e392f;
  --off-white-cream: #fdfdf5;
  --muted-gold: #daa520;
  --deep-green-text: #1e392f;
  --keyline-border: rgba(42, 74, 63, 0.3);
  --header-glass: rgba(30, 57, 47, 0.95);
  --gold-accent: #e6b800;
  --premium-shadow: rgba(0, 0, 0, 0.08);
  --transition-duration: 0.4s;
  --header-height: 100px; /* Ultra-luxurious spacing */
  --blur-backdrop: blur(20px);
}

/* Premium Hero Section - Eco-Luxe Theme */
.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Full-Width Looping Background Video */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* Video Overlay for Enhanced Readability */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(30, 57, 47, 0.2) 0%,
    rgba(30, 57, 47, 0.35) 100%
  );
  z-index: -1;
}

/* Fallback background if no video */
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1e392f 0%, #2a4a3f 100%);
  z-index: -3;
}

/* Ultra-Premium Header Styles - Eco-Luxe Theme */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
  background-color: transparent;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  padding: 2rem 0;
  box-shadow: none;
  border-bottom: none;
}

/* Header inside hero section - transparent (already default) */
.hero-section .header:not(.scrolled) {
  background-color: transparent;
  box-shadow: none;
  border-bottom: none;
  padding: 2rem 0;
}

/* Header on scroll - Premium Glass Morphism Effect */
.header.scrolled {
  background-color: white !important;
  background-image: none !important;
  background: white !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
  padding: 1.25rem 0 !important;
}

/* Ensure scrolled header always takes priority over hero sections */
.hero-section .header.scrolled,
.contact-hero .header.scrolled {
  background-color: white !important;
  background: white !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
}

header.scrolled {
  background-color: white !important;
  background: white !important;
}

#header.scrolled {
  background-color: white !important;
  background: white !important;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 3rem;
  position: relative;
}

/* Premium Logo Styles */
.logo {
  margin-top:15px;
  flex-shrink: 0;
  position: relative;
  z-index: 10;
  margin-left: 2.5rem;
}

.logo-img {
  height: 80px;
  width: auto;
  transition: all var(--transition-duration) cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.logo:hover .logo-img {
  transform: scale(1.02);
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.25));
}

.header.scrolled .logo-img {
  height: 75px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

/* Premium Navigation Section - Equally Spaced */
.nav-section {
  display: flex;
  align-items: center;
  flex: 1; /* Take up remaining space */
  justify-content: space-between; /* Space between nav and CTA */
  position: relative;
}

.navigation {
  display: flex;
  align-items: center;
  justify-content: space-evenly; /* Spread items evenly */
  flex: 1; /* Take available space */
  position: relative;
  margin-left: 8rem; /* Shift navigation to the right */
}

/* Ultra-Premium Navigation Links */
.nav-link {
  position: relative;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem; /* Slightly smaller to fit more items */
  padding: 1rem 0;
  transition: all var(--transition-duration) cubic-bezier(0.4, 0, 0.2, 1);
  font-family: "Inter", sans-serif;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  white-space: nowrap; /* Prevent text wrapping */
}

/* Nav links inside hero section - white with shadow (already default) */
.hero-section .nav-link {
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.header.scrolled .nav-link {
  color: #1e392f;
  font-size: 1rem;
  text-shadow: none;
}

/* Sophisticated hover effects */
.nav-link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -0.5rem;
  right: -0.5rem;
  bottom: 50%;
  background: rgba(218, 165, 32, 0.08);
  border-radius: 8px;
  transform: scaleY(0);
  transition: transform var(--transition-duration) cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--muted-gold), var(--gold-accent));
  border-radius: 1px;
  transform: scaleX(0) !important;
  transform-origin: center;
  transition: transform var(--transition-duration) cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
}

.nav-link:hover::before {
  transform: scaleY(1);
}

.nav-link:hover::after {
  transform: scaleX(1) !important;
  opacity: 1;
}

.nav-link:hover {
  color: var(--gold-accent);
  transform: translateY(-1px);
}

/* Ultra-Premium CTA Button */
.cta-button {
  background: linear-gradient(
    135deg,
    var(--muted-gold) 0%,
    var(--gold-accent) 100%
  );
  color: var(--deep-green-text);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all var(--transition-duration) cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.025em;
  position: relative;
  overflow: hidden;
  flex-shrink: 0; /* Prevent button from shrinking */
  margin-left: auto; /* Push to the right */
  box-shadow: 0 4px 16px rgba(218, 165, 32, 0.3), 0 2px 4px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s ease;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  background: linear-gradient(135deg, var(--gold-accent) 0%, #f0c814 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 32px rgba(218, 165, 32, 0.4), 0 4px 8px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.cta-button:active {
  transform: translateY(-1px) scale(1.01);
  transition-duration: 0.1s;
}

/* Premium Hero Content Overlay */
.hero-content {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  text-align: center;
  color: var(--off-white-cream);
  z-index: 2;
  max-width: 900px;
  padding: 0 2rem;
  animation: heroFadeIn 1.5s ease-out;
}

/* Main Headline - Premium Serif Typography */
.hero-headline {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 4.5rem;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--off-white-cream);
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
  letter-spacing: -0.02em;
}

/* Sub-headline - Clean Sans-Serif */
.hero-subheadline {
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 3rem;
  color: var(--off-white-cream);
  opacity: 0.95;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Main Call-to-Action Button */
.hero-cta-button {
  background-color: var(--muted-gold);
  color: var(--deep-green-text);
  border: none;
  padding: 1.25rem 3rem;
  border-radius: 12px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: none;
  letter-spacing: 0.025em;
  box-shadow: 0 4px 20px rgba(218, 165, 32, 0.3);
  position: relative;
  overflow: hidden;
}

.hero-cta-button:hover {
  background-color: #c8941c;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(218, 165, 32, 0.4);
}

.hero-cta-button:active {
  transform: translateY(-1px);
}

/* Elegant fade-in animation */
@keyframes heroFadeIn {
  0% {
    opacity: 0;
    transform: translate(-50%, -45%);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

/* Content Section */
.content-section {
  padding: 5rem 0; /* Increased padding for luxury spacing */
  background-color: var(--off-white-cream);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem; /* Consistent with header padding */
}

.content-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--deep-green-text);
  font-family: "Inter", sans-serif;
}

.content-section p {
  font-size: 1.1rem;
  color: #6c757d;
  margin-bottom: 2rem;
}

/* Responsive Design - Maintaining Premium Feel */
@media (max-width: 768px) {
  .header-container {
    padding: 0 2rem; /* Reduced but still generous */
  }

  .nav-section {
    gap: 1.5rem;
  }

  .navigation {
    gap: 1.5rem;
  }

  .nav-link {
    font-size: 0.95rem;
    padding: 0.6rem 0;
  }

  .cta-button {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  .container {
    padding: 0 2rem;
  }
}

@media (max-width: 480px) {
  .navigation {
    display: none;
  }

  .nav-section {
    justify-content: flex-end;
  }

  .header-container {
    padding: 0 1.5rem;
  }

  .container {
    padding: 0 1.5rem;
  }

  .logo {
    margin-left: 0;
  }
}

/* Additional Premium Touches */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
} /* 
Subtle Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--off-white-cream);
  opacity: 0.8;
  z-index: 2;
  animation: scrollPulse 2s ease-in-out infinite;
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  color: var(--off-white-cream);
}

.scroll-text {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.6;
    transform: translateX(-50%) translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Ensure scroll indicator stays centered on all devices */
@media (max-width: 768px) {
  .scroll-indicator {
    left: 50% !important;
    transform: translateX(-50%);
    margin-left: 0;
    margin-right: 0;
  }
  
  @keyframes scrollPulse {
    0%,
    100% {
      opacity: 0.6;
      transform: translateX(-50%) translateY(0);
    }
    50% {
      opacity: 1;
      transform: translateX(-50%) translateY(-5px);
    }
  }
}

/* Enhanced Responsive Design for Hero Section */
@media (max-width: 1024px) {
  .hero-headline {
    font-size: 3.5rem;
  }

  .hero-subheadline {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
  }

  .hero-cta-button {
    padding: 1.1rem 2.5rem;
    font-size: 1rem;
  }
}

@media (max-width: 768px) and (min-width: 481px) {
  .hero-content {
    padding: 0 2rem;
    max-width: 90%;
  }

  .hero-headline {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    line-height: 1.2;
  }

  .hero-subheadline {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.5;
  }

  .hero-cta-button {
    padding: 1.1rem 2.25rem;
    font-size: 1rem;
  }

  .scroll-indicator {
    bottom: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 0 1.25rem;
    max-width: 100%;
    width: calc(100% - 2.5rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: mobileHeroReveal 2.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .hero-headline {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-align: center;
    display: block;
    position: relative;
    width: 100%;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    font-family: "Playfair Display", Georgia, serif;
    letter-spacing: -0.02em;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }

  .hero-headline::before {
    display: none;
  }

  .hero-headline::after {
    display: none;
  }

  .hero-subheadline {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 2rem;
    width: 100%;
    max-width: 100%;
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    position: relative;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }

  .hero-subheadline::before {
    display: none;
  }

  .hero-cta-button {
    padding: 1rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--muted-gold) 0%, var(--gold-accent) 100%);
    border: none;
    color: var(--deep-green-text);
    text-transform: none;
    letter-spacing: 0.5px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: inline-block;
    width: auto;
    max-width: 100%;
    white-space: nowrap;
    box-shadow: 
      0 12px 40px rgba(218, 165, 32, 0.4),
      0 6px 20px rgba(0, 0, 0, 0.15),
      inset 0 1px 0 rgba(255, 255, 255, 0.3),
      inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .hero-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .hero-cta-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
  }

  .hero-cta-button:active {
    transform: scale(0.98);
    box-shadow: 
      0 6px 20px rgba(218, 165, 32, 0.3),
      0 3px 10px rgba(0, 0, 0, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }

  .hero-cta-button:active::before {
    left: 100%;
  }

  .hero-cta-button:active::after {
    width: 120%;
    height: 120%;
    opacity: 1;
  }
  
  /* Scroll indicator adjustments */
  .scroll-indicator {
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .scroll-arrow {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .scroll-text {
    font-size: 0.7rem;
    text-align: center;
    white-space: nowrap;
  }

  /* Premium Mobile Animations */
  @keyframes mobileHeroReveal {
    0% {
      opacity: 0;
      transform: translate(-50%, -50%) scale(0.95);
    }
    100% {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1);
    }
  }
}

/* Extra small mobile devices - 320px to 375px */
@media (max-width: 375px) {
  .hero-content {
    padding: 0 1rem;
    width: calc(100% - 2rem);
  }
  
  .hero-headline {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
  }
  
  .hero-subheadline {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 1.75rem;
  }
  
  .hero-cta-button {
    padding: 0.9rem 1.75rem;
    font-size: 0.9rem;
  }
  
  .scroll-indicator {
    bottom: 0.75rem;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .scroll-text {
    font-size: 0.65rem;
  }
}

/* Very small mobile devices - below 320px */
@media (max-width: 320px) {
  .hero-content {
    padding: 0 0.75rem;
    width: calc(100% - 1.5rem);
  }
  
  .hero-headline {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .hero-subheadline {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
  }
  
  .hero-cta-button {
    padding: 0.85rem 1.5rem;
    font-size: 0.85rem;
  }
  
  .scroll-indicator {
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .scroll-text {
    font-size: 0.6rem;
  }
  
  .scroll-arrow {
    width: 18px;
    height: 18px;
  }
}

/* Ensure video plays smoothly on mobile */
@media (max-width: 768px) {
  .hero-video {
    object-position: center center;
  }
}

/* High-end devices optimization */
@media (min-width: 1440px) {
  .hero-headline {
    font-size: 5rem;
  }

  .hero-subheadline {
    font-size: 1.6rem;
  }

  .hero-cta-button {
    padding: 1.4rem 3.5rem;
    font-size: 1.2rem;
  }
}
/* Premium Mobile Menu Toggle - Redesigned */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border: 1.5px solid rgba(218, 165, 32, 0.2);
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 4px 12px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Glow effect on hover */
.mobile-menu-toggle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(218, 165, 32, 0.2), transparent);
  border-radius: 50%;
  transition: all 0.4s ease;
  opacity: 0;
}

.mobile-menu-toggle:hover::before {
  width: 100%;
  height: 100%;
  opacity: 1;
}

.mobile-menu-toggle:hover {
  background: linear-gradient(135deg, rgba(218, 165, 32, 0.15), rgba(218, 165, 32, 0.08));
  border-color: rgba(218, 165, 32, 0.4);
  transform: scale(1.05);
  box-shadow: 
    0 6px 20px rgba(218, 165, 32, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.mobile-menu-toggle:active {
  transform: scale(0.95);
}

/* Premium Hamburger Lines */
.hamburger-line {
  width: 22px;
  height: 2.5px;
  background: var(--off-white-cream);
  margin: 3px 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
  position: relative;
  box-shadow: 0 0 8px rgba(253, 253, 245, 0.3);
}

/* Hamburger lines inside hero section - white with glow (already default) */
.hero-section .hamburger-line {
  background: var(--off-white-cream);
  box-shadow: 0 0 8px rgba(253, 253, 245, 0.3);
}

/* Hamburger lines when scrolled - dark */
.header.scrolled .hamburger-line {
  background: #1e392f;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.hero-section .mobile-menu-toggle {
  background: linear-gradient(135deg, rgba(30, 57, 47, 0.3), rgba(30, 57, 47, 0.2));
  border-color: rgba(253, 253, 245, 0.3);
}

.hero-section .mobile-menu-toggle:hover {
  background: linear-gradient(135deg, rgba(30, 57, 47, 0.4), rgba(30, 57, 47, 0.3));
  border-color: rgba(218, 165, 32, 0.5);
}

/* Mobile menu toggle when scrolled - lighter background */
.header.scrolled .mobile-menu-toggle {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border-color: rgba(218, 165, 32, 0.2);
}

.header.scrolled .mobile-menu-toggle:hover {
  background: linear-gradient(135deg, rgba(218, 165, 32, 0.15), rgba(218, 165, 32, 0.08));
  border-color: rgba(218, 165, 32, 0.4);
}

/* Animated X transformation */
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
  background: var(--gold-accent);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
  background: var(--gold-accent);
}

/* Active state styling */
.mobile-menu-toggle.active {
  background: linear-gradient(135deg, rgba(218, 165, 32, 0.2), rgba(218, 165, 32, 0.1));
  border-color: rgba(218, 165, 32, 0.5);
  box-shadow: 
    0 6px 20px rgba(218, 165, 32, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Premium Mobile Navigation - Redesigned */
.mobile-navigation {
  position: fixed;
  top: var(--header-height);
  left: -100%;
  width: 100%;
  height: calc(100vh - var(--header-height));
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  display: none;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  pointer-events: none;
}

.mobile-navigation.active {
  left: 0;
  opacity: 1;
  pointer-events: auto;
  box-shadow: 
    -10px 0 40px rgba(0, 0, 0, 0.3),
    inset 1px 0 0 rgba(218, 165, 32, 0.1);
}

.mobile-nav-content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  min-height: 100%;
  gap: 0.5rem;
  padding: 3rem 2rem;
  position: relative;
}

/* Premium Mobile Nav Links */
.mobile-nav-link {
  color: var(--deep-green-text);
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  padding: 1.2rem 2rem;
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: left;
  position: relative;
  overflow: hidden;
  background: rgba(30, 57, 47, 0.03);
  border: 1px solid rgba(30, 57, 47, 0.08);
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateX(-30px);
  animation: slideInLeft 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Staggered animation for each link */
.mobile-nav-link:nth-child(1) { animation-delay: 0.1s; }
.mobile-nav-link:nth-child(2) { animation-delay: 0.15s; }
.mobile-nav-link:nth-child(3) { animation-delay: 0.2s; }
.mobile-nav-link:nth-child(4) { animation-delay: 0.25s; }
.mobile-nav-link:nth-child(5) { animation-delay: 0.3s; }
.mobile-nav-link:nth-child(6) { animation-delay: 0.35s; }
.mobile-nav-link:nth-child(7) { animation-delay: 0.4s; }
.mobile-nav-link:nth-child(8) { animation-delay: 0.45s; }

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Accent line on left */
.mobile-nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, var(--muted-gold), var(--gold-accent));
  border-radius: 0 2px 2px 0;
  transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Shimmer effect */
.mobile-nav-link::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(218, 165, 32, 0.15),
    transparent
  );
  transition: left 0.6s ease;
}

.mobile-nav-link:hover::after,
.mobile-nav-link:active::after {
  left: 100%;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
  background: rgba(218, 165, 32, 0.15);
  border-color: rgba(218, 165, 32, 0.4);
  color: var(--deep-green-text);
  transform: translateX(8px);
  box-shadow: 
    0 8px 24px rgba(218, 165, 32, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.mobile-nav-link:hover::before {
  height: 60%;
}

.mobile-nav-link:active {
  transform: translateX(6px) scale(0.98);
}

/* Premium CTA Button in Mobile Menu */
.mobile-cta-button {
  background: linear-gradient(
    135deg,
    var(--muted-gold) 0%,
    var(--gold-accent) 100%
  );
  color: var(--deep-green-text);
  border: none;
  padding: 0.7rem 1.2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: "Inter", sans-serif;
  letter-spacing: 0.03em;
  margin-top: 1.5rem;
  box-shadow: 
    0 8px 24px rgba(218, 165, 32, 0.4),
    0 4px 8px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  animation: slideInUp 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
}

@keyframes slideInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Shine effect for CTA */
.mobile-cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.6s ease;
}

.mobile-cta-button:hover::before,
.mobile-cta-button:active::before {
  left: 100%;
}

.mobile-cta-button:hover,
.mobile-cta-button:active {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 
    0 12px 40px rgba(218, 165, 32, 0.5),
    0 6px 12px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  background: linear-gradient(135deg, var(--gold-accent) 0%, #f0c814 100%);
}

.mobile-cta-button:active {
  transform: translateY(-2px) scale(0.99);
}

/* Decorative elements */
.mobile-nav-content::before {
  content: "";
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--muted-gold), transparent);
  border-radius: 2px;
  opacity: 0.6;
}

.mobile-nav-content::after {
  content: "";
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--muted-gold), transparent);
  border-radius: 2px;
  opacity: 0.6;
}

/* Premium Header Enhancements */
.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(253, 253, 245, 0.1),
    transparent
  );
  opacity: 0;
  transition: opacity var(--transition-duration) ease;
}

.header.scrolled::before {
  opacity: 1;
}

/* Enhanced Responsive Design */
/* Large Desktop - 1440px+ */
@media (min-width: 1440px) {
  .header-container {
    max-width: 1800px;
    padding: 0 4rem;
  }

  .navigation {
    max-width: 900px;
    gap: 2rem;
  }

  .nav-link {
    font-size: 1rem;
  }

  .cta-button {
    padding: 0.6rem 1.4rem;
    font-size: 0.85rem;
  }

  .logo-img {
    height: 72px;
  }

  .header.scrolled .logo-img {
    height: 66px;
  }
}

/* Desktop - 1200px to 1439px */
@media (max-width: 1439px) and (min-width: 1200px) {
  .header-container {
    padding: 0 3rem;
  }

  .navigation {
    gap: 1.5rem;
  }

  .nav-link {
    font-size: 0.95rem;
  }

  .cta-button {
    padding: 0.55rem 1.2rem;
    font-size: 0.8rem;
  }
}

/* Small Desktop / Large Tablet - 1024px to 1199px */
@media (max-width: 1199px) and (min-width: 1024px) {
  .header-container {
    padding: 0 2.5rem;
  }

  .navigation {
    gap: 1.2rem;
  }

  .nav-link {
    font-size: 0.9rem;
    padding: 0.8rem 0;
  }

  .cta-button {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    margin-left: 1.5rem;
  }

  .logo-img {
    height: 64px;
  }

  .header.scrolled .logo-img {
    height: 58px;
  }
}

/* Tablet - 768px to 1023px */
@media (max-width: 1023px) {
  .navigation {
    display: none;
  }

  .cta-button {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-navigation {
    display: block;
  }

  .header-container {
    padding: 0 2rem;
  }

  .nav-section {
    justify-content: flex-end;
  }

  .logo {
    margin-left: 0;
  }

  .logo-img {
    height: 60px;
  }

  .header.scrolled .logo-img {
    height: 54px;
  }

  .header {
    padding: 1.5rem 0;
  }

  .header.scrolled {
    padding: 1.2rem 0;
  }
}

/* Mobile Landscape / Small Tablet - 640px to 767px */
@media (max-width: 767px) and (min-width: 640px) {
  .header-container {
    padding: 0 2rem;
  }

  .logo-img {
    height: 58px;
  }

  .header.scrolled .logo-img {
    height: 52px;
  }

  .mobile-menu-toggle {
    width: 50px;
    height: 50px;
  }

  .hamburger-line {
    width: 20px;
    height: 2.5px;
  }

  .mobile-nav-link {
    font-size: 1.2rem;
    padding: 1.1rem 1.8rem;
  }

  .mobile-cta-button {
    padding: 0.7rem 1.3rem;
    font-size: 0.85rem;
  }

  .mobile-nav-content {
    gap: 0.4rem;
    padding: 2.5rem 2rem;
  }
}

/* Mobile Portrait - 480px to 639px */
@media (max-width: 639px) and (min-width: 480px) {
  .header-container {
    padding: 0 1.5rem;
  }

  .header {
    padding: 1.5rem 0;
  }

  .header.scrolled {
    padding: 1rem 0;
  }

  .logo-img {
    height: 56px;
  }

  .header.scrolled .logo-img {
    height: 50px;
  }

  .mobile-menu-toggle {
    width: 48px;
    height: 48px;
  }

  .hamburger-line {
    width: 20px;
    height: 2.5px;
  }

  .mobile-nav-link {
    font-size: 1.15rem;
    padding: 1rem 1.5rem;
  }

  .mobile-cta-button {
    padding: 0.65rem 1.2rem;
    font-size: 0.8rem;
  }

  .mobile-nav-content {
    gap: 0.4rem;
    padding: 2rem 1.5rem;
  }
}

/* Small Mobile - 320px to 479px */
@media (max-width: 479px) {
  .header-container {
    padding: 0 1rem;
  }

  .header {
    padding: 1.2rem 0;
  }

  .header.scrolled {
    padding: 0.9rem 0;
  }

  .logo-img {
    height: 52px;
  }

  .header.scrolled .logo-img {
    height: 46px;
  }

  .mobile-menu-toggle {
    width: 46px;
    height: 46px;
  }

  .hamburger-line {
    width: 18px;
    height: 2px;
  }

  .mobile-nav-link {
    font-size: 1.1rem;
    padding: 0.9rem 1.2rem;
  }

  .mobile-cta-button {
    padding: 0.6rem 1.1rem;
    font-size: 0.8rem;
  }

  .mobile-nav-content {
    gap: 0.3rem;
    padding: 1.5rem 1rem;
  }
}

/* Extra Small Mobile - Below 320px */
@media (max-width: 319px) {
  .header-container {
    padding: 0 0.75rem;
  }

  .header {
    padding: 1rem 0;
  }

  .header.scrolled {
    padding: 0.8rem 0;
  }

  .logo-img {
    height: 48px;
  }

  .header.scrolled .logo-img {
    height: 42px;
  }

  .mobile-menu-toggle {
    width: 44px;
    height: 44px;
  }

  .hamburger-line {
    width: 16px;
    height: 2px;
  }

  .mobile-nav-link {
    font-size: 1rem;
    padding: 0.8rem 1rem;
  }

  .mobile-cta-button {
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
  }

  .mobile-nav-content {
    gap: 0.3rem;
    padding: 1.5rem 0.75rem;
  }
}

/* Premium Loading Animation */
@keyframes headerLoad {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.header {
  animation: headerLoad 0.8s ease-out;
}

/* Accessibility Enhancements */
@media (prefers-reduced-motion: reduce) {
  .header,
  .nav-link,
  .cta-button,
  .mobile-menu-toggle,
  .mobile-navigation {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus States for Accessibility - Remove outline on click, keep for keyboard navigation */
.nav-link:focus,
.cta-button:focus,
.mobile-menu-toggle:focus,
.mobile-nav-link:focus,
.mobile-cta-button:focus {
  outline: none;
}

/* Show outline only for keyboard navigation */
.nav-link:focus-visible,
.cta-button:focus-visible,
.mobile-menu-toggle:focus-visible,
.mobile-nav-link:focus-visible,
.mobile-cta-button:focus-visible {
  outline: 2px solid var(--muted-gold);
  outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  .header.scrolled {
    background: var(--deep-muted-green);
    border-bottom: 2px solid var(--muted-gold);
  }

  .nav-link,
  .cta-button {
    border: 1px solid currentColor;
  }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
  .nav-link,
  .mobile-nav-link {
    padding: 1.2rem 1rem;
    min-height: 44px;
  }

  .cta-button,
  .mobile-cta-button {
    min-height: 44px;
    padding: 0.65rem 1.2rem;
  }

  .mobile-menu-toggle {
    min-width: 48px;
    min-height: 48px;
  }

  .mobile-nav-link:active {
    background: rgba(218, 165, 32, 0.2);
  }
}

/* Landscape Orientation Adjustments */
@media (max-width: 1023px) and (orientation: landscape) {
  .header {
    padding: 1rem 0;
  }

  .header.scrolled {
    padding: 0.8rem 0;
  }

  .logo-img {
    height: 54px;
  }

  .header.scrolled .logo-img {
    height: 48px;
  }

  .mobile-navigation {
    height: calc(100vh - 60px);
  }

  .mobile-nav-content {
    gap: 0.25rem;
    padding: 1rem 2rem;
    justify-content: flex-start;
    padding-top: 1.5rem;
  }

  .mobile-nav-link {
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
  }

  .mobile-cta-button {
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
    margin-top: 0.5rem;
  }

  .mobile-menu-toggle {
    width: 46px;
    height: 46px;
  }

  .hamburger-line {
    width: 18px;
    height: 2px;
  }
}

/* Portrait Orientation Optimizations */
@media (max-width: 767px) and (orientation: portrait) {
  .mobile-nav-content {
    padding: 3rem 2rem;
    gap: 0.5rem;
  }

  .mobile-nav-link {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .mobile-cta-button {
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Safe Area Insets for Notched Devices */
@supports (padding: max(0px)) {
  .header-container {
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
  }

  .mobile-navigation {
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
    padding-bottom: env(safe-area-inset-bottom);
  }
}

/* Prevent Text Selection on Interactive Elements */
.mobile-menu-toggle,
.nav-link,
.cta-button,
.mobile-nav-link,
.mobile-cta-button {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

/* Smooth Scrolling for Mobile Navigation */
.mobile-navigation {
  scroll-behavior: smooth;
}

/* Prevent Body Scroll When Mobile Menu is Open */
body.mobile-menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

/* Loading State for Header */
.header.loading {
  pointer-events: none;
  opacity: 0.7;
}

/* Sticky Header Enhancement */
.header {
  will-change: transform, background-color;
}

/* GPU Acceleration for Smooth Animations */
.mobile-navigation,
.mobile-menu-toggle,
.nav-link::before,
.nav-link::after,
.mobile-nav-link {
  will-change: transform;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

/* Premium Mobile Menu Enhancements */
.mobile-nav-link:focus-visible {
  outline: none;
  background: rgba(218, 165, 32, 0.15);
  border-color: rgba(218, 165, 32, 0.4);
  box-shadow: 
    0 0 0 3px rgba(218, 165, 32, 0.2),
    0 8px 24px rgba(218, 165, 32, 0.2);
}

.mobile-cta-button:focus-visible {
  outline: none;
  box-shadow: 
    0 0 0 3px rgba(218, 165, 32, 0.3),
    0 12px 40px rgba(218, 165, 32, 0.5);
}

/* Smooth fade-out animation when closing */
.mobile-navigation:not(.active) .mobile-nav-link,
.mobile-navigation:not(.active) .mobile-cta-button {
  animation: fadeOut 0.3s ease-out forwards;
}

@keyframes fadeOut {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(-20px);
  }
}

/* Reset animations when menu opens */
.mobile-navigation.active .mobile-nav-link {
  animation: slideInLeft 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.mobile-navigation.active .mobile-cta-button {
  animation: slideInUp 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
}

/* Add subtle pulse to CTA button */
@keyframes ctaPulse {
  0%, 100% {
    box-shadow: 
      0 8px 24px rgba(218, 165, 32, 0.4),
      0 4px 8px rgba(0, 0, 0, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }
  50% {
    box-shadow: 
      0 10px 30px rgba(218, 165, 32, 0.5),
      0 5px 10px rgba(0, 0, 0, 0.25),
      inset 0 1px 0 rgba(255, 255, 255, 0.35);
  }
}

.mobile-navigation.active .mobile-cta-button {
  animation: 
    slideInUp 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards,
    ctaPulse 3s ease-in-out 1.5s infinite;
}

/* Hover state improvements for touch devices */
@media (hover: hover) {
  .mobile-nav-link:hover {
    background: rgba(218, 165, 32, 0.12);
  }
  
  .mobile-cta-button:hover {
    animation: none;
  }
}

/* Active state for better touch feedback */
.mobile-nav-link:active {
  background: rgba(218, 165, 32, 0.2);
  border-color: rgba(218, 165, 32, 0.5);
}

/* Improve scrollbar styling for mobile menu */
.mobile-navigation::-webkit-scrollbar {
  width: 6px;
}

.mobile-navigation::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
}

.mobile-navigation::-webkit-scrollbar-thumb {
  background: rgba(218, 165, 32, 0.3);
  border-radius: 3px;
}

.mobile-navigation::-webkit-scrollbar-thumb:hover {
  background: rgba(218, 165, 32, 0.5);
}


/* ===== CORE VALUE PROPOSITION SECTION ===== */
.value-proposition {
  background-color: #FFFFFF;
  padding: 6rem 0;
  position: relative;
}

.value-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
  text-align: center;
}

.value-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--deep-green-text);
  margin-bottom: 2rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.value-intro {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.6;
  color: #6c757d;
  max-width: 900px;
  margin: 0 auto 5rem auto;
  text-align: center;
}

/* Three Pillars Grid */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 4rem;
  margin-top: 4rem;
}

.pillar {
  text-align: center;
  padding: 2rem;
  border-radius: 16px;
  background: linear-gradient(135deg, #FFFFFF 0%, #FDFDF5 100%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(218, 165, 32, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.pillar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--muted-gold), var(--gold-accent));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.pillar:hover::before {
  transform: scaleX(1);
}

.pillar:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(218, 165, 32, 0.2);
}

.pillar-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--muted-gold), var(--gold-accent));
  border-radius: 20px;
  color: var(--deep-green-text);
  box-shadow: 0 4px 16px rgba(218, 165, 32, 0.3);
  transition: all 0.3s ease;
}

.pillar:hover .pillar-icon {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(218, 165, 32, 0.4);
}

.pillar-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--deep-green-text);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.pillar-text {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #6c757d;
}

/* Responsive Design for Value Proposition */
@media (max-width: 1024px) {
  .value-container {
    padding: 0 2rem;
  }
  
  .value-headline {
    font-size: 3rem;
  }
  
  .value-intro {
    font-size: 1.2rem;
  }
  
  .pillars-grid {
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .value-proposition {
    padding: 4rem 0;
  }
  
  .value-container {
    padding: 0 1.5rem;
  }
  
  .value-headline {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
  
  .value-intro {
    font-size: 1.1rem;
    margin-bottom: 3rem;
  }
  
  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .pillar {
    padding: 1.5rem;
  }
  
  .pillar-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
  }
  
  .pillar-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
  
  .pillar-text {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  
  .value-headline {
    font-size: 2rem;
  }
  
  .value-intro {
    font-size: 1rem;
  }
  
  .pillar {
    padding: 1rem;
  }
  
  .pillar-icon {
    width: 56px;
    height: 56px;
  }
  
  .pillar-title {
    font-size: 1.2rem;
  }
}

/* Animation for sections coming into view */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.value-proposition {
  animation: fadeInUp 0.8s ease-out;
  animation: fadeInUp 0.8s ease-out;
}

/* Premium loading states */
.pillar {
  animation: fadeInUp 0.6s ease-out;
}

.pillar:nth-child(1) { animation-delay: 0.1s; }
.pillar:nth-child(2) { animation-delay: 0.2s; }
.pillar:nth-child(3) { animation-delay: 0.3s; }

/* ===== PREMIUM SPLIT-SCROLL TRANSFORMATION SECTION ===== */
.split-scroll-section {
  position: relative;
  height: 400vh; /* 4x viewport height for scroll progression */
  overflow: hidden;
  background: linear-gradient(45deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
}

.split-container {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  width: 100%;
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.3);
}

/* Left Pane (BEFORE) - Enhanced with Premium Effects */
.left-pane {
  width: 50%;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #222222 100%);
  position: relative;
  overflow: hidden;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.left-pane::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(139, 69, 19, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(105, 105, 105, 0.1) 0%, transparent 50%),
    linear-gradient(45deg, transparent 0%, rgba(34, 34, 34, 0.3) 50%, transparent 100%);
  animation: backgroundShift 8s ease-in-out infinite;
  z-index: 1;
}

.left-pane::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    conic-gradient(from 0deg at 50% 50%, 
      transparent 0deg, 
      rgba(139, 69, 19, 0.05) 90deg, 
      transparent 180deg, 
      rgba(105, 105, 105, 0.05) 270deg, 
      transparent 360deg);
  animation: rotateBackground 20s linear infinite;
  z-index: 0;
}

/* Right Pane (AFTER) - Enhanced with Premium Effects */
.right-pane {
  width: 50%;
  background: linear-gradient(135deg, #ffffff 0%, #fdfdf5 50%, #f8f8f8 100%);
  position: relative;
  overflow: hidden;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.right-pane::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 20%, rgba(218, 165, 32, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(255, 215, 0, 0.06) 0%, transparent 50%),
    linear-gradient(135deg, transparent 0%, rgba(253, 253, 245, 0.5) 50%, transparent 100%);
  animation: backgroundShiftLight 10s ease-in-out infinite;
  z-index: 1;
}

.right-pane::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    conic-gradient(from 180deg at 50% 50%, 
      transparent 0deg, 
      rgba(218, 165, 32, 0.03) 90deg, 
      transparent 180deg, 
      rgba(255, 215, 0, 0.03) 270deg, 
      transparent 360deg);
  animation: rotateBackgroundReverse 25s linear infinite;
  z-index: 0;
}

/* Premium Center Divider with Enhanced Effects */
.center-divider {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(218, 165, 32, 0.3) 10%,
    #DAA520 20%,
    #FFD700 50%,
    #DAA520 80%,
    rgba(218, 165, 32, 0.3) 90%,
    transparent 100%
  );
  transform: translateX(-50%);
  z-index: 15;
  box-shadow: 
    0 0 30px rgba(218, 165, 32, 0.6),
    0 0 60px rgba(218, 165, 32, 0.4),
    0 0 100px rgba(218, 165, 32, 0.2);
  animation: dividerPulse 3s ease-in-out infinite;
}

.center-divider::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 20px;
  height: 100%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(218, 165, 32, 0.1) 20%,
    rgba(218, 165, 32, 0.2) 50%,
    rgba(218, 165, 32, 0.1) 80%,
    transparent 100%
  );
  transform: translateX(-50%);
  filter: blur(10px);
  z-index: -1;
}

.center-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  background: radial-gradient(circle, #FFD700 0%, #DAA520 70%, transparent 100%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 
    0 0 20px rgba(255, 215, 0, 0.8),
    0 0 40px rgba(218, 165, 32, 0.6);
  animation: centerGlow 2s ease-in-out infinite alternate;
}

/* Premium Split Content Container */
.split-content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem;
  z-index: 5;
}

/* Enhanced Split Blocks with Premium Transitions */
.split-block {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  text-align: center;
  width: 100%;
  max-width: 450px;
  opacity: 0;
  transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
}

.split-block.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.left-pane .split-block {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.right-pane .split-block {
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(218, 165, 32, 0.2);
  box-shadow: 
    0 8px 32px rgba(218, 165, 32, 0.1),
    inset 0 1px 0 rgba(218, 165, 32, 0.1);
}

/* Premium Headlines with Enhanced Typography */
.split-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  position: relative;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.left-pane .split-headline {
  color: #FFFFFF;
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.right-pane .split-headline {
  color: #222222;
  background: linear-gradient(135deg, #222222 0%, #444444 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.split-headline::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #DAA520, transparent);
  transform: translateX(-50%);
  border-radius: 2px;
  animation: underlineGlow 2s ease-in-out infinite alternate;
}

/* Enhanced Sub-text */
.split-subtext {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  opacity: 0.9;
  margin-bottom: 3rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.left-pane .split-subtext {
  color: rgba(255, 255, 255, 0.8);
}

.right-pane .split-subtext {
  color: rgba(34, 34, 34, 0.8);
}

/* Premium Content Text */
.split-text {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6;
  margin-top: 3rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.left-pane .split-text {
  color: rgba(255, 255, 255, 0.95);
}

.right-pane .split-text {
  color: rgba(34, 34, 34, 0.9);
}

/* Enhanced Visual Elements Container */
.split-visual {
  width: 140px;
  height: 140px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(218, 165, 32, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: visualPulse 4s ease-in-out infinite;
}

/* Premium Smokestack Animations */
.smokestack {
  position: relative;
  width: 70px;
  height: 90px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.stack-base {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #666, #444, #333);
  border-radius: 10px 10px 6px 6px;
  position: relative;
  box-shadow: 
    inset 0 2px 4px rgba(255, 255, 255, 0.1),
    0 4px 8px rgba(0, 0, 0, 0.3);
}

.stack-base::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 12px;
  right: 12px;
  height: 24px;
  background: linear-gradient(135deg, #777, #555, #444);
  border-radius: 6px 6px 0 0;
  box-shadow: 
    inset 0 1px 2px rgba(255, 255, 255, 0.1),
    0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Enhanced Smoke Plumes (BEFORE) */
.smoke-plumes {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 70px;
}

.smoke-plume {
  position: absolute;
  width: 14px;
  height: 14px;
  background: radial-gradient(circle, #333 0%, #222 70%, transparent 100%);
  border-radius: 50%;
  animation: smokeRise 2.5s ease-in-out infinite;
  filter: blur(1px);
}

.smoke-plume:nth-child(1) {
  left: 6px;
  animation-delay: 0s;
}

.smoke-plume:nth-child(2) {
  left: 18px;
  animation-delay: 0.4s;
}

.smoke-plume:nth-child(3) {
  left: 30px;
  animation-delay: 0.8s;
}

@keyframes smokeRise {
  0% {
    transform: translateY(0) scale(0.7);
    opacity: 0.9;
  }
  30% {
    transform: translateY(-15px) scale(0.9);
    opacity: 0.8;
  }
  70% {
    transform: translateY(-35px) scale(1.2);
    opacity: 0.4;
  }
  100% {
    transform: translateY(-50px) scale(1.5);
    opacity: 0;
  }
}

/* Premium Heat Waves (AFTER) */
.heat-waves {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 70px;
}

.heat-wave {
  position: absolute;
  width: 10px;
  height: 25px;
  background: linear-gradient(180deg, transparent, rgba(218, 165, 32, 0.8), rgba(255, 215, 0, 0.6), transparent);
  border-radius: 50%;
  animation: heatShimmer 1.8s ease-in-out infinite;
  filter: blur(0.5px);
}

.heat-wave:nth-child(1) {
  left: 10px;
  animation-delay: 0s;
}

.heat-wave:nth-child(2) {
  left: 20px;
  animation-delay: 0.3s;
}

.heat-wave:nth-child(3) {
  left: 30px;
  animation-delay: 0.6s;
}

@keyframes heatShimmer {
  0%, 100% {
    transform: translateY(0) scaleX(1) scaleY(1);
    opacity: 0.7;
  }
  25% {
    transform: translateY(-8px) scaleX(0.9) scaleY(1.1);
    opacity: 0.9;
  }
  50% {
    transform: translateY(-18px) scaleX(0.8) scaleY(1.2);
    opacity: 1;
  }
  75% {
    transform: translateY(-12px) scaleX(0.9) scaleY(1.1);
    opacity: 0.8;
  }
}

/* Premium Fuel Gauge Animations */
.fuel-gauge {
  position: relative;
  width: 110px;
  height: 110px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.gauge-circle {
  width: 110px;
  height: 110px;
  border: 5px solid #666;
  border-radius: 50%;
  position: relative;
  background: 
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
    linear-gradient(135deg, #f0f0f0, #e0e0e0, #d0d0d0);
  box-shadow: 
    inset 0 4px 8px rgba(0, 0, 0, 0.1),
    0 4px 12px rgba(0, 0, 0, 0.2);
}

.gauge-needle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3px;
  height: 40px;
  background: linear-gradient(180deg, #333, #666);
  transform-origin: bottom center;
  border-radius: 2px;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.fuel-gauge.low .gauge-needle {
  transform: translate(-50%, -100%) rotate(-70deg);
}

.fuel-gauge.high .gauge-needle {
  transform: translate(-50%, -100%) rotate(70deg);
}

.gauge-center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  background: radial-gradient(circle, #444, #222);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 
    0 2px 4px rgba(0, 0, 0, 0.3),
    inset 0 1px 2px rgba(255, 255, 255, 0.2);
}

/* Enhanced Fuel Leak Animation */
.fuel-leak {
  position: absolute;
  bottom: -15px;
  left: 25px;
  width: 5px;
  height: 25px;
  background: linear-gradient(180deg, rgba(51, 51, 51, 0.8), transparent);
  border-radius: 3px;
  animation: fuelDrip 2.5s ease-in-out infinite;
}

@keyframes fuelDrip {
  0%, 75% {
    opacity: 0;
    transform: scaleY(0);
  }
  85% {
    opacity: 1;
    transform: scaleY(1);
  }
  100% {
    opacity: 0;
    transform: scaleY(1) translateY(15px);
  }
}

/* Premium Gear Animations */
.gear {
  position: relative;
  width: 90px;
  height: 90px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.gear-teeth {
  width: 90px;
  height: 90px;
  background: #666;
  border-radius: 50%;
  position: relative;
  animation: gearRotate 4s linear infinite;
  box-shadow: 
    inset 0 4px 8px rgba(0, 0, 0, 0.2),
    0 4px 12px rgba(0, 0, 0, 0.3);
}

.gear.rusty .gear-teeth {
  background: linear-gradient(135deg, #8B4513, #A0522D, #654321);
  animation: gearStruggle 3s ease-in-out infinite;
  box-shadow: 
    inset 0 4px 8px rgba(0, 0, 0, 0.3),
    0 4px 12px rgba(139, 69, 19, 0.3);
}

.gear.pristine .gear-teeth {
  background: linear-gradient(135deg, #DAA520, #FFD700, #FFA500);
  animation: gearRotate 2.5s linear infinite;
  box-shadow: 
    0 0 20px rgba(218, 165, 32, 0.4),
    inset 0 2px 4px rgba(255, 255, 255, 0.2),
    0 4px 12px rgba(218, 165, 32, 0.2);
}

.gear-teeth::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: radial-gradient(circle at center, transparent 55%, currentColor 55%, currentColor 65%, transparent 65%);
  border-radius: 50%;
}

.gear-center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  background: radial-gradient(circle, #333, #111);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 
    inset 0 2px 4px rgba(0, 0, 0, 0.5),
    0 2px 4px rgba(0, 0, 0, 0.3);
}

@keyframes gearRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes gearStruggle {
  0%, 100% {
    transform: rotate(0deg);
  }
  20% {
    transform: rotate(8deg);
  }
  40% {
    transform: rotate(-5deg);
  }
  60% {
    transform: rotate(12deg);
  }
  80% {
    transform: rotate(-8deg);
  }
}

/* Enhanced Corrosion Particles */
.corrosion-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: radial-gradient(circle, #8B4513, #654321);
  border-radius: 50%;
  animation: particleFall 4s ease-in-out infinite;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.particle:nth-child(1) {
  top: 25px;
  left: 35px;
  animation-delay: 0s;
}

.particle:nth-child(2) {
  top: 45px;
  left: 55px;
  animation-delay: 1.5s;
}

.particle:nth-child(3) {
  top: 65px;
  left: 25px;
  animation-delay: 3s;
}

@keyframes particleFall {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0.5);
  }
  20% {
    opacity: 1;
    transform: translateY(5px) scale(1);
  }
  80% {
    opacity: 0.8;
    transform: translateY(20px) scale(0.8);
  }
  100% {
    opacity: 0;
    transform: translateY(30px) scale(0.3);
  }
}

/* Premium Animation Keyframes */
@keyframes backgroundShift {
  0%, 100% {
    opacity: 0.8;
    transform: translateX(0) translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateX(10px) translateY(-5px);
  }
}

@keyframes backgroundShiftLight {
  0%, 100% {
    opacity: 0.6;
    transform: translateX(0) translateY(0);
  }
  50% {
    opacity: 0.9;
    transform: translateX(-8px) translateY(8px);
  }
}

@keyframes rotateBackground {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes rotateBackgroundReverse {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

@keyframes dividerPulse {
  0%, 100% {
    box-shadow: 
      0 0 30px rgba(218, 165, 32, 0.6),
      0 0 60px rgba(218, 165, 32, 0.4),
      0 0 100px rgba(218, 165, 32, 0.2);
  }
  50% {
    box-shadow: 
      0 0 40px rgba(218, 165, 32, 0.8),
      0 0 80px rgba(218, 165, 32, 0.6),
      0 0 120px rgba(218, 165, 32, 0.3);
  }
}

@keyframes centerGlow {
  0% {
    box-shadow: 
      0 0 20px rgba(255, 215, 0, 0.8),
      0 0 40px rgba(218, 165, 32, 0.6);
  }
  100% {
    box-shadow: 
      0 0 30px rgba(255, 215, 0, 1),
      0 0 60px rgba(218, 165, 32, 0.8);
  }
}

@keyframes underlineGlow {
  0% {
    opacity: 0.6;
    transform: translateX(-50%) scaleX(0.8);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) scaleX(1.2);
  }
}

@keyframes visualPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

/* Final Transition Animation - Enhanced */
.split-scroll-section.final-transition .right-pane {
  transform: translateX(-100%);
  box-shadow: 
    -20px 0 60px rgba(218, 165, 32, 0.3),
    -40px 0 100px rgba(218, 165, 32, 0.2);
}

.split-scroll-section.final-transition .center-divider {
  opacity: 0;
  transform: translateX(-50%) scaleY(0);
}

/* Responsive Design for Split-Scroll - Enhanced */
@media (max-width: 1024px) {
  .split-content {
    padding: 3rem 2rem;
  }
  
  .split-headline {
    font-size: 3.5rem;
  }
  
  .split-text {
    font-size: 1.3rem;
  }
  
  .split-visual {
    width: 120px;
    height: 120px;
  }
  
  .fuel-gauge,
  .gear {
    width: 90px;
    height: 90px;
  }
  
  .gear-teeth {
    width: 90px;
    height: 90px;
  }
}

@media (max-width: 768px) {
  .split-scroll-section {
    height: 300vh; /* Reduced height for mobile */
  }
  
  .split-content {
    padding: 2rem 1.5rem;
  }
  
  .split-headline {
    font-size: 3rem;
  }
  
  .split-subtext {
    font-size: 1.1rem;
  }
  
  .split-text {
    font-size: 1.2rem;
  }
  
  .split-visual {
    width: 100px;
    height: 100px;
  }
  
  .fuel-gauge,
  .gear {
    width: 70px;
    height: 70px;
  }
  
  .gear-teeth {
    width: 70px;
    height: 70px;
  }
  
  .smokestack {
    width: 60px;
    height: 80px;
  }
}

@media (max-width: 480px) {
  .split-container {
    flex-direction: column;
  }
  
  .left-pane,
  .right-pane {
    width: 100%;
    height: 50%;
  }
  
  .center-divider {
    top: 50%;
    left: 0;
    width: 100%;
    height: 4px;
    transform: translateY(-50%);
    background: linear-gradient(
      90deg,
      transparent 0%,
      rgba(218, 165, 32, 0.3) 10%,
      #DAA520 20%,
      #FFD700 50%,
      #DAA520 80%,
      rgba(218, 165, 32, 0.3) 90%,
      transparent 100%
    );
  }
  
  .split-content {
    padding: 1.5rem 1rem;
  }
  
  .split-headline {
    font-size: 2.5rem;
  }
  
  .split-text {
    font-size: 1.1rem;
  }
  
  .split-visual {
    width: 80px;
    height: 80px;
  }
}

/* Accessibility and Performance - Enhanced */
@media (prefers-reduced-motion: reduce) {
  .smoke-plume,
  .heat-wave,
  .fuel-leak,
  .gear-teeth,
  .particle,
  .left-pane::before,
  .left-pane::after,
  .right-pane::before,
  .right-pane::after,
  .center-divider,
  .split-visual {
    animation: none !important;
  }
  
  .split-block {
    transition-duration: 0.01ms !important;
  }
  
  .right-pane {
    transition-duration: 0.01ms !important;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .left-pane {
    background: #000000;
  }
  
  .right-pane {
    background: #ffffff;
  }
  
  .center-divider {
    background: #DAA520;
    box-shadow: none;
  }
  
  .split-block {
    border: 2px solid currentColor;
  }
}/* ===
== ADDITIONAL PREMIUM ANIMATIONS FOR SPLIT-SCROLL ===== */

/* Block entrance animations */
@keyframes blockEntrance {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8) rotateY(15deg);
        filter: blur(5px);
    }
    60% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.05) rotateY(-2deg);
        filter: blur(1px);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1) rotateY(0deg);
        filter: blur(0px);
    }
}

@keyframes visualEntrance {
    0% {
        opacity: 0;
        transform: scale(0.5) rotate(-10deg);
        filter: brightness(0.5);
    }
    60% {
        opacity: 0.8;
        transform: scale(1.1) rotate(5deg);
        filter: brightness(1.2);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
        filter: brightness(1);
    }
}

@keyframes needleSwing {
    0% {
        transform: translate(-50%, -100%) rotate(-90deg);
    }
    70% {
        transform: translate(-50%, -100%) rotate(75deg);
    }
    100% {
        transform: translate(-50%, -100%) rotate(70deg);
    }
}

/* Premium floating elements for ambiance */
.split-scroll-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(218, 165, 32, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 50% 10%, rgba(139, 69, 19, 0.02) 0%, transparent 50%);
    animation: ambientGlow 15s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes ambientGlow {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1) rotate(0deg);
    }
    33% {
        opacity: 0.8;
        transform: scale(1.1) rotate(1deg);
    }
    66% {
        opacity: 0.6;
        transform: scale(0.9) rotate(-1deg);
    }
}

/* Enhanced hover effects for split blocks */
.split-block:hover {
    transform: translate(-50%, -50%) scale(1.02) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.left-pane .split-block:hover {
    box-shadow: 
        0 12px 48px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 0 30px rgba(255, 255, 255, 0.1);
}

.right-pane .split-block:hover {
    box-shadow: 
        0 12px 48px rgba(218, 165, 32, 0.2),
        inset 0 1px 0 rgba(218, 165, 32, 0.3),
        0 0 30px rgba(218, 165, 32, 0.15);
}

/* Premium text selection effects */
.split-text::selection {
    background: rgba(218, 165, 32, 0.3);
    color: inherit;
}

.split-headline::selection {
    background: rgba(218, 165, 32, 0.4);
    color: inherit;
}

/* Enhanced visual element interactions */
.split-visual:hover {
    transform: scale(1.05);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.split-visual:hover .smokestack {
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4));
}

.split-visual:hover .fuel-gauge {
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.3));
}

.split-visual:hover .gear {
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.3));
}

/* Premium loading states */
.split-block.loading {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(0.95);
    filter: blur(2px);
}

.split-block.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(218, 165, 32, 0.1), transparent);
    animation: loadingShimmer 1.5s ease-in-out infinite;
}

@keyframes loadingShimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Enhanced center divider with particle effects */
.center-divider::before {
    animation: dividerParticles 4s linear infinite;
}

@keyframes dividerParticles {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 0% 100%;
    }
}

/* Premium focus states for accessibility */
.split-block:focus-within {
    outline: 2px solid rgba(218, 165, 32, 0.6);
    outline-offset: 4px;
    border-radius: 24px;
}

/* Enhanced mobile interactions */
@media (hover: none) and (pointer: coarse) {
    .split-block:active {
        transform: translate(-50%, -50%) scale(0.98) !important;
        transition: transform 0.1s ease;
    }
    
    .split-visual:active {
        transform: scale(0.95);
        transition: transform 0.1s ease;
    }
}

/* Premium dark mode support */
@media (prefers-color-scheme: dark) {
    .right-pane {
        background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 50%, #fdfdf5 100%);
    }
    
    .right-pane .split-block {
        background: rgba(0, 0, 0, 0.05);
        border-color: rgba(218, 165, 32, 0.3);
    }
}

/* High performance mode for lower-end devices */
@media (max-resolution: 1dppx) {
    .left-pane::before,
    .left-pane::after,
    .right-pane::before,
    .right-pane::after,
    .split-scroll-section::before {
        display: none;
    }
    
    .center-divider {
        background: #DAA520;
        box-shadow: 0 0 20px rgba(218, 165, 32, 0.4);
    }
}

/* Enhanced print styles */
@media print {
    .split-scroll-section {
        height: auto !important;
        background: white !important;
    }
    
    .split-container {
        position: static !important;
        display: block !important;
    }
    
    .left-pane,
    .right-pane {
        width: 100% !important;
        height: auto !important;
        background: white !important;
        page-break-inside: avoid;
    }
    
    .center-divider {
        display: none !important;
    }
    
    .split-block {
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        margin-bottom: 2rem;
    }
}

/* Premium scroll indicators */
.split-scroll-section .scroll-progress {
    position: fixed;
    top: 50%;
    right: 2rem;
    width: 4px;
    height: 100px;
    background: rgba(218, 165, 32, 0.2);
    border-radius: 2px;
    z-index: 20;
    transform: translateY(-50%);
}

.split-scroll-section .scroll-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--scroll-progress, 0%);
    background: linear-gradient(180deg, #DAA520, #FFD700);
    border-radius: 2px;
    transition: height 0.1s ease;
}

/* Micro-interactions for premium feel */
.split-headline {
    cursor: default;
    user-select: none;
}

.split-headline:hover {
    text-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
    transition: text-shadow 0.3s ease;
}

.split-text {
    cursor: text;
}

.split-visual {
    cursor: pointer;
}

/* Enhanced accessibility for screen readers */
.split-block[aria-hidden="true"] {
    opacity: 0;
    pointer-events: none;
}

.split-block[aria-current="true"] {
    opacity: 1;
    pointer-events: auto;
}

/* Premium loading animation for the entire section */
.split-scroll-section.loading {
    opacity: 0;
    animation: sectionFadeIn 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes sectionFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}