/* ============================================
   CSS Variables - Modern Health Theme
   ============================================ */
:root {
  --bg-primary: #fafbfc;
  --bg-secondary: #ffffff;
  --bg-accent: #f5f7fa;
  --bg-card: #ffffff;
  --bg-overlay: rgba(0, 0, 0, 0.02);
  
  --primary-color: #5a7c65;
  --primary-dark: #3d5a47;
  --primary-light: #7a9d85;
  --accent-color: #8fb3a0;
  --accent-light: #c4d9cc;
  
  --text-primary: #2d3748;
  --text-secondary: #4a5568;
  --text-muted: #718096;
  --text-light: #a0aec0;
  
  --success-color: #48bb78;
  --warning-color: #ed8936;
  --error-color: #f56565;
  --info-color: #4299e1;
  
  --border-color: #e2e8f0;
  --border-light: #f7fafc;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
  
  --border-radius: 0px;
  --border-radius-lg: 0px;
  --border-radius-sm: 0px;
  
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2.5rem;
  --spacing-xl: 4rem;
  
  --font-heading: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Nunito Sans', 'Segoe UI', sans-serif;
}

/* ============================================
   Reset & Base Styles
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
  font-size: 16px;
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: var(--spacing-md);
  color: var(--text-primary);
  letter-spacing: 0.02em;
  text-transform: none;
}

h1 {
  font-size: clamp(2.25rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(1.875rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

p {
  margin-bottom: var(--spacing-sm);
  color: var(--text-secondary);
  font-size: 1.0625rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* ============================================
   AD Label Badge (Sticky)
   ============================================ */
.ad-label {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fbbf24;
  color: #1f2937;
  text-align: center;
  padding: var(--spacing-xs) var(--spacing-sm);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  box-shadow: 0 4px 0 0 #d97706;
  font-family: var(--font-body);
  border-bottom: 2px solid #d97706;
}

/* ============================================
   Disclaimer Banner
   ============================================ */
.disclaimer-banner {
  background: #fff3cd;
  color: #856404;
  padding: var(--spacing-md);
  border-radius: 0;
  margin: var(--spacing-md) 0;
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1.7;
  box-shadow: 6px 6px 0 0 #ffc107;
  border: 3px solid #ffc107;
}

/* ============================================
   Container & Layout
   ============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.section {
  padding: var(--spacing-xl) 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: var(--spacing-lg);
  position: relative;
  color: var(--primary-color);
  padding-bottom: var(--spacing-md);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 0;
}

/* ============================================
   Header / Navigation
   ============================================ */
.header {
  position: sticky;
  top: 32px;
  z-index: 999;
  padding: var(--spacing-sm) var(--spacing-md);
  background: var(--bg-secondary);
  backdrop-filter: none;
  border-bottom: 4px solid var(--primary-color);
  margin-bottom: var(--spacing-md);
  box-shadow: 0 4px 0 0 var(--primary-dark);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 0.05em;
  border: 3px solid var(--primary-color);
  padding: var(--spacing-xs) var(--spacing-sm);
  box-shadow: 4px 4px 0 0 var(--primary-dark);
}

.nav-buttons {
  display: flex;
  gap: var(--spacing-sm);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-block;
  padding: 0.9375rem 2rem;
  border-radius: var(--border-radius-sm);
  font-weight: 600;
  font-size: 0.9375rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: 0;
}

.btn-primary {
  background: var(--primary-color);
  color: white;
  box-shadow: 4px 4px 0 0 var(--primary-dark);
  border: 2px solid var(--primary-dark);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 0 var(--primary-dark);
  text-decoration: none;
}

.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 3px solid var(--primary-color);
  box-shadow: 4px 4px 0 0 var(--primary-color);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 0 var(--primary-color);
}

.btn-link {
  background: transparent;
  color: var(--primary-color);
  padding: var(--spacing-xs) var(--spacing-sm);
  text-decoration: underline;
}

.btn-link:hover {
  color: var(--primary-dark);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  position: relative;
  width: 100%;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-lg);
  overflow: hidden;
  background: var(--bg-secondary);
  border: 4px solid var(--primary-color);
  border-radius: 0;
  padding: var(--spacing-xl) var(--spacing-md);
  box-shadow: 12px 12px 0 0 var(--primary-color);
}

