/* Design System Marketing-Oriented - cerca-gaseluce.it */

:root {
  /* ========== COLOR PALETTE - MARKETING FOCUSED ========== */
  /* Primary CTA - Arancione conversion-oriented (alta visibilità) */
  --color-cta-primary: #FF6B35;
  --color-cta-primary-hover: #FF5722;
  --color-cta-primary-light: #FF8C65;
  --color-cta-gradient: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
  --color-cta-gradient-hover: linear-gradient(135deg, #FF8C42 0%, #FFAB70 100%);
  
  /* Trust & Professional - Blu fiducia */
  --color-trust-primary: #0066FF;
  --color-trust-secondary: #4285F4;
  --color-trust-light: #66A3FF;
  
  /* Energy & Success - Verde energia sostenibile */
  --color-energy-primary: #00D084;
  --color-energy-secondary: #10B981;
  --color-success: #00C853;
  
  /* Glass Morphism */
  --lg-bg-color: rgba(255, 255, 255, 0.15);
  --lg-bg-color-hover: rgba(255, 255, 255, 0.25);
  --lg-highlight: rgba(255, 255, 255, 0.8);
  --lg-text: #ffffff;
  --lg-text-secondary: #E8EAED;
  --lg-hover-glow: rgba(255, 107, 53, 0.3);
  
  /* Neutrals */
  --lg-red: #FB4268;
  --lg-grey: #5B5B5B;
  --lg-dark: #1A1A2E;
  --lg-dark-lighter: #16213E;
  --lg-light: #F8FAFC;
  
  /* Shadows & Effects */
  --shadow-cta: 0 4px 20px rgba(255, 107, 53, 0.4);
  --shadow-cta-hover: 0 8px 30px rgba(255, 107, 53, 0.6);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-card-hover: 0 12px 40px rgba(0, 0, 0, 0.18);
  
  /* Spacing System */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

/* ========== BASE LAYOUT ========== */
html {
  width: 100%;
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  /* Background migliorato - più luminoso e professionale */
  background: linear-gradient(135deg, #1A1A2E 0%, #16213E 25%, #0F3460 50%, #1A1A2E 75%, #16213E 100%);
  background-size: 400% 400%;
  height: 100%;
  width: 100%;
  animation: gradient 20s ease infinite;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow-x: hidden !important;
  max-width: 100vw !important;
}

/* ========== BACKGROUND ANIMATION ========== */
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  
  50% {
    background-position: 100% 50%;
  }
  
  100% {
    background-position: 0% 50%;
  }
}

@keyframes button-pulse {
  0% {
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.7), 0 0 0 10px rgba(255, 107, 53, 0.1);
    transform: scale(1.02);
  }
  100% {
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
    transform: scale(1);
  }
}

@keyframes button-pulse-mobile {
  0% {
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    transform: translateX(-50%) scale(1);
  }
  50% {
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.7), 0 0 0 10px rgba(255, 107, 53, 0.1);
    transform: translateX(-50%) scale(1.02);
  }
  100% {
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    transform: translateX(-50%) scale(1);
  }
}

/* ========== CONTAINER ========== */
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100vw !important;
}

.container--inline {
  flex-direction: row;
}

/* ========== GLASS CONTAINER ========== */
.glass-container {
  position: relative;
  display: flex;
  font-weight: 600;
  color: var(--lg-text);
  cursor: pointer;
  background: transparent;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.2), 0 0 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 2.2);
  margin: 20px 0;
}

.glass-container--large {
  min-width: 32rem;
}

.glass-container--rounded {
  border-radius: 1.5rem;
}

/* ========== GLASS LAYERS ========== */
.glass-filter {
  position: absolute;
  inset: 0;
  z-index: 0;
  backdrop-filter: blur(0px);
  filter: url(#lg-dist);
  isolation: isolate;
}

.glass-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--lg-bg-color);
}

.glass-specular {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  overflow: hidden;
  box-shadow: inset 1px 1px 0 var(--lg-highlight),
    inset 0 0 5px var(--lg-highlight);
}

.glass-content {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 1rem 1.5rem 0.9rem;
  width: 100%;
}

.glass-content--inline {
  padding: 0.25rem 2rem 0.25rem 0.75rem;
  flex: 1 1 auto;
  justify-content: space-between;
}

/* ========== NAVBAR STYLES ========== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: rgba(128, 128, 128, 0.15);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 0;
}

.navbar-container {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.navbar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 10px;
  position: relative;
}

.navbar-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.navbar-logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.navbar-title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  text-align: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.navbar-phone-desktop {
  display: flex;
  align-items: center;
  position: absolute;
  right: 40px;
  z-index: 2;
}

@media (min-width: 1200px) {
  .navbar-phone-desktop {
    right: 60px;
  }
}

.desktop-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-cta-gradient);
  color: #ffffff;
  padding: 10px 18px;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-cta);
  white-space: nowrap;
}

.desktop-phone-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-cta-hover);
  background: var(--color-cta-gradient-hover);
  color: #ffffff;
  text-decoration: none;
}

.desktop-phone-link i {
  font-size: 1.1rem;
}

.logo-image {
  height: 80px;
  width: auto;
  margin-right: 20px;
  object-fit: contain;
  background: #ffffff;
  border-radius: 50%;
  padding: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #ffffff;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  background: var(--color-cta-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.navbar-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #e0e0e0;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 8px;
}

.navbar-link:hover {
  color: var(--color-cta-primary);
  background: rgba(255, 107, 53, 0.1);
  text-decoration: none;
}

.navbar-icon {
  flex-shrink: 0;
}

.navbar-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-cta-gradient);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-cta);
}

.navbar-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-cta-hover);
  background: var(--color-cta-gradient-hover);
  color: #ffffff;
}

/* ========== MAIN CONTENT SECTIONS ========== */
main {
  display: block;
  position: relative;
  z-index: 10;
  width: 100%;
}

