/* ============================================
   VITAE PET CLINIC - Custom Styles
   Sistema de diseño Warm Minimalism
   Mobile-First Architecture
   ============================================ */

/* ============================================
   1. CSS CUSTOM PROPERTIES (Design Tokens)
   ============================================ */
:root {
  /* Primary Palette - Vibrant Nature */
  --eucalyptus: #358600;
  --eucalyptus-dark: #2a6900;
  --eucalyptus-light: #63C132;
  --cream: #FFFFFF;
  --cream-warm: #E0FCFF;
  --cream-dark: #AAEFDF;
  --anthracite: #2D3436;
  --anthracite-light: #636E72;
  --anthracite-muted: #8B9A9C;

  /* Accent Colors */
  --coral-soft: #ff8e8e;
  --coral-dark: #e85f5f;
  --gold-warm: #63C132;
  --gold-light: #9EE37D;
  --emergency-red: #E74C3C;
  --emergency-red-dark: #C0392B;

  /* Semantic Colors */
  --success: #27AE60;
  --warning: #F39C12;
  --info: var(--eucalyptus);

  /* Typography */
  --font-primary: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Nunito', sans-serif;

  /* Font Weights */
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;

  /* Spacing Scale */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  /* Shadows - Warm tones */
  --shadow-sm: 0 1px 2px rgba(45, 52, 54, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(45, 52, 54, 0.07), 0 2px 4px -1px rgba(45, 52, 54, 0.04);
  --shadow-lg: 0 10px 15px -3px rgba(45, 52, 54, 0.08), 0 4px 6px -2px rgba(45, 52, 54, 0.03);
  --shadow-xl: 0 20px 25px -5px rgba(45, 52, 54, 0.1), 0 10px 10px -5px rgba(45, 52, 54, 0.04);
  --shadow-glow: 0 0 20px rgba(107, 155, 140, 0.3);
  --shadow-emergency: 0 4px 20px rgba(231, 76, 60, 0.35);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;
  --transition-spring: 400ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Z-Index Scale */
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-drawer: 300;
  --z-modal: 400;
  --z-emergency: 500;
  --z-tab-bar: 600;

  /* Layout */
  --header-height: 4rem;
  --tab-bar-height: 4.5rem;
  --container-max: 1280px;
  --container-padding: 1.25rem;
}

/* ============================================
   2. BASE STYLES & RESET
   ============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
  line-height: 1.6;
  color: var(--anthracite);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Prevent body scroll when drawer is open */
body.drawer-open {
  overflow: hidden;
}

/* Mobile padding for Tab Bar */
body {
  padding-bottom: var(--tab-bar-height);
}

@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }
}

/* ============================================
   3. TYPOGRAPHY
   ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  /* Bold headings for contrast */
  line-height: 1.25;
  letter-spacing: -0.025em;
  /* Tighter tracking for headlines */
}

/* Enhancing text selection color */
::selection {
  background: var(--eucalyptus-light);
  color: white;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
}

h4 {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
}

p {
  font-size: 1rem;
  color: var(--anthracite-light);
  max-width: 65ch;
}

.lead {
  font-size: 1.125rem;
  font-weight: var(--fw-medium);
  color: var(--anthracite);
}

a {
  color: var(--eucalyptus-dark);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--eucalyptus);
}

/* Focus visible for accessibility */
:focus-visible {
  outline: 2px solid var(--eucalyptus);
  outline-offset: 2px;
}

/* ============================================
   4. LAYOUT UTILITIES
   ============================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

.section {
  padding-block: var(--space-3xl);
}

@media (min-width: 768px) {
  .section {
    padding-block: var(--space-4xl);
  }
}

/* Flex utilities */
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Grid utilities */
.grid-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .grid-services {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .grid-services {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
  }
}

/* ============================================
   5. BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.875rem 1.75rem;
  font-family: var(--font-primary);
  font-size: 0.9375rem;
  font-weight: var(--fw-semibold);
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
}

/* Button Enhancements */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 9999px;
  font-weight: 700;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.02em;
}

