/* ==========================================================================
   VIDAAFIT - Global Design System & Custom Stylesheet
   Brand: VIDAAFIT ("Nutrition First. Taste Always.")
   Standards: UI/UX Pro Max & Modern Frontend Design Guidelines
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Custom Properties (Design Tokens)
   -------------------------------------------------------------------------- */
:root {
  /* Brand Primary: Deep Natural Forest Green */
  --vidaa-green-950: #0B1C13;
  --vidaa-green-900: #10291C;
  --vidaa-green-850: #143524;
  --vidaa-green-800: #19422E;
  --vidaa-green-700: #22563D;
  --vidaa-green-600: #2C6E4E;
  
  /* Brand Secondary: Warm Leafy Olive Green (Matches Logo) */
  --vidaa-leaf-700: #4B5F26;
  --vidaa-leaf-600: #5C7430;
  --vidaa-leaf-500: #6B8339;
  --vidaa-leaf-400: #859F4F;
  --vidaa-leaf-200: #D5E4BC;
  --vidaa-leaf-100: #EDF3E3;
  --vidaa-leaf-50:  #F7FAF1;

  /* Brand Accent: Warm Nutrition Orange */
  --vidaa-orange-700: #B83E0C;
  --vidaa-orange-600: #D04B14;
  --vidaa-orange-500: #E86024;
  --vidaa-orange-400: #F37D48;
  --vidaa-orange-100: #FDEFE8;
  --vidaa-orange-50:  #FFF8F5;

  /* Backgrounds: Warm Soft Cream & Natural Beiges */
  --vidaa-cream-50:  #F4EEE5;
  --vidaa-cream-100: #ECE3D5;
  --vidaa-cream-200: #DFD5C3;
  --vidaa-cream-300: #DFD5C3;

  /* Typography Colors */
  --vidaa-text-primary: #122018;
  --vidaa-text-secondary: #4A5B51;
  --vidaa-text-muted: #6B7D73;

  /* Typography Families */
  --font-serif: 'Fraunces', 'DM Serif Display', Georgia, serif;
  --font-sans: '"Plus Jakarta Sans"', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Easings & Motion Tokens */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

/* --------------------------------------------------------------------------
   Base HTML & Reset
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-sans);
  background-color: var(--vidaa-cream-50);
  color: var(--vidaa-text-primary);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  width: 100%;
  min-height: 100vh;
  position: relative;
  background-color: var(--vidaa-cream-50);
  color: var(--vidaa-text-primary);
}

/* Custom Sleek Scrollbar */
::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}

::-webkit-scrollbar-track {
  background: var(--vidaa-cream-50);
}

::-webkit-scrollbar-thumb {
  background: rgba(107, 131, 57, 0.35);
  border-radius: 9999px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--vidaa-leaf-500);
}

/* --------------------------------------------------------------------------
   Accessibility: Skip to Main Content (WCAG 2.2 AA)
   -------------------------------------------------------------------------- */
.skip-to-content {
  position: absolute;
  top: -100px;
  left: 1.5rem;
  z-index: 1000;
  padding: 0.75rem 1.5rem;
  background-color: var(--vidaa-green-900);
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 9999px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: top 0.2s var(--ease-out-expo);
  text-decoration: none;
}

.skip-to-content:focus {
  top: 1.5rem;
  outline: 2px solid var(--vidaa-orange-500);
  outline-offset: 2px;
}

/* --------------------------------------------------------------------------
   Typography Utility Classes
   -------------------------------------------------------------------------- */
.font-editorial {
  font-family: var(--font-serif);
  font-feature-settings: "liga" 1, "calt" 1;
  text-rendering: optimizeLegibility;
}

.font-body {
  font-family: var(--font-sans);
}

.eyebrow-badge {
  font-family: var(--font-sans);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
}

.balance-text {
  text-wrap: balance;
}

/* Ensure clean descender clearance for editorial serif headlines */
.gsap-headline-line {
  padding-bottom: 0.08em;
  overflow: visible;
}

/* Disabled artificial underline bar to prevent descender collision on letters like 'y', 'g', 'p' */
.headline-underline {
  display: none !important;
}