.hero-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-overlay);
  z-index: 0;
  border-radius: var(--border-radius-lg);
}

.hero-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 0.12;
  border-radius: var(--border-radius-lg);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: var(--spacing-xl) var(--spacing-md);
  max-width: 900px;
  margin: 0 auto;
}

.hero-title {
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  margin-bottom: var(--spacing-md);
  color: var(--primary-color);
  text-shadow: none;
  border-bottom: 4px solid var(--primary-color);
  padding-bottom: var(--spacing-sm);
  display: inline-block;
  font-weight: 700;
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: var(--text-secondary);
  margin-bottom: var(--spacing-lg);
  line-height: 1.8;
}

/* ============================================
   Stats Strip / Chips
   ============================================ */
.stats-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  margin: var(--spacing-lg) 0;
  padding: var(--spacing-md) 0;
}

.stat-chip {
  background: var(--bg-card);
  border: 2px solid var(--border-color);
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: 20px 8px 20px 8px;
  font-size: 0.9375rem;
  color: var(--text-primary);
  box-shadow: 0 2px 6px rgba(139, 74, 107, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

.stat-chip::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(139, 74, 107, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}

.stat-chip:hover {
  border-color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(139, 74, 107, 0.15);
  transform: translateY(-4px) scale(1.05);
  background: linear-gradient(135deg, var(--accent-light), var(--bg-card));
  border-radius: 8px 20px 8px 20px;
}

.stat-chip:hover::before {
  width: 200px;
  height: 200px;
}

/* ============================================
   Cards - Modern Minimalist Design
   ============================================ */
.glass-card {
  background: var(--bg-card);
  border: 3px solid var(--primary-color);
  border-radius: 0;
  padding: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
  box-shadow: 
    8px 8px 0 0 var(--primary-color),
    0 0 0 3px var(--bg-card);
  transition: all 0.3s ease;
  position: relative;
  overflow: visible;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border: 1px solid var(--accent-color);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.glass-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: var(--primary-color);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s ease;
}

.glass-card:hover {
  box-shadow: 
    12px 12px 0 0 var(--primary-dark),
    0 0 0 3px var(--bg-card);
  transform: translate(-4px, -4px);
  border-color: var(--primary-dark);
}

.glass-card:hover::before {
  opacity: 1;
}

.glass-card:hover::after {
  transform: scaleY(1);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  margin: var(--spacing-lg) 0;
}

.card-grid .glass-card:nth-child(1) {
  border-left-width: 6px;
  border-left-color: var(--primary-color);
}

.card-grid .glass-card:nth-child(2) {
  border-top-width: 6px;
  border-top-color: var(--primary-color);
}

.card-grid .glass-card:nth-child(3) {
  border-right-width: 6px;
  border-right-color: var(--primary-color);
}

.card-grid .glass-card:nth-child(1):hover {
  transform: translate(-6px, -6px);
  border-left-color: var(--primary-dark);
}

.card-grid .glass-card:nth-child(2):hover {
  transform: translate(0, -6px);
  border-top-color: var(--primary-dark);
}

.card-grid .glass-card:nth-child(3):hover {
  transform: translate(6px, -6px);
  border-right-color: var(--primary-dark);
}

.card-highlight {
  border: 4px solid var(--primary-color);
  box-shadow: 
    10px 10px 0 0 var(--primary-dark),
    0 0 0 4px var(--bg-card);
  background: linear-gradient(135deg, var(--bg-card), var(--accent-light));
}

.card-highlight:hover {
  box-shadow: 
    14px 14px 0 0 var(--primary-dark),
    0 0 0 4px var(--bg-card);
  transform: translate(-4px, -4px);
}

.card-highlight h3 {
  color: var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: var(--spacing-xs);
  display: inline-block;
}

/* ============================================
   Legal Information Block
   ============================================ */
.legal-block {
  background: var(--bg-secondary);
  border: 4px solid var(--primary-color);
  border-radius: 0;
  padding: var(--spacing-lg);
  margin: var(--spacing-lg) 0;
  box-shadow: 8px 8px 0 0 var(--primary-dark);
  position: relative;
  overflow: visible;
}

.legal-block h3 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
  font-size: 1.75rem;
}

.legal-block p,
.legal-block .legal-info {
  color: var(--text-primary);
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: var(--spacing-sm);
  font-weight: 400;
}

.legal-block strong {
  color: var(--primary-color);
  font-weight: 700;
}

/* ============================================
   Forms
   ============================================ */
.form-group {
  margin-bottom: var(--spacing-md);
}

.form-group label {
  display: block;
  margin-bottom: var(--spacing-xs);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.9375rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem;
  background: var(--bg-secondary);
  border: 3px solid var(--primary-color);
  border-radius: 0;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-dark);
  box-shadow: 4px 4px 0 0 var(--primary-dark);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group .error {
  color: var(--error-color);
  font-size: 0.875rem;
  margin-top: var(--spacing-xs);
  display: none;
}

.form-group input:invalid:not(:placeholder-shown) + .error,
.form-group textarea:invalid:not(:placeholder-shown) + .error {
  display: block;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-xs);
  margin: var(--spacing-md) 0;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 4px;
  cursor: pointer;
}