/* Hero Section */
.hero-section {
  padding: 100px 0 120px;
  text-align: center;
  position: relative;
  overflow: visible;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.cta-container {
  margin-top: 2rem;
  padding: 20px 0;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  color: #ffffff;
  line-height: 1.1;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-highlight {
  background: var(--color-cta-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--lg-text-secondary);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* CTA Button - Marketing Optimized */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--color-cta-gradient);
  color: #ffffff;
  padding: 18px 32px;
  border-radius: var(--radius-lg);
  font-size: 1.125rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-cta);
  border: none;
  cursor: pointer;
  animation: button-pulse 2s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

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

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-cta-hover);
  background: var(--color-cta-gradient-hover);
  color: #ffffff;
}

/* Primary CTA - for supplier cards */
.primary-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-cta-gradient);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-cta);
  width: 100%;
  justify-content: center;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

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

.primary-cta:hover::before {
  left: 100%;
}

.primary-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-cta-hover);
  background: var(--color-cta-gradient-hover);
  color: #ffffff;
  text-decoration: none;
}

.primary-cta i {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.primary-cta:hover i {
  transform: translateX(4px);
}

/* Secondary CTA - for main CTA sections */
.secondary-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--color-cta-gradient);
  color: #ffffff;
  padding: 18px 32px;
  border-radius: var(--radius-lg);
  font-size: 1.125rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-cta);
  border: none;
  cursor: pointer;
  animation: button-pulse 2s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

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

.secondary-cta:hover::before {
  left: 100%;
}

.secondary-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-cta-hover);
  background: var(--color-cta-gradient-hover);
  color: #ffffff;
}

/* Section Styles */
.section-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 1rem;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.section-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  color: #e0e0e0;
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  line-height: 1.6;
}

/* Benefits Section */
.benefits-section {
  padding: 80px 0 120px;
  background: transparent;
}

.benefits-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 32px !important;
  margin-top: 3rem;
  max-width: 100% !important;
  margin-left: auto;
  margin-right: auto;
  width: 100% !important;
  overflow-x: hidden !important;
}

.benefit-item {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  text-align: left !important;
  gap: 32px !important;
  padding: 40px !important;
  background: transparent;
  border-radius: 24px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  aspect-ratio: 2.5 !important;
  justify-content: flex-start !important;
  min-height: 200px !important;
  width: 100% !important;
  max-width: 800px !important;
  margin: 0 auto !important;
  box-sizing: border-box !important;
}

.benefit-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--lg-bg-color);
  backdrop-filter: blur(10px);
  border-radius: inherit;
  z-index: -1;
}

.benefit-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-cta-gradient);
  border-radius: var(--radius-lg);
  color: #ffffff;
  margin-bottom: 12px;
  box-shadow: var(--shadow-cta);
  transition: all 0.3s ease;
}

.benefit-icon:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-cta-hover);
}

.benefit-icon i {
  font-size: 32px;
  color: #ffffff;
}

.benefit-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  flex: 1;
  justify-content: center;
  width: 100%;
}

.benefit-content h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--lg-light);
  margin-bottom: 16px;
  text-align: left;
}

.benefit-content p {
  font-size: 1.2rem;
  color: var(--lg-light);
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: left;
  flex: 1;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.benefit-content .cta-button {
  align-self: flex-start;
  margin-top: 0;
}

/* Assistance Section */
.assistance-section {
  padding: 60px 0;
  background: transparent;
}

.assistance-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-left: 4px solid #ffc107;
  padding: 1.5rem;
  margin-top: 4rem;
  border-radius: 8px;
  color: #ffffff;
}

.disclaimer-box p {
  margin: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* CTA Section */
.cta-section {
  padding: 100px 0 120px;
  background: transparent;
  overflow: visible;
}

.cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-content .cta-container {
  margin-top: 2rem;
  padding: 20px 0;
}

/* Footer */
.footer {
  background: rgba(26, 26, 26, 0.9);
  backdrop-filter: blur(10px);
  color: #ffffff;
  padding: 20px 0;
  margin-top: 80px;
  width: 100%;
}

.footer-content {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-copyright {
  font-size: 1rem;
  margin: 0 0 var(--spacing-sm) 0;
  color: #ffffff;
  line-height: 1.6;
}

.footer-links {
  margin-top: var(--spacing-md);
}

.footer-links a {
  color: var(--color-cta-primary-light);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-cta-primary);
  text-decoration: underline;
}


/* ========== SVG FILTER DEFINITION ========== */
svg {
  display: none;
}

svg[style*="display: none"] {
  display: none !important;
}

/* ========== NAVBAR DROPDOWN STYLES ========== */
.navbar-dropdown {
    position: relative;
    z-index: 1000;
}

.dropdown-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: #e0e0e0;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 8px;
    font-family: inherit;
    transition: all 0.3s ease;
    position: relative;
}

.dropdown-button:hover {
    color: #ffc107;
    background: rgba(255, 255, 255, 0.1);
}