/* --------------------------------------------------------------------------
   Tactile Organic Grain Texture Overlay
   -------------------------------------------------------------------------- */
.grain-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 999;
  opacity: 0.022;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* --------------------------------------------------------------------------
   Navbar Styles & Dynamic Scroll Transitions
   -------------------------------------------------------------------------- */
#main-navbar {
  background-color: rgba(244, 238, 229, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(16, 41, 28, 0.06);
  transition: background-color 0.45s var(--ease-out-expo),
              backdrop-filter 0.45s var(--ease-out-expo),
              border-color 0.45s var(--ease-out-expo),
              box-shadow 0.45s var(--ease-out-expo),
              padding 0.45s var(--ease-out-expo);
}

#main-navbar.scrolled {
  background-color: rgba(244, 238, 229, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(16, 41, 28, 0.09);
  box-shadow: 0 4px 24px -2px rgba(16, 41, 28, 0.06);
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}

/* Brand Logo Smooth Sizing Transition */
.navbar-brand-logo {
  transition: height 0.35s var(--ease-out-expo), transform 0.3s ease;
}

#main-navbar.scrolled .navbar-brand-logo {
  height: 3.5rem; /* ~56px when scrolled */
}

/* Desktop Nav Link Hover Indicator */
.nav-link-item {
  position: relative;
  transition: color 0.25s var(--ease-out-expo);
}

.nav-link-item::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--vidaa-leaf-500), var(--vidaa-orange-500));
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width 0.3s var(--ease-out-expo);
}

.nav-link-item:hover::after,
.nav-link-item.active::after {
  width: 100%;
}

/* --------------------------------------------------------------------------
   Buttons & Micro-Interactions (FMCG Luxury Standard)
   -------------------------------------------------------------------------- */
.btn-primary-orange {
  background: linear-gradient(135deg, var(--vidaa-orange-500) 0%, var(--vidaa-orange-600) 100%);
  color: #FFFFFF;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all 0.35s var(--ease-out-expo);
  box-shadow: 0 4px 14px -2px rgba(232, 96, 36, 0.35);
  position: relative;
  overflow: hidden;
}

.btn-primary-orange:hover {
  background: linear-gradient(135deg, var(--vidaa-orange-400) 0%, var(--vidaa-orange-500) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -4px rgba(232, 96, 36, 0.45);
}

.btn-primary-orange:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 2px 8px -2px rgba(232, 96, 36, 0.3);
}

.btn-secondary-outline {
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--vidaa-green-900);
  border: 1.5px solid rgba(16, 41, 28, 0.16);
  font-weight: 600;
  transition: all 0.35s var(--ease-out-expo);
}

.btn-secondary-outline:hover {
  background-color: #FFFFFF;
  border-color: var(--vidaa-green-800);
  color: var(--vidaa-green-900);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px -4px rgba(16, 41, 28, 0.08);
}

.btn-secondary-outline:active {
  transform: translateY(0) scale(0.98);
}

/* --------------------------------------------------------------------------
   Hero Scrim & Gradient Overlays
   Ensures WCAG AAA 7:1+ contrast on headline over lifestyle photography
   -------------------------------------------------------------------------- */
.hero-gradient-scrim {
  background: linear-gradient(
    90deg,
    rgba(244, 238, 229, 0.98) 0%,
    rgba(244, 238, 229, 0.95) 34%,
    rgba(244, 238, 229, 0.78) 48%,
    rgba(244, 238, 229, 0.30) 62%,
    rgba(244, 238, 229, 0.05) 75%,
    transparent 100%
  );
}

/* Mobile & Tablet Scrim */
@media (max-width: 1023px) {
  .hero-gradient-scrim {
    background: linear-gradient(
      180deg,
      rgba(244, 238, 229, 0.98) 0%,
      rgba(244, 238, 229, 0.94) 55%,
      rgba(244, 238, 229, 0.55) 80%,
      rgba(244, 238, 229, 0.15) 100%
    );
  }
}

/* Disabled ambient wash to preserve clear photography */
.ambient-glow {
  display: none !important;
}

/* --------------------------------------------------------------------------
   Hero Micro-Details: Scroll Indicator
   -------------------------------------------------------------------------- */