.checkbox-group label {
  margin-bottom: 0;
  font-weight: 400;
  cursor: pointer;
}

.order-form {
  background: var(--bg-card);
  border: 3px solid var(--primary-color);
  border-radius: 0;
  padding: var(--spacing-lg);
  margin: var(--spacing-lg) 0;
  box-shadow: 6px 6px 0 0 var(--primary-dark);
  position: relative;
  overflow: visible;
}

/* ============================================
   Accordion
   ============================================ */
.accordion {
  margin-bottom: var(--spacing-sm);
}

.accordion-header {
  background: var(--bg-accent);
  border: 2px solid var(--border-color);
  border-radius: 14px 6px 14px 6px;
  padding: var(--spacing-md);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 600;
  position: relative;
  overflow: hidden;
}

.accordion-header::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: linear-gradient(90deg, var(--primary-color), transparent);
  transition: width 0.4s ease;
}

.accordion-header:hover {
  background: var(--accent-light);
  border-color: var(--primary-dark);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 0 var(--primary-dark);
}

.accordion-header:hover::before {
  width: 6px;
}

.accordion-header::after {
  content: '+';
  font-size: 1.75rem;
  color: var(--primary-color);
  transition: transform 0.3s ease;
  font-weight: 300;
}

.accordion-header.active::after {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 var(--spacing-md);
}

.accordion-content.active {
  max-height: 2000px;
  padding: var(--spacing-md);
  background: var(--bg-accent);
  border: 3px solid var(--primary-color);
  border-top: none;
  border-radius: 0;
  box-shadow: 4px 4px 0 0 var(--primary-dark);
}

/* ============================================
   Image Placeholders
   ============================================ */
.image-placeholder {
  width: 100%;
  background: var(--bg-accent);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  overflow: hidden;
  position: relative;
}

.image-placeholder::before {
  content: '';
  display: block;
  padding-top: var(--aspect-ratio, 56.25%);
}

.image-placeholder.ratio-16-9 {
  --aspect-ratio: 56.25%;
}

.image-placeholder.ratio-1-1 {
  --aspect-ratio: 100%;
}

.image-placeholder img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius);
}

.image-placeholder.ratio-1-1 img {
  object-fit: contain;
  padding: 0.5rem;
}

.image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-md);
  margin: var(--spacing-lg) 0;
}

/* ============================================
   Carousel
   ============================================ */
.carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: var(--border-radius);
  margin: var(--spacing-lg) 0;
  box-shadow: var(--shadow-md);
}

.carousel-track {
  display: flex;
  transition: transform 0.6s ease;
}

.carousel-slide {
  min-width: 100%;
  position: relative;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 2px solid var(--border-color);
  color: var(--text-primary);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: var(--shadow-md);
  font-size: 1.5rem;
}

.carousel-nav:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
  transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
  left: var(--spacing-md);
}

.carousel-nav.next {
  right: var(--spacing-md);
}

/* ============================================
   References Section
   ============================================ */
.references-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-md);
  margin: var(--spacing-lg) 0;
}

.reference-card {
  background: var(--bg-card);
  border: none;
  border-radius: 18px 6px 18px 6px;
  padding: var(--spacing-md);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(139, 74, 107, 0.08);
  position: relative;
  overflow: hidden;
}