.dropdown-icon {
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.dropdown-button:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-content {
    position: fixed;
    top: auto;
    left: auto;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    min-width: 220px;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
    padding: 8px 0;
    margin-top: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999999;
    isolation: isolate;
    will-change: transform, opacity;
    border: 1px solid rgba(255, 255, 255, 0.15);
    overflow: hidden;
}

.dropdown-content.active {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    display: block !important;
    z-index: 9999999 !important;
}

.dropdown-content a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
}

.dropdown-content a:hover {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 235, 59, 0.1));
    color: #ffc107;
    transform: translateX(4px);
}

.dropdown-content a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(135deg, #ffc107, #ffeb3b);
    transform: scaleY(0);
    transition: transform 0.2s ease;
}

.dropdown-content a:hover::before {
    transform: scaleY(1);
}

/* Ensure dropdown is always on top */
.navbar-dropdown .dropdown-content {
    position: fixed !important;
    z-index: 9999999 !important;
    isolation: isolate !important;
}

/* Prevent backdrop-filter interference */
.dropdown-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 26, 0.98);
    border-radius: inherit;
    z-index: -1;
}

/* Force dropdown to be above everything */
.dropdown-content {
    position: fixed !important;
    z-index: 9999999 !important;
    transform: translateZ(0) !important;
    -webkit-transform: translateZ(0) !important;
    will-change: transform, opacity !important;
}

/* Ensure dropdown content is always visible */
.dropdown-content.active {
    position: fixed !important;
    z-index: 9999999 !important;
    transform: translateY(0) translateZ(0) !important;
    -webkit-transform: translateY(0) translateZ(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

/* Mobile Menu Styles */
.mobile-menu-button {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

@media (max-width: 768px) {
    .mobile-menu-button {
        display: flex;
    }
}

.menu-bar {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #ffc107;
    transition: all 0.3s ease;
}

.menu-close-x {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    display: none;
    font-size: 18px;
    font-weight: bold;
}

.mobile-menu-button.active .menu-bar {
    display: none;
}

.mobile-menu-button.active .menu-close-x {
    display: block;
    color: white;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 10001;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 20px 20px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 10002;
}

.mobile-logo-link {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.mobile-logo-link:hover {
    opacity: 0.8;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
}

.mobile-menu-close:hover {
  background-color: rgba(255, 107, 53, 0.2);
  color: var(--color-cta-primary);
}

.mobile-menu-content {
    padding: 20px;
}

/* Mobile menu link */
.mobile-menu-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 0;
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 16px;
    position: relative;
}

.mobile-menu-link:hover {
  color: var(--color-cta-primary);
  text-decoration: none;
  transform: translateX(8px);
}

.mobile-menu-link::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 0;
  background: var(--color-cta-gradient);
  transition: height 0.3s ease;
}

.mobile-menu-link:hover::before {
  height: 20px;
}

.mobile-menu-icon {
    flex-shrink: 0;
}

.mobile-menu-section {
    margin-bottom: 20px;
}

.mobile-dropdown {
    margin-bottom: 16px;
}

.mobile-dropdown-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    color: #e0e0e0;
    font-weight: 500;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-dropdown-icon {
    transition: transform 0.2s ease;
}

.mobile-dropdown-header.active .mobile-dropdown-icon {
    transform: rotate(180deg);
}

.mobile-dropdown-content {
    display: none;
    padding: 8px 0;
}

.mobile-dropdown-content.active {
    display: block;
}

.mobile-dropdown-content a {
    display: block;
    padding: 12px 16px;
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.mobile-dropdown-content a:hover {
    color: #ffc107;
}

.mobile-menu-link {
    display: block;
    padding: 16px 0;
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--color-cta-gradient);
  color: #ffffff;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-cta);
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  margin-top: 16px;
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
}

.mobile-menu-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-cta-hover);
  background: var(--color-cta-gradient-hover);
  color: #ffffff;
  text-decoration: none;
}

@media (max-width: 992px) {
    .navbar-menu {
        display: none;
    }
    
    .mobile-menu-button {
        display: flex;
        margin-left: 20px;
    }
}

/* ========== SUPPLIER PAGES STYLES ========== */

/* Glass Cards for Supplier Pages */
.glass-card {
  background: var(--lg-bg-color);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-xl);
  padding: 2rem;
  margin: 1.5rem 0;
  box-shadow: var(--shadow-card);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(255, 107, 53, 0.3);
  background: var(--lg-bg-color-hover);
}