.scroll-indicator-dot {
  animation: scrollBounce 2.2s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

@keyframes scrollBounce {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.9;
  }
  50% {
    transform: translateY(8px);
    opacity: 0.25;
  }
}

/* --------------------------------------------------------------------------
   Mobile Drawer Animations & Styles
   -------------------------------------------------------------------------- */
#mobile-menu-drawer {
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.45s ease;
}

#mobile-menu-drawer.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

#mobile-menu-drawer.is-closed {
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Hamburger Icon Transform */
.hamburger-line {
  transition: transform 0.3s var(--ease-out-expo), opacity 0.2s ease, width 0.3s ease;
}

.is-active .hamburger-line-1 {
  transform: translateY(8px) rotate(45deg);
}

.is-active .hamburger-line-2 {
  opacity: 0;
  transform: scaleX(0);
}

.is-active .hamburger-line-3 {
  transform: translateY(-8px) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   Why Vidaafit Section (UI/UX Pro Max Editorial FMCG Styling)
   -------------------------------------------------------------------------- */
.why-feature-card {
  transition: transform 0.5s var(--ease-out-expo),
              box-shadow 0.5s var(--ease-out-expo),
              border-color 0.4s ease;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.why-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  z-index: 5;
  pointer-events: none;
  opacity: 0.6;
  transition: opacity 0.4s ease;
}

.why-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px -12px rgba(11, 28, 19, 0.4),
              0 0 0 1px rgba(255, 255, 255, 0.2);
}

.why-feature-card:hover::before {
  opacity: 1;
}

.why-feature-card img {
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.8s ease;
}

.why-feature-card:hover img {
  transform: scale(1.08);
  filter: brightness(1.04);
}

@media (min-width: 640px) {
  .why-feature-card.sm\:translate-y-6:hover {
    transform: translateY(1rem);
    box-shadow: 0 24px 48px -12px rgba(11, 28, 19, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.2);
  }
}

.why-decorative-stamp {
  transition: transform 0.4s var(--ease-out-expo),
              border-color 0.3s ease,
              box-shadow 0.4s ease;
}

.why-decorative-stamp:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px -8px rgba(16, 41, 28, 0.12);
}

/* --------------------------------------------------------------------------
   Our Story Section (Editorial Storytelling FMCG Styling)
   -------------------------------------------------------------------------- */
.story-highlight-card {
  transition: transform 0.45s var(--ease-out-expo),
              box-shadow 0.45s var(--ease-out-expo),
              border-color 0.3s ease;
}

.story-highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -12px rgba(16, 41, 28, 0.16);
}

.story-principle-chip {
  transition: transform 0.3s var(--ease-out-expo),
              border-color 0.25s ease,
              box-shadow 0.3s ease,
              background-color 0.25s ease;
}

.story-principle-chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px -4px rgba(16, 41, 28, 0.08);
}

/* --------------------------------------------------------------------------
   Vision & Mission Section: Asymmetrical Bento Brand Tapestry Styling
   -------------------------------------------------------------------------- */
.bento-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}

.bento-vision-card,
.bento-family-canvas,
.bento-ingredients-canvas,
.bento-mission-card,
.bento-philosophy-finale {
  width: 100%;
}

.bento-vision-card,
.bento-mission-card,
.bento-philosophy-finale {
  transition: transform 0.5s var(--ease-out-expo),
              box-shadow 0.5s var(--ease-out-expo),
              border-color 0.35s ease;
}

.bento-vision-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 48px -12px rgba(16, 41, 28, 0.12);
}

.bento-family-canvas,
.bento-ingredients-canvas {
  transition: transform 0.5s var(--ease-out-expo);
}

.bento-family-canvas:hover,
.bento-ingredients-canvas:hover {
  transform: translateY(-4px);
}

.bento-mission-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 56px -12px rgba(11, 28, 19, 0.5),
              0 0 0 1px rgba(255, 255, 255, 0.2);
}

.bento-philosophy-finale:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -12px rgba(16, 41, 28, 0.12);
}

/* Mobile & Tablet explicit bounds for Bento canvases */
@media (max-width: 1023px) {
  .bento-family-canvas,
  .bento-ingredients-canvas {
    width: 100% !important;
  }
  .bento-family-canvas > div,
  .bento-ingredients-canvas > div {
    height: 260px !important;
    min-height: 260px !important;
    max-height: 280px !important;
    width: 100% !important;
  }
}