.btn:active {
  transform: scale(0.96);
}

.btn:focus-visible {
  outline: 2px solid var(--eucalyptus);
  outline-offset: 3px;
}

/* Primary Button */
.btn-primary {
  background-color: var(--eucalyptus);
  color: white;
  box-shadow: 0 4px 15px rgba(53, 134, 0, 0.3);
}

.btn-primary:hover {
  background-color: var(--eucalyptus-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(53, 134, 0, 0.4);
}

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

/* Secondary Button */
.btn-secondary {
  background: transparent;
  color: var(--eucalyptus-dark);
  border: 2px solid var(--eucalyptus);
}

.btn-secondary:hover {
  background: var(--eucalyptus);
  color: white;
}

/* Ghost Button */
.btn-ghost {
  background: transparent;
  color: var(--anthracite);
  padding: 0.75rem 1.25rem;
}

.btn-ghost:hover {
  background: var(--cream-dark);
  color: var(--anthracite);
}

/* Large Button */
.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* Icon Button */
.btn-icon {
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border-radius: var(--radius-lg);
}

/* ============================================
   6. HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(250, 248, 245, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: var(--z-sticky);
  transition: box-shadow var(--transition-base);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 1.25rem;
  font-weight: var(--fw-bold);
  color: var(--anthracite);
}

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--eucalyptus);
}

.logo-text span {
  color: var(--eucalyptus);
}

/* Desktop Navigation */
.nav-desktop {
  display: none;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
  }
}

.nav-link {
  font-size: 0.9375rem;
  font-weight: var(--fw-medium);
  color: var(--anthracite-light);
  padding: var(--space-sm) 0;
  position: relative;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--eucalyptus);
  transition: width var(--transition-base);
}

.nav-link:hover {
  color: var(--anthracite);
}

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

/* Hamburger Menu */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

@media (min-width: 768px) {
  .hamburger {
    display: none;
  }
}

.hamburger-line {
  width: 100%;
  height: 2px;
  background: var(--anthracite);
  border-radius: 2px;
  transition: all var(--transition-base);
  transform-origin: center;
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   7. DRAWER NAVIGATION
   ============================================ */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(45, 52, 54, 0.5);
  z-index: var(--z-drawer);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--cream);
  z-index: calc(var(--z-drawer) + 1);
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  overflow-y: auto;
  padding: var(--space-xl);
}

.drawer.active {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--cream-dark);
}

.drawer-close {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-dark);
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.drawer-close:hover {
  background: var(--eucalyptus);
  color: white;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.drawer-link {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  font-size: 1rem;
  font-weight: var(--fw-medium);
  color: var(--anthracite);
  border-radius: var(--radius-lg);
  transition: all var(--transition-fast);
}

.drawer-link:hover {
  background: var(--cream-dark);
  color: var(--eucalyptus-dark);
}

.drawer-link svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--eucalyptus);
}

.drawer-cta {
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--cream-dark);
}

/* ============================================
   8. HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  background: var(--cream);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(circle, rgba(107, 155, 140, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-xl) var(--container-padding);
  max-width: 600px;
  margin-inline: auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: rgba(107, 155, 140, 0.1);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: var(--fw-medium);
  color: var(--eucalyptus-dark);
  margin-bottom: var(--space-lg);
}

.hero-badge svg {
  width: 1rem;
  height: 1rem;
}

.hero-title {
  margin-bottom: var(--space-lg);
  color: var(--anthracite);
}

.hero-title span {
  color: var(--eucalyptus);
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--anthracite-light);
  margin-bottom: var(--space-xl);
  max-width: 480px;
  margin-inline: auto;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
}

@media (min-width: 480px) {
  .hero-cta-group {
    flex-direction: row;
    justify-content: center;
  }
}

.hero-scroll {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: var(--anthracite-muted);
  font-size: 0.875rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  40% {
    transform: translateX(-50%) translateY(-10px);
  }

  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

.hero-scroll svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* Hero Image (Desktop) */
.hero-image {
  display: none;
}