.glass-card h2 {
  color: var(--lg-text);
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.glass-card h3 {
  color: var(--lg-text);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 0.8rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.glass-card p {
  color: var(--lg-text);
  line-height: 1.6;
  margin-bottom: 1rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Contents List */
.contents-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contents-list li {
  margin-bottom: 0.8rem;
}

.contents-list a {
  color: var(--lg-text);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  display: block;
  padding: 0.5rem 0;
  border-radius: 8px;
  padding-left: 1rem;
}

.contents-list a:hover {
  background: var(--lg-highlight);
  color: var(--lg-dark);
  transform: translateX(5px);
}

/* Offer Types */
.offer-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.offer-type {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.offer-type:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
  border-color: var(--color-cta-primary);
  background: rgba(255, 107, 53, 0.1);
}

.offer-type h3 {
  color: var(--lg-text);
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.offer-type p {
  color: var(--lg-text-secondary);
  margin: 0;
}

/* Procedure Types */
.procedure-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.procedure-type {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 208, 132, 0.3);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.procedure-type:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 208, 132, 0.2);
  border-color: var(--color-energy-primary);
  background: rgba(0, 208, 132, 0.1);
}

.procedure-type h3 {
  color: var(--lg-text);
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.procedure-type p {
  color: var(--lg-text-secondary);
  margin: 0;
  font-size: 0.95rem;
}

/* FAQ Styles */
.faq-list {
  margin-top: 1.5rem;
}

.faq-item {
  background: var(--lg-highlight);
  border-radius: 15px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
  color: var(--lg-dark);
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.faq-item p {
  color: var(--lg-dark);
  margin: 0;
  line-height: 1.5;
}

/* CTA Card */
.cta-card {
  text-align: center;
  background: var(--lg-bg-color);
  border: 2px solid var(--color-cta-primary);
  box-shadow: 0 8px 32px rgba(255, 107, 53, 0.2);
  transition: all 0.3s ease;
}

.cta-card:hover {
  border-color: var(--color-cta-primary-light);
  box-shadow: 0 12px 40px rgba(255, 107, 53, 0.3);
  transform: translateY(-2px);
}

.cta-card h2 {
  color: var(--lg-text);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-card p {
  color: var(--lg-text);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* Content Sections */
.content-section {
  margin: 3rem 0;
}

/* Page Header Styles */
.page-header {
  background: var(--lg-bg-color);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--lg-highlight);
  border-radius: 25px;
  padding: 3rem 2rem;
  margin: 2rem 0;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  text-align: center;
}

.page-title {
  color: var(--lg-text);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
  line-height: 1.2;
}

.page-subtitle {
  color: var(--lg-text);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

.last-update {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--lg-text);
  font-size: 1rem;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.last-update i {
  color: var(--lg-primary);
  font-size: 1.1rem;
}

/* Important Note Styles */
.important-note {
  margin: 2rem 0;
}

.note-box {
  background: rgba(0, 102, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--color-trust-primary);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: 0 8px 25px rgba(0, 102, 255, 0.15);
  transition: all 0.3s ease;
}

.note-box:hover {
  border-color: var(--color-trust-light);
  box-shadow: 0 12px 35px rgba(0, 102, 255, 0.2);
}

.note-box i {
  color: var(--color-trust-primary);
  font-size: 1.2rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.note-box p {
  color: var(--lg-text);
  margin: 0;
  line-height: 1.6;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.note-box strong {
  color: var(--color-trust-light);
  font-weight: 600;
}

/* Breadcrumb Styles */
.breadcrumb-nav {
  margin: 1rem 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  background: var(--lg-bg-color);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--lg-highlight);
  border-radius: 15px;
  padding: 1rem 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.breadcrumb li {
  color: var(--lg-text);
  font-size: 0.9rem;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.breadcrumb li:not(:last-child)::after {
  content: "›";
  margin-left: 0.5rem;
  color: var(--lg-primary);
  font-weight: 600;
}

.breadcrumb li.active {
  color: var(--lg-primary);
  font-weight: 600;
}

/* Sticky Mobile Button */
.sticky-mobile-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--lg-primary), var(--lg-secondary));
  color: var(--lg-dark);
  border: none;
  border-radius: 50px;
  padding: 15px 25px;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Manrope', sans-serif;
  box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
  cursor: pointer;
  z-index: 1000;
  transition: all 0.3s ease;
  display: none;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.sticky-mobile-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 193, 7, 0.6);
  color: var(--lg-dark);
  text-decoration: none;
}

.sticky-mobile-button:active {
  transform: translateY(-1px);
}

.sticky-mobile-button i {
  font-size: 1.1rem;
}

/* Hide button when footer is visible */
.sticky-mobile-button.hidden {
  opacity: 0;
  transform: translateY(100px);
  pointer-events: none;
}

/* Show button only on mobile */
@media (max-width: 768px) {
  .sticky-mobile-button {
    display: flex;
  }
}

/* JavaScript for sticky button visibility */
.sticky-button-js {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  transform: none;
  background: var(--color-cta-gradient);
  color: #ffffff;
  border: none;
  border-radius: 0;
  padding: 14px 20px;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: 'Manrope', sans-serif;
  box-shadow: 0 -4px 20px rgba(255, 107, 53, 0.4);
  z-index: 1000;
  transition: all 0.3s ease;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  animation: none;
}

.sticky-button-content {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  justify-content: center;
}

.sticky-button-number {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.2;
}

.sticky-button-js:hover {
  transform: none;
  box-shadow: 0 -6px 25px rgba(255, 107, 53, 0.6);
  color: #ffffff;
  text-decoration: none;
  background: var(--color-cta-gradient-hover);
}

.sticky-button-js:active {
  transform: none;
  background: var(--color-cta-gradient);
  opacity: 0.9;
}

/* Pulse animation for mobile button */
@keyframes pulse {
  0% {
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
  }
  50% {
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.8), 0 0 0 10px rgba(255, 107, 53, 0.1);
  }
  100% {
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
  }
}

.sticky-button-js i {
  font-size: 1.2rem;
  margin-right: 5px;
}

.sticky-button-js.hidden {
  opacity: 0;
  transform: translateY(100px);
  pointer-events: none;
}

@media (max-width: 768px) {
  .sticky-button-js {
    display: flex;
  }
  
  /* Add padding to body to prevent content from being covered by sticky button */
  body {
    padding-bottom: 70px;
  }
}

/* ========== FAQ SECTION ========== */
.faq-section {
  padding: 80px 0 120px;
  background: transparent;
}

.faq-container {
  max-width: 800px;
  margin: 3rem auto 0;
}

.faq-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  font-family: 'Manrope', sans-serif;
}

.faq-question:hover {
  background: rgba(255, 107, 53, 0.1);
  color: var(--color-cta-primary-light);
}

.faq-question i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  color: var(--color-cta-primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  margin: 0;
  color: #e0e0e0;
  line-height: 1.6;
  font-size: 1rem;
}

/* ========== IMPROVED BENEFITS GRID ========== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-height: 280px;
}

.benefit-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(0, 208, 132, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.benefit-item:hover::before {
  opacity: 1;
}

.benefit-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-cta-gradient);
  border-radius: var(--radius-lg);
  color: #ffffff;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-cta);
  transition: all 0.3s ease;
}

.benefit-icon:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-cta-hover);
}

.benefit-icon i {
  font-size: 2rem;
  color: #ffffff;
}

.benefit-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  justify-content: center;
  width: 100%;
}

.benefit-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.benefit-content p {
  font-size: 1rem;
  color: #e0e0e0;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* ========== SUPPLIERS GRID ========== */
.suppliers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.supplier-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.supplier-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.supplier-header {
  padding: 2rem 2rem 1rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.supplier-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-cta-gradient);
  border-radius: var(--radius-lg);
  color: #ffffff;
  margin: 0 auto 1rem;
  box-shadow: var(--shadow-cta);
  transition: all 0.3s ease;
}

.supplier-icon:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-cta-hover);
}