/* Desktop Grid Configuration (min-width: 1024px) */
@media (min-width: 1024px) {
  .bento-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 2rem;
  }
  .bento-vision-card {
    grid-column: span 7 / span 7;
  }
  .bento-family-canvas {
    grid-column: span 5 / span 5;
  }
  .bento-ingredients-canvas {
    grid-column: span 5 / span 5;
    order: 3;
  }
  .bento-mission-card {
    grid-column: span 7 / span 7;
    order: 4;
  }
  .bento-philosophy-finale {
    grid-column: span 12 / span 12;
  }
}

/* --------------------------------------------------------------------------
   Featured Products Section (Exhibition Campaign Product Styling)
   -------------------------------------------------------------------------- */
.product-card {
  transition: transform 0.5s var(--ease-out-expo),
              box-shadow 0.5s var(--ease-out-expo),
              border-color 0.35s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -12px rgba(16, 41, 28, 0.12);
}

/* --------------------------------------------------------------------------
   Ingredient Story Section (Editorial Brand Formulation Styling)
   -------------------------------------------------------------------------- */
.ingredient-principle-item {
  transition: transform 0.35s var(--ease-out-expo),
              box-shadow 0.35s var(--ease-out-expo),
              border-color 0.25s ease,
              background-color 0.25s ease;
}

.ingredient-principle-item:hover {
  transform: translateX(6px);
  box-shadow: 0 10px 24px -4px rgba(16, 41, 28, 0.08);
}

.ingredient-visual-wrap {
  transition: transform 0.6s var(--ease-out-expo);
}

/* --------------------------------------------------------------------------
   Why Healthy Breakfast Section (#healthy-breakfast)
   UI/UX Pro Max Refined Styling
   -------------------------------------------------------------------------- */
.breakfast-stage-card {
  transition: transform 0.5s var(--ease-out-expo),
              box-shadow 0.5s var(--ease-out-expo),
              border-color 0.35s ease,
              background-color 0.35s ease;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.breakfast-stage-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px -12px rgba(16, 41, 28, 0.14),
              0 0 0 1px rgba(107, 131, 57, 0.25);
}

@media (min-width: 1024px) {
  .breakfast-stage-card.lg\:translate-y-2:hover {
    transform: translateY(-0.35rem);
    box-shadow: 0 24px 48px -12px rgba(16, 41, 28, 0.14),
                0 0 0 1px rgba(232, 96, 36, 0.25);
  }
}

.breakfast-timeline-pulse {
  animation: timelineTravel 7s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

@keyframes timelineTravel {
  0% {
    left: 0%;
    opacity: 0;
    transform: translateY(-50%) scale(0.8);
  }
  12% {
    opacity: 1;
    transform: translateY(-50%) scale(1.2);
  }
  88% {
    opacity: 1;
    transform: translateY(-50%) scale(1.2);
  }
  100% {
    left: 100%;
    opacity: 0;
    transform: translateY(-50%) scale(0.8);
  }
}

.breakfast-play-btn {
  transition: transform 0.4s var(--ease-out-expo),
              box-shadow 0.4s var(--ease-out-expo),
              background-color 0.3s ease;
}

.breakfast-play-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 14px 40px -4px rgba(232, 96, 36, 0.65);
}

.breakfast-video-img {
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.8s ease;
}

.breakfast-video-section:hover .breakfast-video-img {
  transform: scale(1.04);
  filter: brightness(1.03);
}

.lifestyle-visual-wrap {
  transition: transform 0.6s var(--ease-out-expo);
}

.lifestyle-visual-wrap:hover {
  transform: translateY(-4px);
}