.reference-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, rgba(139, 74, 107, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(30px, -30px);
  transition: transform 0.4s ease;
}

.reference-card:hover {
  box-shadow: 0 6px 20px rgba(139, 74, 107, 0.15);
  transform: translateY(-6px) scale(1.02);
  border-radius: 6px 18px 6px 18px;
}

.reference-card:hover::after {
  transform: translate(20px, -20px) scale(1.2);
}

.reference-card h4 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-xs);
  font-size: 1.125rem;
}

.reference-card p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-sm);
}

.reference-card .btn-link {
  font-size: 0.875rem;
}

/* ============================================
   Footer - Completely New Design
   ============================================ */
.footer {
  background: linear-gradient(
    180deg,
    var(--bg-secondary) 0%,
    var(--bg-accent) 50%,
    var(--bg-primary) 100%
  );
  border-top: 4px solid var(--primary-color);
  padding: var(--spacing-xl) 0 var(--spacing-md);
  margin-top: var(--spacing-xl);
  position: relative;
  overflow: hidden;
  clip-path: polygon(
    0% 0%,
    100% 0%,
    100% calc(100% - 40px),
    0% 100%
  );
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-color),
    var(--accent-color),
    var(--primary-color),
    transparent
  );
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.footer::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(139, 74, 107, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
  position: relative;
  z-index: 1;
}

.footer-section {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(15px);
  border: 2px solid rgba(139, 74, 107, 0.15);
  border-radius: 25px 8px 25px 8px;
  padding: var(--spacing-md);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 4px 12px rgba(139, 74, 107, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.footer-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--accent-color),
    var(--primary-color)
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.footer-section:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-6px) scale(1.02);
  border-radius: 8px 25px 8px 25px;
  border-color: var(--primary-color);
  box-shadow: 
    0 8px 24px rgba(139, 74, 107, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.footer-section:hover::before {
  transform: scaleX(1);
}

.footer-section h4 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
  font-size: 1.125rem;
  font-weight: 700;
  position: relative;
  padding-bottom: var(--spacing-xs);
}

.footer-section h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), transparent);
  border-radius: 2px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: var(--spacing-xs);
  position: relative;
  padding-left: var(--spacing-sm);
}

.footer-section ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-size: 0.875rem;
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-section ul li:hover::before {
  opacity: 1;
  transform: translateX(4px);
}

.footer-section ul li a {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-section ul li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
  font-weight: 500;
}

.footer-bottom {
  text-align: center;
  padding: var(--spacing-lg) var(--spacing-md);
  border-top: 3px solid rgba(139, 74, 107, 0.25);
  color: var(--text-secondary);
  font-size: 0.875rem;
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(15px);
  border-radius: 25px 8px 0 0;
  margin-top: var(--spacing-md);
  box-shadow: 
    0 -4px 16px rgba(139, 74, 107, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  clip-path: polygon(
    0% 0%,
    100% 0%,
    100% 100%,
    0% calc(100% - 20px)
  );
}

.footer-bottom p {
  margin-bottom: var(--spacing-xs);
  line-height: 1.8;
}

.footer-bottom p:last-child {
  margin-bottom: 0;
  color: var(--text-muted);
  font-size: 0.8125rem;
}

/* ============================================
   Cookie Consent Banner
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-card);
  border-top: 2px solid var(--border-color);
  padding: var(--spacing-md);
  z-index: 10000;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  display: none;
}

.cookie-banner.active {
  display: block;
}

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-md);
}

.cookie-banner-text {
  flex: 1;
  min-width: 300px;
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

.cookie-banner-buttons {
  display: flex;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 768px) {
  :root {
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
  }
  
  .header-content {
    flex-direction: column;
    gap: var(--spacing-sm);
  }
  
  .nav-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .hero {
    min-height: 60vh;
  }
  
  .stats-strip {
    flex-direction: column;
    align-items: center;
  }
  
  .card-grid {
    grid-template-columns: 1fr;
  }
  
  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-banner-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .carousel-nav {
    width: 45px;
    height: 45px;
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--spacing-sm);
  }
  
  .glass-card {
    padding: var(--spacing-md);
  }
  
  .btn {
    padding: 0.8125rem 1.5rem;
    font-size: 0.875rem;
  }
}