.supplier-icon i {
  font-size: 2rem;
  color: #ffffff;
}

.supplier-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.supplier-content {
  padding: 1.5rem 2rem;
  flex: 1;
}

.supplier-content p {
  color: #e0e0e0;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.supplier-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.feature-tag {
  background: rgba(255, 107, 53, 0.2);
  color: var(--color-cta-primary);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(255, 107, 53, 0.4);
  transition: all 0.2s ease;
}

.feature-tag:hover {
  background: rgba(255, 107, 53, 0.3);
  border-color: var(--color-cta-primary);
  transform: translateY(-1px);
}

.supplier-footer {
  padding: 1rem 2rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Supplier Button */
.supplier-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-cta-gradient);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-cta);
  width: 100%;
  justify-content: center;
}

.supplier-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-cta-hover);
  background: var(--color-cta-gradient-hover);
  color: #ffffff;
  text-decoration: none;
}

.supplier-button i {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.supplier-button:hover i {
  transform: translateX(4px);
}

/* ========== IMPROVED TYPOGRAPHY ========== */
.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  color: #ffffff;
  line-height: 1.1;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 1rem;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.section-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  color: #e0e0e0;
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  line-height: 1.6;
}

.hero-description {
  font-size: clamp(1.1rem, 2.5vw, 1.25rem);
  color: #e0e0e0;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* ========== IMPROVED SPACING ========== */
.hero-section {
  padding: clamp(60px, 10vw, 100px) 0 clamp(80px, 12vw, 120px);
  text-align: center;
  position: relative;
  overflow: visible;
}

.benefits-section {
  padding: clamp(60px, 8vw, 80px) 0 clamp(80px, 12vw, 120px);
  background: transparent;
}

.cta-section {
  padding: clamp(60px, 10vw, 100px) 0 clamp(80px, 12vw, 120px);
  background: transparent;
  overflow: visible;
}

.assistance-section {
  padding: clamp(40px, 6vw, 60px) 0;
  background: transparent;
}

/* ========== CONTENTS SELECTOR ========== */
.contents-toggle {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  font-family: 'Manrope', sans-serif;
}

.contents-toggle:hover {
  background: rgba(255, 107, 53, 0.1);
}

.contents-toggle:hover h2 {
  color: var(--color-cta-primary-light);
}

.contents-toggle h2 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
}

.contents-toggle i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  color: var(--color-cta-primary);
}

.contents-dropdown {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
}

.contents-dropdown.active {
  max-height: 500px;
}

.contents-list {
  list-style: none;
  padding: 0 1.5rem 1.5rem;
  margin: 0;
}

.contents-list li {
  margin-bottom: 0.8rem;
}

.contents-list a {
  color: #e0e0e0;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  display: block;
  padding: 0.5rem 0;
  border-radius: 8px;
  padding-left: 1rem;
  position: relative;
}

.contents-list a:hover {
  background: rgba(255, 193, 7, 0.1);
  color: #ffc107;
  transform: translateX(5px);
}

.contents-list a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: linear-gradient(135deg, #ffc107, #ffeb3b);
  transition: height 0.3s ease;
}

.contents-list a:hover::before {
  height: 20px;
}

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