@media (min-width: 1024px) {
  .hero {
    min-height: calc(100vh - 100px);
  }

  .hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    max-width: var(--container-max);
    margin-inline: auto;
    padding: var(--space-3xl) var(--container-padding);
  }

  .hero-content {
    text-align: left;
    padding: 0;
    max-width: none;
  }

  .hero-cta-group {
    justify-content: flex-start;
  }

  .hero-image {
    display: block;
    position: relative;
  }

  .hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
  }

  .hero-scroll {
    display: none;
  }
}

/* ============================================
   9. EMERGENCY FLOATING BUTTON
   ============================================ */
.emergency-fab {
  position: fixed;
  bottom: calc(var(--tab-bar-height) + var(--space-lg));
  right: var(--space-lg);
  z-index: var(--z-emergency);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.875rem 1.25rem;
  background: var(--emergency-red);
  color: white;
  font-weight: var(--fw-semibold);
  font-size: 0.875rem;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  box-shadow: var(--shadow-emergency);
  transition: all var(--transition-base);
  animation: pulse-emergency 2s infinite;
}

.emergency-fab:hover {
  background: var(--emergency-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(231, 76, 60, 0.5);
}

@media (min-width: 768px) {
  .emergency-fab {
    bottom: var(--space-xl);
    right: var(--space-xl);
    padding: 1rem 1.5rem;
    font-size: 0.9375rem;
  }
}

.emergency-fab:hover {
  background: var(--emergency-red-dark);
  transform: scale(1.05);
}

.emergency-fab svg {
  width: 1.25rem;
  height: 1.25rem;
}

@keyframes pulse-emergency {
  0% {
    box-shadow: var(--shadow-emergency);
  }

  50% {
    box-shadow: 0 4px 30px rgba(231, 76, 60, 0.5);
  }

  100% {
    box-shadow: var(--shadow-emergency);
  }
}

/* ============================================
   10. TAB BAR (Mobile Navigation)
   ============================================ */
.tab-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--tab-bar-height);
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--cream-dark);
  z-index: var(--z-tab-bar);
  padding-bottom: env(safe-area-inset-bottom);
}

@media (min-width: 768px) {
  .tab-bar {
    display: none;
  }
}

.tab-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 100%;
  max-width: 400px;
  margin-inline: auto;
}

.tab-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: var(--space-sm);
  color: var(--anthracite-light);
  text-decoration: none;
  font-size: 0.6875rem;
  font-weight: var(--fw-medium);
  transition: all var(--transition-fast);
  border-radius: var(--radius-lg);
  min-width: 4rem;
}

.tab-item:hover,
.tab-item:focus {
  color: var(--eucalyptus);
  background: rgba(107, 155, 140, 0.1);
}

.tab-item svg {
  width: 1.5rem;
  height: 1.5rem;
}

.tab-item--emergency {
  color: var(--emergency-red);
}

.tab-item--emergency:hover,
.tab-item--emergency:focus {
  color: var(--emergency-red-dark);
  background: rgba(231, 76, 60, 0.1);
}

/* ============================================
   11. SERVICES SECTION
   ============================================ */
.services {
  background: white;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section-overline {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--eucalyptus);
  margin-bottom: var(--space-sm);
}

.section-title {
  margin-bottom: var(--space-md);
}

.section-description {
  max-width: 600px;
  margin-inline: auto;
}

/* Service Card */
.service-card {
  background: var(--cream);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  text-align: center;
  transition: all var(--transition-base);
  border: 1px solid transparent;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--eucalyptus-light);
}

.service-icon {
  width: 3.5rem;
  height: 3.5rem;
  margin-inline: auto;
  margin-bottom: var(--space-md);
  padding: var(--space-sm);
  background: rgba(107, 155, 140, 0.1);
  border-radius: var(--radius-lg);
  color: var(--eucalyptus);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-title {
  font-size: 1rem;
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-sm);
  color: var(--anthracite);
}