.lifestyle-img {
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.lifestyle-visual-wrap:hover .lifestyle-img {
  transform: scale(1.04);
}

.recipe-card {
  transition: transform 0.5s var(--ease-out-expo),
              box-shadow 0.5s var(--ease-out-expo),
              border-color 0.35s ease;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.recipe-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px -12px rgba(16, 41, 28, 0.14),
              0 0 0 1px rgba(107, 131, 57, 0.2);
}

.recipe-card img {
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.6s ease;
}

.recipe-card:hover img {
  transform: scale(1.06);
  filter: brightness(1.04);
}

/* --------------------------------------------------------------------------
   Recipes & Ideas Section (#recipes)
   Editorial Showcase & Fine Micro-Interactions
   -------------------------------------------------------------------------- */
.recipe-editorial-card {
  transition: transform 0.6s var(--ease-out-expo),
              box-shadow 0.6s var(--ease-out-expo),
              border-color 0.4s ease;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.recipe-editorial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 56px -12px rgba(16, 41, 28, 0.12),
              0 0 0 1px rgba(107, 131, 57, 0.22);
}

.recipe-editorial-img {
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.8s ease;
}

.recipe-editorial-card:hover .recipe-editorial-img {
  transform: scale(1.04);
  filter: brightness(1.03);
}

.recipe-accent-line {
  transition: transform 0.5s var(--ease-out-expo);
}

.recipes-cta-bar {
  transition: box-shadow 0.4s ease, border-color 0.4s ease;
}

.recipes-cta-bar:hover {
  border-color: rgba(107, 131, 57, 0.25);
  box-shadow: 0 16px 36px -8px rgba(16, 41, 28, 0.08);
}

/* --------------------------------------------------------------------------
   Brand Trust & Testimonials Section (#testimonials)
   Warm Emotional Branding & Visual Atmosphere
   -------------------------------------------------------------------------- */
.trust-editorial-card {
  transition: transform 0.6s var(--ease-out-expo),
              box-shadow 0.6s var(--ease-out-expo),
              border-color 0.4s ease;
  backface-visibility: hidden;
}

.trust-editorial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -10px rgba(16, 41, 28, 0.08);
}

.trust-quote-mark {
  transition: transform 0.8s var(--ease-out-expo), opacity 0.5s ease;
}

.trust-editorial-card:hover .trust-quote-mark {
  transform: scale(1.08) rotate(-4deg);
}

.trust-visual-wrap {
  transition: transform 0.6s var(--ease-out-expo);
}

.trust-visual-wrap:hover {
  transform: translateY(-4px);
}

.trust-lifestyle-img {
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.trust-visual-wrap:hover .trust-lifestyle-img {
  transform: scale(1.04);
}

/* --------------------------------------------------------------------------
   B2B / Distributor Enquiry Section (#business)
   Refined Form Styling & Micro-Interactions
   -------------------------------------------------------------------------- */
.business-form-card {
  transition: transform 0.6s var(--ease-out-expo),
              box-shadow 0.6s var(--ease-out-expo),
              border-color 0.4s ease;
  backface-visibility: hidden;
}

.business-input {
  transition: border-color 0.25s ease,
              box-shadow 0.25s ease,
              background-color 0.25s ease;
}

.business-input:focus {
  background-color: #FFFFFF;
}

.business-submit-btn {
  transition: background-color 0.3s ease,
              box-shadow 0.3s ease,
              transform 0.25s ease;
}

.business-submit-btn:hover {
  transform: translateY(-2px);
}

.business-submit-btn:active {
  transform: translateY(0);
}

/* --------------------------------------------------------------------------
   Contact, Final CTA & Footer Sections (#contact, #footer)
   Refined Layouts & Buttery Smooth Interaction States
   -------------------------------------------------------------------------- */
.contact-form-card {
  transition: transform 0.6s var(--ease-out-expo),
              box-shadow 0.6s var(--ease-out-expo),
              border-color 0.4s ease;
  backface-visibility: hidden;
}

.final-cta-banner {
  background: radial-gradient(circle at 50% 0%, #163625 0%, #10291C 60%, #0B1C13 100%);
}

.footer-link {
  display: inline-block;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-link:hover {
  color: #FFFFFF;
  transform: translateX(3px);
}

/* --------------------------------------------------------------------------
   Accessibility & Reduced Motion
   -------------------------------------------------------------------------- */
:focus-visible {
  outline: 2px solid var(--vidaa-leaf-500);
  outline-offset: 3px;
  border-radius: 6px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .scroll-indicator-dot {
    animation: none;
  }
}