/* Tablet Styles */
@media (max-width: 1024px) and (min-width: 769px) {
  .suppliers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .container {
    padding: 0 24px;
  }
  
  .hero-section {
    padding: 80px 0 100px;
  }
  
  .benefits-section {
    padding: 60px 0 80px;
  }
  
  .cta-section {
    padding: 80px 0 100px;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }
  
  /* Disable background animation on mobile for performance */
  body {
    animation: none !important;
    background: linear-gradient(-45deg, #36454F, #708090, #1a1a1a, #36454F) !important;
  }
  
  /* Make CTA buttons full-width on mobile */
  .cta-button {
    width: 100% !important;
    justify-content: center !important;
    margin: 0.5rem 0 !important;
  }
  
  /* Enhance sticky button for mobile: larger, full-width, stronger pulse */
  .sticky-button-js {
    padding: 20px !important;
    font-size: 1.2rem !important;
    animation: pulse 2s ease-in-out infinite !important;
  }
  
  /* FAQ Mobile Styles */
  .faq-section {
    padding: 60px 0 80px;
  }
  
  .faq-container {
    margin-top: 2rem;
  }
  
  .faq-question {
    padding: 1.25rem;
    font-size: 1rem;
  }
  
  .faq-answer p {
    padding: 0 1.25rem 1.25rem;
    font-size: 0.95rem;
  }
  
  /* Suppliers Grid Mobile */
  .suppliers-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 100vw !important;
    overflow-x: hidden !important;
    padding: 0 16px !important;
  }
  
  .supplier-card {
    margin: 0 auto;
    max-width: 100%;
  }
  
  .supplier-header {
    padding: 1.5rem 1.5rem 1rem;
  }
  
  .supplier-content {
    padding: 1rem 1.5rem;
  }
  
  .supplier-footer {
    padding: 1rem 1.5rem 1.5rem;
  }
  
  .supplier-icon {
    width: 70px;
    height: 70px;
  }
  
  .supplier-icon i {
    font-size: 1.8rem;
  }
  
  .supplier-header h3 {
    font-size: 1.3rem;
  }
  
  .supplier-content p {
    font-size: 0.95rem;
  }
  
  .feature-tag {
    font-size: 0.75rem;
    padding: 0.2rem 0.6rem;
  }
  
  .supplier-button {
    padding: 10px 20px;
    font-size: 0.95rem;
  }

  /* Benefits Grid Mobile */
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 100vw !important;
    overflow-x: hidden !important;
    padding: 0 16px !important;
  }
  
  .benefit-item {
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 2rem 1.5rem !important;
    min-height: 320px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    flex-direction: column !important;
    text-align: center !important;
    gap: 1.5rem !important;
  }
  
  .benefit-content {
    align-items: center !important;
    text-align: center !important;
    justify-content: center !important;
  }
  
  .benefit-content h3 {
    font-size: 1.4rem !important;
    text-align: center !important;
    margin-bottom: 1rem !important;
  }
  
  .benefit-content p {
    font-size: 1rem !important;
    text-align: center !important;
    margin-bottom: 1rem !important;
    line-height: 1.6 !important;
  }
  
  .benefit-icon {
    width: 70px;
    height: 70px;
  }
  
  .benefit-icon i {
    font-size: 1.8rem;
  }
  
  body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
  }
  
  * {
    box-sizing: border-box !important;
  }
  
  /* Mobile navbar adjustments */
  .navbar-container {
    padding: 0 16px;
  }
  
  .navbar-top {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
    height: 60px;
  }
  
  .navbar-logo {
    flex: 0 0 auto;
    order: 1;
  }
  
  .navbar-logo .logo-image {
    height: 40px;
    width: 40px;
    padding: 6px;
  }
  
  .navbar-title {
    flex: 1;
    text-align: center;
    order: 2;
    position: static;
    transform: none;
    margin: 0;
  }
  
  .navbar-title .logo-text {
    font-size: 1rem;
    font-weight: 600;
  }
  
  .navbar-phone-desktop {
    display: none;
  }
  
  .mobile-menu-button {
    flex: 0 0 auto;
    order: 3;
    margin-left: 0;
    width: 28px;
    height: 20px;
  }
  
  .navbar-bottom {
    display: none;
  }
  
  .navbar-menu {
    display: none;
  }
  
  .navbar {
    padding: 12px 0;
  }
  
  /* Extra small screens */
  @media (max-width: 480px) {
    .navbar-container {
      padding: 0 12px;
    }
    
    .navbar-title .logo-text {
      font-size: 0.9rem;
    }
    
    .navbar-logo .logo-image {
      height: 35px;
      width: 35px;
      padding: 4px;
    }
    
    .mobile-menu-button {
      width: 24px;
      height: 18px;
    }
  }
  
  /* Page Header Mobile */
  .page-header {
    padding: 2rem 1.5rem;
    margin: 1rem 0;
  }
  
  .page-title {
    font-size: 2rem;
    line-height: 1.3;
  }
  
  .page-subtitle {
    font-size: 1.1rem;
  }
  
  .last-update {
    font-size: 0.9rem;
  }
  
  .note-box {
    padding: 1rem;
    flex-direction: column;
    text-align: center;
  }
  
  .note-box i {
    margin-top: 0;
    margin-bottom: 0.5rem;
  }
  
  .breadcrumb {
    padding: 0.8rem 1rem;
    flex-wrap: wrap;
  }
  
  .breadcrumb li {
    font-size: 0.8rem;
  }
  
  .hero-section {
    padding: 40px 0;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .footer {
    padding: 40px 0 30px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
    margin-bottom: 2rem;
  }
  
  .hero-description {
    font-size: 1.25rem;
    margin-bottom: 3rem;
  }
  
  .cta-button {
    padding: 20px 32px;
    font-size: 1.125rem;
  }
  
  .benefit-item {
    padding: 28px 20px !important;
    min-height: 350px !important;
    gap: 20px !important;
  }
  
  .benefit-content h3 {
    font-size: 1.4rem !important;
    margin-bottom: 14px !important;
  }
  
  .benefit-content p {
    font-size: 1rem !important;
    margin-bottom: 16px !important;
    line-height: 1.5 !important;
  }
  
  .benefit-content .cta-button {
    padding: 12px 20px !important;
    font-size: 0.95rem !important;
    margin-top: 8px !important;
  }
}

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