.service-description {
  font-size: 0.875rem;
  color: var(--anthracite-light);
  line-height: 1.5;
}

@media (min-width: 768px) {
  .service-card {
    padding: var(--space-xl);
  }

  .service-icon {
    width: 4rem;
    height: 4rem;
  }

  .service-title {
    font-size: 1.125rem;
  }
}

/* ============================================
   12. SOCIAL PROOF / STATS SECTION
   ============================================ */
.stats {
  background: linear-gradient(135deg, var(--eucalyptus-dark) 0%, var(--eucalyptus) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  text-align: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-2xl);
  }
}

.stat-item {
  padding: var(--space-md);
}

.stat-number {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: var(--fw-bold);
  line-height: 1;
  margin-bottom: var(--space-sm);
  color: white;
}

.stat-label {
  font-size: 0.875rem;
  font-weight: var(--fw-medium);
  opacity: 0.9;
  color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   13. TESTIMONIALS SECTION
   ============================================ */
.testimonials {
  background: var(--cream-warm);
}

.testimonials-slider {
  display: flex;
  gap: var(--space-lg);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: var(--space-sm);
  margin: 0 calc(var(--container-padding) * -1);
  padding-inline: var(--container-padding);
}

.testimonials-slider::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 280px;
  scroll-snap-align: center;
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
  .testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: visible;
    margin: 0;
    padding: 0;
  }

  .testimonial-card {
    flex: none;
  }
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-full);
  background: var(--eucalyptus-light);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--fw-bold);
  font-size: 1.125rem;
}

.testimonial-info h4 {
  font-size: 0.9375rem;
  font-weight: var(--fw-semibold);
  margin-bottom: 0.125rem;
}

.testimonial-info span {
  font-size: 0.8125rem;
  color: var(--anthracite-muted);
}

.testimonial-stars {
  display: flex;
  gap: 0.125rem;
  color: var(--gold-warm);
  margin-bottom: var(--space-sm);
}

.testimonial-stars svg {
  width: 1rem;
  height: 1rem;
}

.testimonial-text {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--anthracite-light);
}

/* ============================================
   14. TEAM SECTION
   ============================================ */
.team {
  background: white;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--space-xl);
}

@media (min-width: 640px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.team-card {
  background: var(--cream);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-base);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.team-image {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--cream-dark);
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.team-card:hover .team-image img {
  transform: scale(1.05);
}

.team-content {
  padding: var(--space-lg);
}

.team-name {
  font-size: 1.125rem;
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-xs);
}

.team-role {
  font-size: 0.875rem;
  color: var(--eucalyptus);
  font-weight: var(--fw-medium);
  margin-bottom: var(--space-sm);
}

.team-bio {
  font-size: 0.875rem;
  color: var(--anthracite-light);
  line-height: 1.5;
  margin-bottom: var(--space-md);
}

.team-social {
  display: flex;
  gap: var(--space-sm);
}

.team-social a {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  color: var(--anthracite-light);
  transition: all var(--transition-fast);
}

.team-social a:hover {
  background: var(--eucalyptus);
  color: white;
}

.team-social svg {
  width: 1rem;
  height: 1rem;
}

/* ============================================
   15. CTA SECTION
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--anthracite) 0%, #1a1a1a 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(107, 155, 140, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin-inline: auto;
}

.cta-title {
  color: white;
  margin-bottom: var(--space-md);
}

.cta-description {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-xl);
  margin-inline: auto;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
}

@media (min-width: 480px) {
  .cta-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

.cta-phone {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
}

.cta-phone svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--eucalyptus-light);
}

.cta-phone a {
  color: white;
  font-weight: var(--fw-semibold);
}

.cta-phone a:hover {
  color: var(--eucalyptus-light);
}

/* ============================================
   16. FOOTER
   ============================================ */
.footer {
  background: var(--anthracite);
  color: rgba(255, 255, 255, 0.8);
  padding-top: var(--space-3xl);
  padding-bottom: calc(var(--space-xl) + var(--tab-bar-height));
}