.hero-content {
  animation: fadeInUp 0.8s ease-out;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.cta-button:focus,
.navbar-cta:focus {
  outline: 2px solid #ffc107;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .hero-section {
    background: white;
    padding: 40px 0;
  }
  
  .cta-button {
    background: #3b82f6;
    color: white;
  }
  
  .benefit-item {
    box-shadow: none;
    border: 1px solid #e2e8f0;
  }
}

/* ========== FORM STYLES ========== */
.contact-form-section {
  padding: 80px 0;
  background: transparent;
}

.contact-form-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 40px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-form-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.form-label .optional {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  font-size: 0.85rem;
}

.form-input,
.form-input:focus {
  width: 100%;
  padding: 14px 18px;
  font-size: 1rem;
  font-family: 'Manrope', sans-serif;
  color: #1A1A2E;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.form-input:focus {
  outline: none;
  border-color: var(--color-cta-primary);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
}

.form-input::placeholder {
  color: rgba(26, 26, 46, 0.5);
}

.form-checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.5rem;
}

.form-checkbox-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.form-checkbox-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 107, 53, 0.3);
}

.form-checkbox-item input[type="checkbox"] {
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--color-cta-primary);
}

.form-checkbox-item label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.5;
  cursor: pointer;
  flex: 1;
}

.form-checkbox-item label a {
  color: var(--color-cta-primary-light);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.form-checkbox-item label a:hover {
  color: var(--color-cta-primary);
}

.form-submit-button {
  width: 100%;
  padding: 18px 32px;
  font-size: 1.125rem;
  font-weight: 700;
  font-family: 'Manrope', sans-serif;
  color: #ffffff;
  background: var(--color-cta-gradient);
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-cta);
  animation: button-pulse 2s ease-in-out infinite;
  position: relative;
  overflow: hidden;
  margin-top: 0.5rem;
}

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

.form-submit-button:hover::before {
  left: 100%;
}

.form-submit-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-cta-hover);
  background: var(--color-cta-gradient-hover);
}

.form-submit-button:active {
  transform: translateY(0);
}

.form-submit-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  animation: none;
}

.form-error {
  color: #ff6b6b;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: none;
}

.form-error.show {
  display: block;
}

.form-success {
  display: none;
  padding: 20px;
  background: rgba(0, 208, 132, 0.2);
  border: 1px solid rgba(0, 208, 132, 0.4);
  border-radius: var(--radius-md);
  color: #ffffff;
  text-align: center;
  font-size: 1rem;
  margin-top: 1rem;
}

.form-success.show {
  display: block;
}

@media (max-width: 768px) {
  .contact-form-section {
    padding: 60px 0;
  }
  
  .contact-form-container {
    padding: 30px 20px;
    margin: 0 20px;
  }
  
  .contact-form-title {
    font-size: 1.75rem;
  }
  
  .contact-form-subtitle {
    font-size: 1rem;
  }
  
  .form-submit-button {
    padding: 16px 24px;
    font-size: 1rem;
  }
}

/* ========== PRIVACY MODAL STYLES ========== */
.privacy-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.privacy-modal.active {
  display: flex;
  opacity: 1;
}

.privacy-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
}

.privacy-modal-content {
  position: relative;
  z-index: 10001;
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  margin: auto;
  background: rgba(26, 26, 46, 0.98);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.privacy-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.privacy-modal-header h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.privacy-modal-close {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.privacy-modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(90deg);
}

.privacy-modal-body {
  padding: 32px;
  overflow-y: auto;
  flex: 1;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
}

.privacy-modal-body::-webkit-scrollbar {
  width: 8px;
}

.privacy-modal-body::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}

.privacy-modal-body::-webkit-scrollbar-thumb {
  background: rgba(255, 107, 53, 0.5);
  border-radius: 4px;
}

.privacy-modal-body::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 107, 53, 0.7);
}

.privacy-modal-body p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.privacy-modal-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-top: 2rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(255, 107, 53, 0.3);
}

.privacy-modal-body h3:first-of-type {
  margin-top: 0;
}

.privacy-modal-body ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.privacy-modal-body ul li {
  margin-bottom: 0.5rem;
  list-style-type: disc;
}

.privacy-modal-body a {
  color: var(--color-cta-primary-light);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.privacy-modal-body a:hover {
  color: var(--color-cta-primary);
}

.privacy-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.privacy-link {
  color: var(--color-cta-primary-light) !important;
  text-decoration: underline !important;
  cursor: pointer;
  transition: color 0.3s ease;
}

.privacy-link:hover {
  color: var(--color-cta-primary) !important;
}

@media (max-width: 768px) {
  .privacy-modal-content {
    width: 95%;
    max-height: 95vh;
  }

  .privacy-modal-header {
    padding: 20px;
  }

  .privacy-modal-header h2 {
    font-size: 1.5rem;
  }

  .privacy-modal-body {
    padding: 24px 20px;
  }

  .privacy-modal-body h3 {
    font-size: 1.125rem;
  }
}

/* ========== PRIVACY PAGE STYLES ========== */
.privacy-page-section {
  padding: var(--spacing-xl) 0;
  min-height: 60vh;
}

.privacy-content {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(26, 26, 46, 0.8);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.privacy-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: var(--spacing-lg);
  text-align: center;
}

.privacy-text {
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
  font-size: 1rem;
}

.privacy-text p {
  margin-bottom: var(--spacing-md);
}

.privacy-text h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-top: var(--spacing-xl);
  margin-bottom: var(--spacing-md);
  padding-bottom: var(--spacing-sm);
  border-bottom: 2px solid rgba(255, 107, 53, 0.3);
}