@media (min-width: 768px) {
  .footer {
    padding-bottom: var(--space-xl);
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 1.25rem;
  font-weight: var(--fw-bold);
  color: white;
  margin-bottom: var(--space-md);
}

.footer-logo svg {
  width: 2rem;
  height: 2rem;
  color: var(--eucalyptus-light);
}

.footer-tagline {
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

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

.footer-social a {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  color: rgba(255, 255, 255, 0.8);
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--eucalyptus);
  color: white;
}

.footer-social svg {
  width: 1.125rem;
  height: 1.125rem;
}

.footer-heading {
  font-size: 1rem;
  font-weight: var(--fw-semibold);
  color: white;
  margin-bottom: var(--space-lg);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-links a {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--eucalyptus-light);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: 0.9375rem;
}

.footer-contact-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--eucalyptus-light);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.footer-map {
  aspect-ratio: 16/9;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.footer-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(100%) contrast(1.1);
  opacity: 0.7;
  transition: all var(--transition-base);
}

.footer-map:hover iframe {
  filter: grayscale(0%);
  opacity: 1;
}

.footer-bottom {
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-copyright {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

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

.footer-legal a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   17. ANIMATIONS
   ============================================ */

/* Fade In Up */
.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.stagger-children>* {
  opacity: 0;
  transform: translateY(20px);
}

.stagger-children.visible>*:nth-child(1) {
  transition-delay: 0ms;
}

.stagger-children.visible>*:nth-child(2) {
  transition-delay: 100ms;
}

.stagger-children.visible>*:nth-child(3) {
  transition-delay: 200ms;
}

.stagger-children.visible>*:nth-child(4) {
  transition-delay: 300ms;
}

.stagger-children.visible>*:nth-child(5) {
  transition-delay: 400ms;
}

.stagger-children.visible>*:nth-child(6) {
  transition-delay: 500ms;
}

.stagger-children.visible>* {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Scale in */
.scale-in {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Counter animation */
.counter {
  display: inline-block;
}

/* ============================================
   18. UTILITY CLASSES
   ============================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-sm {
  margin-bottom: var(--space-sm);
}

.mb-md {
  margin-bottom: var(--space-md);
}

.mb-lg {
  margin-bottom: var(--space-lg);
}

.mb-xl {
  margin-bottom: var(--space-xl);
}

.mt-0 {
  margin-top: 0;
}

.mt-sm {
  margin-top: var(--space-sm);
}

.mt-md {
  margin-top: var(--space-md);
}

.mt-lg {
  margin-top: var(--space-lg);
}

.mt-xl {
  margin-top: var(--space-xl);
}

/* Hide on specific breakpoints */
@media (max-width: 767px) {
  .hide-mobile {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .hide-desktop {
    display: none !important;
  }
}

/* Glassmorphism effect */
.glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Gradient text */
.gradient-text {
  background: linear-gradient(135deg, var(--eucalyptus) 0%, var(--eucalyptus-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   19. PREMIUM VISUALS (ENRICHMENT UPDATE)
   ============================================ */
.bg-texture-dots {
  background-image: radial-gradient(#6B9B8C 0.8px, transparent 0.8px);
  background-size: 24px 24px;
}

.bg-cream-rich {
  background-color: #F8F5F0;
}

.blob-shape {
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  overflow: hidden;
}

.blob-animate {
  animation: blob-pulse 8s ease-in-out infinite alternate;
}

@keyframes blob-pulse {
  0% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }

  100% {
    border-radius: 40% 60% 70% 30% / 40% 70% 30% 60%;
  }
}

.text-gradient-gold {
  background: linear-gradient(to right, #C9A962, #B08D55);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* Standard property */
}

.card-premium-hover {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card-premium-hover:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.btn-glow {
  box-shadow: 0 4px 14px 0 rgba(107, 155, 140, 0.39);
}

.btn-glow:hover {
  box-shadow: 0 6px 20px rgba(107, 155, 140, 0.23);
}

/* Decorative SVGs */
.deco-shape {
  position: absolute;
  z-index: 0;
  opacity: 0.1;
  pointer-events: none;
}

/* ============================================
   MODERN ANIMATED AESTHETICS - 2024/2026 Trends
   ============================================ */

/* ---------- ANIMATED GRADIENT BACKGROUNDS ---------- */
@keyframes gradientShift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes gradientPulse {

  0%,
  100% {
    opacity: 0.6;
  }

  50% {
    opacity: 1;
  }
}

.animated-gradient {
  background: linear-gradient(-45deg,
      #358600,
      #63C132,
      #9EE37D,
      #AAEFDF,
      #CFFCFF,
      #63C132);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
}

.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(255, 255, 255, 0.4) 0%,
      rgba(255, 255, 255, 0.3) 100%);
  pointer-events: none;
  z-index: 1;
}

@media (min-width: 1024px) {
  .hero-gradient-overlay {
    background: linear-gradient(135deg,
        rgba(53, 134, 0, 0.1) 0%,
        rgba(99, 193, 50, 0.05) 50%,
        rgba(170, 239, 223, 0.1) 100%);
    animation: gradientPulse 8s ease-in-out infinite;
  }
}

/* ---------- FLOATING BLOBS (Organic Shapes) ---------- */
@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  33% {
    transform: translateY(-15px) rotate(2deg);
  }

  66% {
    transform: translateY(10px) rotate(-2deg);
  }
}

@keyframes floatReverse {

  0%,
  100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }

  50% {
    transform: translateY(20px) rotate(-3deg) scale(1.05);
  }
}

@keyframes morphBlob {

  0%,
  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }

  50% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }
}

.floating-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
  pointer-events: none;
  animation: float 10s ease-in-out infinite, morphBlob 15s ease-in-out infinite;
}

.floating-blob--primary {
  background: linear-gradient(135deg, #358600, #63C132);
  width: 400px;
  height: 400px;
}

.floating-blob--secondary {
  background: linear-gradient(135deg, #9EE37D, #AAEFDF);
  width: 300px;
  height: 300px;
  animation-delay: -5s;
  animation-direction: reverse;
}

.floating-blob--accent {
  background: linear-gradient(135deg, #CFFCFF, #AAEFDF);
  width: 250px;
  height: 250px;
  animation-delay: -2.5s;
}

/* ---------- GLASSMORPHISM ENHANCED ---------- */
.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 24px;
  box-shadow:
    0 8px 32px rgba(53, 134, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 20px 40px rgba(53, 134, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  border-color: rgba(99, 193, 50, 0.3);
}

.glass-dark {
  background: rgba(45, 52, 54, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ---------- SCROLL REVEAL ANIMATIONS ---------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays for lists */
.stagger-1 {
  transition-delay: 0.1s;
}

.stagger-2 {
  transition-delay: 0.2s;
}

.stagger-3 {
  transition-delay: 0.3s;
}

.stagger-4 {
  transition-delay: 0.4s;
}

.stagger-5 {
  transition-delay: 0.5s;
}

.stagger-6 {
  transition-delay: 0.6s;
}

/* ---------- PREMIUM BUTTON EFFECTS ---------- */
.btn-premium {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #358600, #63C132);
  border: none;
  padding: 16px 32px;
  border-radius: 50px;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(53, 134, 0, 0.3);
}

.btn-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.btn-premium:hover::before {
  left: 100%;
}

.btn-premium:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(53, 134, 0, 0.4);
}

.btn-premium:active {
  transform: translateY(-1px);
}

/* Outline button variant */
.btn-outline-premium {
  position: relative;
  background: transparent;
  border: 2px solid #358600;
  padding: 14px 30px;
  border-radius: 50px;
  color: #358600;
  font-weight: 600;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-outline-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(135deg, #358600, #63C132);
  z-index: -1;
  transition: width 0.4s ease;
}

.btn-outline-premium:hover {
  color: white;
  border-color: transparent;
}

.btn-outline-premium:hover::before {
  width: 100%;
}

/* ---------- CARD HOVER EFFECTS ---------- */
.card-lift {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-lift:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 50px -12px rgba(53, 134, 0, 0.2);
}

.card-tilt {
  transition: transform 0.4s ease;
  transform-style: preserve-3d;
}

.card-tilt:hover {
  transform: perspective(1000px) rotateX(5deg) rotateY(-5deg) translateY(-8px);
}

/* ---------- TEXT GRADIENT ANIMATION ---------- */
@keyframes textGradientShift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.text-gradient-animated {
  background: linear-gradient(90deg, #358600, #63C132, #9EE37D, #63C132, #358600);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textGradientShift 4s linear infinite;
}

.text-gradient-static {
  background: linear-gradient(135deg, #358600, #63C132);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------- GLOW EFFECTS ---------- */
.glow-green {
  box-shadow: 0 0 20px rgba(99, 193, 50, 0.5),
    0 0 40px rgba(99, 193, 50, 0.3),
    0 0 60px rgba(99, 193, 50, 0.1);
}

.glow-pulse {
  animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(99, 193, 50, 0.4);
  }

  50% {
    box-shadow: 0 0 40px rgba(99, 193, 50, 0.6), 0 0 60px rgba(99, 193, 50, 0.3);
  }
}

/* ---------- UNDERLINE ANIMATION ---------- */
.link-underline {
  position: relative;
  text-decoration: none;
}

.link-underline::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #358600, #63C132);
  transition: width 0.3s ease;
}

.link-underline:hover::after {
  width: 100%;
}

/* ---------- IMAGE EFFECTS ---------- */
.img-zoom {
  overflow: hidden;
  border-radius: 24px;
}

.img-zoom img {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.img-zoom:hover img {
  transform: scale(1.08);
}

.img-reveal {
  position: relative;
  overflow: hidden;
}

.img-reveal::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #358600, #63C132);
  transform: translateX(-101%);
  transition: transform 0.6s ease;
  z-index: 1;
}

.img-reveal:hover::before {
  transform: translateX(101%);
}

/* ---------- ICON ANIMATIONS ---------- */
@keyframes iconBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes iconPulse {

  0%,
  100% {
    transform: scale(1);
  }

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

.icon-bounce:hover {
  animation: iconBounce 0.6s ease infinite;
}

.icon-pulse:hover {
  animation: iconPulse 0.8s ease infinite;
}

.icon-rotate:hover {
  animation: spin 0.6s ease;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* ---------- COUNTER ANIMATION ---------- */
@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.counter-animated {
  animation: countUp 0.8s ease-out forwards;
}

/* ---------- WAVE ANIMATION ---------- */
@keyframes waveMove {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.wave-animated {
  animation: waveMove 20s linear infinite;
}

/* ---------- PARTICLE BACKGROUND ---------- */
@keyframes particleFloat {

  0%,
  100% {
    transform: translateY(0) translateX(0);
    opacity: 0.6;
  }

  25% {
    transform: translateY(-20px) translateX(10px);
    opacity: 1;
  }

  50% {
    transform: translateY(-10px) translateX(-10px);
    opacity: 0.8;
  }

  75% {
    transform: translateY(-30px) translateX(5px);
    opacity: 0.9;
  }
}

.particle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: rgba(99, 193, 50, 0.6);
  border-radius: 50%;
  pointer-events: none;
  animation: particleFloat 6s ease-in-out infinite;
}

/* ---------- SMOOTH SECTION TRANSITIONS ---------- */
section {
  position: relative;
}

section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99, 193, 50, 0.2), transparent);
}

/* ---------- ACCESSIBILITY: REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .floating-blob,
  .animated-gradient,
  .wave-animated,
  .particle,
  .marquee-content,
  .noise-overlay {
    animation: none !important;
  }
}

/* ============================================
   VANGUARD REDESIGN (LEVEL 4)
   ============================================ */

/* ---------- NOISE TEXTURE ---------- */
.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.05;
  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.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* ---------- CUSTOM CURSOR ---------- */
body {
  cursor: none;
  /* Hide default cursor */
}

.cursor-dot,
.cursor-outline {
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 10000;
  pointer-events: none;
}

.cursor-dot {
  width: 24px;
  height: 24px;
  background-color: #358600;
  -webkit-mask-image: url('../assets/icons/paw.svg');
  mask-image: url('../assets/icons/paw.svg');
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  border-radius: 0;
}

.cursor-outline {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(53, 134, 0, 0.5);
  transition: width 0.2s, height 0.2s, background-color 0.2s;
}

/* Hover state for links/buttons */
body.hovering .cursor-outline {
  width: 60px;
  height: 60px;
  background-color: rgba(53, 134, 0, 0.1);
  border-color: transparent;
}

/* ---------- MASSIVE TYPOGRAPHY ---------- */
.text-giant {
  font-size: clamp(3rem, 8vw, 10rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  font-weight: 800;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.9), 0 0 30px rgba(255, 255, 255, 0.6);
}

@media (min-width: 1024px) {
  .text-giant {
    text-shadow: none;
  }
}

.font-editorial {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-style: italic;
}

/* ---------- VANGUARD HERO ---------- */
.hero-vanguard {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  /* Header space */
}

.hero-mask-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.15;
  /* Subtle background on mobile */
  pointer-events: none;
}

@media (min-width: 1024px) {
  .hero-mask-container {
    right: 0;
    left: auto;
    width: 50%;
    opacity: 1;
    pointer-events: auto;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
  }
}

.hero-image-fullscreen {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- SMOOTH SCROLL (LENIS) ---------- */
html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

/* ============================================
   CONTENT EXPANSION STYLES
   ============================================ */

/* ---------- ACCORDION (FAQ) ---------- */
.accordion-item {
  border: 1px solid rgba(45, 52, 54, 0.1);
  background: #FDFDFD;
  margin-bottom: 12px;
  border-radius: 12px;
  padding: 0 24px;
  transition: all 0.3s ease;
}

.accordion-item:hover {
  border-color: rgba(53, 134, 0, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  background: white;
}

.accordion-item.active {
  border-color: rgba(53, 134, 0, 0.5);
  background: white;
  box-shadow: 0 8px 24px rgba(53, 134, 0, 0.08);
}

.accordion-trigger {
  width: 100%;
  text-align: left;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  color: #2D3436;
  font-size: 1.1rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.accordion-trigger:hover {
  color: #358600;
}

.accordion-content {
  height: 0;
  overflow: hidden;
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  padding: 0;
}

.accordion-item.active .accordion-content {
  height: auto;
  padding-bottom: 24px;
  opacity: 1;
}

.accordion-icon {
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

/* ---------- PROCESS STEPS ---------- */
.step-card {
  position: relative;
  z-index: 1;
}

.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 700;
  color: rgba(53, 134, 0, 0.1);
  position: absolute;
  top: -20px;
  right: 20px;
  z-index: -1;
  line-height: 1;
}

/* ---------- STATS STRIP ---------- */
.stats-strip {
  background: linear-gradient(135deg, #2D3436, #1a1f20);
  color: white;
}

/* ============================================
   SCROLL EFFECTS (LEVEL 3)
   ============================================ */

/* ---------- PARALLAX ---------- */
.parallax-wrapper {
  position: relative;
  overflow: hidden;
  height: 400px;
  /* Default, override in HTML */
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  /* Taller than container for movement */
  background-size: cover;
  background-position: center;
  will-change: transform;
  z-index: 0;
}

.parallax-content {
  position: relative;
  z-index: 10;
}

/* ---------- MARQUEE INFINITE SCROLL ---------- */
.marquee-container {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  background: #358600;
  padding: 16px 0;
}

.marquee-content {
  display: inline-block;
  animation: marquee 30s linear infinite;
}

.marquee-item {
  display: inline-block;
  padding: 0 40px;
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.marquee-item span {
  /* Separator dot */
  opacity: 0.5;
  margin-left: 40px;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}