.privacy-text h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-sm);
}

.privacy-text ul {
  margin: var(--spacing-md) 0;
  padding-left: var(--spacing-lg);
}

.privacy-text li {
  margin-bottom: var(--spacing-sm);
  color: rgba(255, 255, 255, 0.9);
}

.privacy-text a {
  color: var(--color-cta-primary-light);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.privacy-text a:hover {
  color: var(--color-cta-primary);
}

.privacy-text strong {
  color: #ffffff;
  font-weight: 600;
}

@media (max-width: 768px) {
  .privacy-page-section {
    padding: var(--spacing-lg) 0;
  }

  .privacy-content {
    padding: var(--spacing-lg);
    margin: 0 var(--spacing-sm);
  }

  .privacy-title {
    font-size: 2rem;
  }

  .privacy-text h2 {
    font-size: 1.25rem;
  }

  .privacy-text h3 {
    font-size: 1.125rem;
  }
}

/* ========== COOKIE CONSENT BANNER ========== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 10000;
  padding: 1.5rem;
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cookie-banner-text h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1A1A2E;
  margin: 0 0 0.75rem 0;
}

.cookie-banner-text p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333;
  margin: 0;
}

.cookie-banner-text p strong {
  font-weight: 600;
  color: #1A1A2E;
}

.cookie-policy-link {
  color: var(--color-energy-primary);
  text-decoration: none;
  font-weight: 600;
}

.cookie-policy-link:hover {
  text-decoration: underline;
  color: var(--color-energy-secondary);
}

.cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.cookie-btn {
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  font-family: inherit;
}

.cookie-btn-primary {
  background: var(--color-energy-primary);
  color: #ffffff;
  border-color: var(--color-energy-primary);
}

.cookie-btn-primary:hover {
  background: var(--color-energy-secondary);
  border-color: var(--color-energy-secondary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 208, 132, 0.3);
}

.cookie-btn-outline {
  background: #ffffff;
  color: var(--color-energy-primary);
  border-color: var(--color-energy-primary);
}

.cookie-btn-outline:hover {
  background: var(--color-energy-primary);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 208, 132, 0.2);
}

/* ========== COOKIE PREFERENCES MODAL ========== */
.cookie-preferences-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.cookie-preferences-modal.active {
  display: flex;
}

.cookie-preferences-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.cookie-preferences-content {
  position: relative;
  background: #ffffff;
  border-radius: var(--radius-lg);
  max-width: 700px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.cookie-preferences-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}

.cookie-preferences-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1A1A2E;
  margin: 0;
}

.cookie-preferences-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--color-trust-primary);
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 1.25rem;
}

.cookie-preferences-close:hover {
  background: var(--color-trust-secondary);
  transform: rotate(90deg);
}

.cookie-preferences-body {
  padding: 1.5rem;
  overflow-y: auto;
  flex: 1;
}

.cookie-preferences-body p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333;
  margin: 0 0 1.5rem 0;
}

.cookie-category {
  padding: 1.25rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.cookie-category:last-of-type {
  border-bottom: none;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.cookie-category-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}

.cookie-category-info h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1A1A2E;
  margin: 0;
}

.cookie-status-always {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-energy-primary);
  background: rgba(0, 208, 132, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-sm);
}

.cookie-category-description {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

/* Cookie Toggle Switch */
.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
  cursor: pointer;
}

.cookie-toggle-input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle-slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.3s;
  border-radius: 26px;
}

.cookie-toggle-slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

.cookie-toggle-input:checked + .cookie-toggle-slider {
  background-color: var(--color-energy-primary);
}

.cookie-toggle-input:checked + .cookie-toggle-slider:before {
  transform: translateX(24px);
}

.cookie-toggle-input:focus + .cookie-toggle-slider {
  box-shadow: 0 0 1px var(--color-energy-primary);
}

.cookie-preferences-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
  flex-wrap: wrap;
}

.cookie-preferences-actions .cookie-btn {
  flex: 1;
  min-width: 140px;
}

.cookie-preferences-actions .cookie-btn-primary {
  flex: 2;
}

/* Responsive */
@media (max-width: 768px) {
  .cookie-banner-content {
    gap: 1rem;
  }
  
  .cookie-banner-text h3 {
    font-size: 1.125rem;
  }
  
  .cookie-banner-text p {
    font-size: 0.875rem;
  }
  
  .cookie-banner-buttons {
    flex-direction: column;
  }
  
  .cookie-banner-buttons .cookie-btn {
    width: 100%;
  }
  
  .cookie-preferences-content {
    max-height: 95vh;
  }
  
  .cookie-preferences-header {
    padding: 1rem;
  }
  
  .cookie-preferences-header h2 {
    font-size: 1.25rem;
  }
  
  .cookie-preferences-body {
    padding: 1rem;
  }
  
  .cookie-preferences-actions {
    flex-direction: column;
  }
  
  .cookie-preferences-actions .cookie-btn {
    width: 100%;
    flex: 1;
  }
  
  .cookie-category-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  
  .cookie-category-info {
    width: 100%;
  }
}
