/*
 * FRANCE POLYMERES - Vibrant & Energetic Theme Stylesheet
 * Theme: Modern Business with Vibrant Color Palette
 * Color Scheme: Sunny Yellows, Sky Blues, Coral Reds
 * Typography: Playful, Rounded (Montserrat + Lato)
 * Design Style: Welcoming, Optimistic, Full of Life
 */

/* ============================================
   COLOR SCHEME DOCUMENTATION
   ============================================ */

/*
 * PRIMARY COLORS - Vibrant & Energetic Palette
 * - Sunny Yellow: #FFD700 (warm, energetic, optimistic)
 * - Sky Blue: #87CEEB (fresh, trustworthy, open)
 * - Coral Red: #FF6B6B (passionate, dynamic, bold)
 * - Mint Green: #98FF98 (refreshing, natural, balanced)
 * - Lavender: #E6E6FA (calm, sophisticated, creative)
 *
 * NEUTRAL COLORS
 * - White: #FFFFFF
 * - Light Gray: #F8F9FA
 * - Medium Gray: #6C757D
 * - Dark Gray: #343A40
 * - Black: #212529
 *
 * SEMANTIC COLORS
 * - Success: #28A745
 * - Warning: #FFC107
 * - Error: #DC3545
 * - Info: #17A2B8
 *
 * GRADIENTS
 * - Primary Gradient: linear-gradient(135deg, #FFD700, #87CEEB)
 * - Secondary Gradient: linear-gradient(135deg, #FF6B6B, #E6E6FA)
 * - Dark Gradient: linear-gradient(180deg, #0a0a0a, #1a1a2e, #16213e)
 */

/* ============================================
   CSS VARIABLES
   ============================================ */

:root {
  /* Primary Colors - Vibrant Palette */
  --color-sunny-yellow: #FFD700;
  --color-sky-blue: #87CEEB;
  --color-coral-red: #FF6B6B;
  --color-mint-green: #98FF98;
  --color-lavender: #E6E6FA;

  /* Alternative Blues & Greens */
  --color-ocean-blue: #4A90E2;
  --color-teal: #20B2AA;
  --color-aqua: #00CED1;

  /* Neutral Colors */
  --color-white: #FFFFFF;
  --color-light-gray: #F8F9FA;
  --color-medium-gray: #6C757D;
  --color-dark-gray: #343A40;
  --color-black: #212529;

  /* Semantic Colors */
  --color-success: #28A745;
  --color-warning: #FFC107;
  --color-error: #DC3545;
  --color-info: #17A2B8;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #FFD700 0%, #87CEEB 100%);
  --gradient-secondary: linear-gradient(135deg, #FF6B6B 0%, #E6E6FA 100%);
  --gradient-dark: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  --gradient-glow: linear-gradient(135deg, rgba(255, 215, 0, 0.3), rgba(135, 206, 235, 0.3));

  /* Header Specific - Dark Mode Glassmorphism */
  --header-bg-start: rgba(10, 10, 10, 0.85);
  --header-bg-mid: rgba(26, 26, 46, 0.75);
  --header-bg-end: rgba(22, 33, 62, 0.65);
  --glass-blur: 12px;
  --neon-cyan: #00FFFF;
  --neon-magenta: #FF00FF;
  --neon-glow-cyan: 0 0 10px rgba(0, 255, 255, 0.5), 0 0 20px rgba(0, 255, 255, 0.3);
  --neon-glow-magenta: 0 0 10px rgba(255, 0, 255, 0.5), 0 0 20px rgba(255, 0, 255, 0.3);

  /* Typography */
  --font-primary: 'Montserrat', system-ui, -apple-system, sans-serif;
  --font-secondary: 'Lato', 'Segoe UI', system-ui, sans-serif;
  --font-mono: 'Courier New', 'Fira Code', monospace;

  /* Font Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.18);
  --shadow-glow: 0 0 20px rgba(135, 206, 235, 0.4);
  --shadow-glow-warm: 0 0 20px rgba(255, 215, 0, 0.4);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;
  --transition-bounce: 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);

  /* Z-Index */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;
}

/* ============================================
   CSS RESET & BASE STYLES
   ============================================ */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: var(--font-secondary);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-dark-gray);
  background-color: var(--color-light-gray);
  overflow-x: hidden;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-dark-gray);
  margin-bottom: var(--space-md);
}

h1 {
  font-size: clamp(2rem, 5vw, var(--text-5xl));
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.5rem, 4vw, var(--text-4xl));
  font-weight: 700;
}

h3 {
  font-size: clamp(1.25rem, 3vw, var(--text-3xl));
  font-weight: 600;
}

h4 {
  font-size: clamp(1.125rem, 2.5vw, var(--text-2xl));
  font-weight: 600;
}

p {
  margin-bottom: var(--space-md);
}

a {
  color: var(--color-ocean-blue);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-coral-red);
}

/* ============================================
   DARK MODE GLASSMORPHISM HEADER
   ============================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-fixed);
  background: var(--gradient-dark);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  transition: all var(--transition-base);
}

.header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(0, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
  pointer-events: none;
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

.header__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--space-md) var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.header__logo {
  flex-shrink: 0;
}

.header__logo img {
  width: 464px;
  height: 139px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
  transition: filter var(--transition-base);
}

.header__logo img:hover {
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
}

.header__logo-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  list-style: none;
}

.header__nav-item {
  position: relative;
}

.header__nav-link {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-md);
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.header__nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.2), transparent);
  transition: left var(--transition-slow);
}

.header__nav-link:hover::before {
  left: 100%;
}

.header__nav-link:hover {
  color: var(--neon-cyan);
  border-color: var(--neon-cyan);
  box-shadow: var(--neon-glow-cyan);
  transform: translateY(-2px);
}

.header__nav-link .material-symbols-rounded {
  font-size: var(--text-lg);
}

.header__cta {
  padding: var(--space-sm) var(--space-lg);
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--neon-magenta);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, rgba(255, 0, 255, 0.1), rgba(0, 255, 255, 0.1));
  border: 2px solid var(--neon-magenta);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-base);
  animation: ctaGlow 2s ease-in-out infinite;
}

@keyframes ctaGlow {
  0%, 100% { box-shadow: var(--neon-glow-magenta); }
  50% { box-shadow: 0 0 30px rgba(255, 0, 255, 0.7), 0 0 40px rgba(0, 255, 255, 0.3); }
}

.header__cta:hover {
  background: linear-gradient(135deg, rgba(255, 0, 255, 0.2), rgba(0, 255, 255, 0.2));
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 0 25px rgba(255, 0, 255, 0.8), 0 0 35px rgba(0, 255, 255, 0.4);
}

.header__menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 40px;
  height: 40px;
  padding: var(--space-xs);
  background: transparent;
  border: 2px solid var(--neon-cyan);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
}

.header__menu-toggle:hover {
  border-color: var(--neon-magenta);
  box-shadow: var(--neon-glow-magenta);
}

.header__menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--neon-cyan);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
}

.header__menu-toggle:hover span {
  background: var(--neon-magenta);
}

.header__menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.header__menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.header__menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation */
@media (max-width: 1024px) {
  .header__nav {
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--gradient-dark);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--space-lg);
    gap: var(--space-md);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
  }

  .header__nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .header__nav-list {
    flex-direction: column;
    width: 100%;
    gap: var(--space-sm);
  }

  .header__nav-link {
    width: 100%;
    justify-content: center;
    padding: var(--space-md);
  }

  .header__cta {
    width: 100%;
  }

  .header__menu-toggle {
    display: flex;
  }

  .header__logo img {
    width: 200px;
    height: auto;
  }
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4xl) var(--space-lg);
  overflow: hidden;
}

.hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero__background img,
.hero__background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(3px);
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(135, 206, 235, 0.15) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, var(--text-5xl));
  font-weight: 900;
  color: var(--color-white);
  margin-bottom: var(--space-lg);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  letter-spacing: -0.03em;
}

.hero__subtitle {
  font-size: clamp(1.125rem, 2.5vw, var(--text-xl));
  color: var(--color-white);
  margin-bottom: var(--space-xl);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  line-height: 1.8;
}

.hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
  align-items: center;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

.btn:active {
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--gradient-primary);
  color: var(--color-dark-gray);
}

.btn--primary:hover {
  background: linear-gradient(135deg, #FFE44D, #9BD4EE);
  box-shadow: var(--shadow-glow-warm);
}

.btn--secondary {
  background: var(--gradient-secondary);
  color: var(--color-dark-gray);
}

.btn--secondary:hover {
  background: linear-gradient(135deg, #FF8080, #F0F0FF);
}

.btn--outline {
  background: transparent;
  color: var(--color-white);
  border: 3px solid var(--color-white);
}

.btn--outline:hover {
  background: var(--color-white);
  color: var(--color-ocean-blue);
}

.btn--large {
  padding: var(--space-lg) var(--space-2xl);
  font-size: var(--text-lg);
}

.btn--small {
  padding: var(--space-sm) var(--space-md);
  font-size: var(--text-sm);
}

/* ============================================
   SECTIONS GENERAL
   ============================================ */

.section {
  padding: var(--space-4xl) var(--space-lg);
  position: relative;
  overflow: hidden;
}

.section--yellow {
  background-color: var(--color-sunny-yellow);
}

.section--blue {
  background-color: var(--color-sky-blue);
}

.section--coral {
  background-color: var(--color-coral-red);
}

.section--mint {
  background-color: var(--color-mint-green);
}

.section--lavender {
  background-color: var(--color-lavender);
}

.section--white {
  background-color: var(--color-white);
}

.section--gradient-1 {
  background: var(--gradient-primary);
}

.section--gradient-2 {
  background: var(--gradient-secondary);
}

.section__container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
  animation: fadeInUp 0.8s ease-out;
}

.section__title {
  font-size: clamp(2rem, 5vw, var(--text-4xl));
  font-weight: 800;
  margin-bottom: var(--space-md);
  position: relative;
  display: inline-block;
}

.section__title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
}

.section__subtitle {
  font-size: clamp(1rem, 2vw, var(--text-lg));
  color: var(--color-medium-gray);
  max-width: 700px;
  margin: 0 auto;
}

/* ============================================
   CARDS
   ============================================ */

.card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-base);
  animation: fadeInUp 0.8s ease-out;
  animation-fill-mode: both;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.card__icon {
  width: 80px;
  height: 80px;
  margin-bottom: var(--space-lg);
  background: var(--gradient-primary);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-3xl);
  color: var(--color-dark-gray);
}

.card__title {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--color-dark-gray);
}

.card__content {
  color: var(--color-medium-gray);
  line-height: 1.8;
}

/* ============================================
   GRID LAYOUTS
   ============================================ */

.grid {
  display: grid;
  gap: var(--space-xl);
}

.grid--2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid--4 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

@media (min-width: 768px) {
  .grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features {
  counter-reset: feature-counter;
}

.feature-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease-out;
  animation-fill-mode: both;
}

.feature-card::before {
  counter-increment: feature-counter;
  content: counter(feature-counter);
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  font-size: var(--text-5xl);
  font-weight: 900;
  color: rgba(135, 206, 235, 0.2);
  line-height: 1;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }

.feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-xl);
}

.feature-card__icon {
  width: 70px;
  height: 70px;
  margin-bottom: var(--space-lg);
  background: var(--gradient-primary);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card__icon .material-symbols-rounded {
  font-size: var(--text-3xl);
  color: var(--color-dark-gray);
}

.feature-card__title {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--color-dark-gray);
}

.feature-card__content {
  color: var(--color-medium-gray);
  line-height: 1.8;
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.service-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-base);
  animation: fadeInUp 0.8s ease-out;
  animation-fill-mode: both;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.service-card__image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.service-card:hover .service-card__image img {
  transform: scale(1.1);
}

.service-card__content {
  padding: var(--space-xl);
}

.service-card__title {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--color-dark-gray);
}

.service-card__description {
  color: var(--color-medium-gray);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--color-ocean-blue);
  font-weight: 600;
  transition: all var(--transition-fast);
}

.service-card__link:hover {
  color: var(--color-coral-red);
  gap: var(--space-sm);
}

/* ============================================
   STATS SECTION
   ============================================ */

.stats {
  background: var(--gradient-dark);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(135, 206, 235, 0.1) 0%, transparent 50%);
  animation: float 10s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, 20px); }
}

.stats__container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
  animation-fill-mode: both;
}

.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.2s; }
.stat-item:nth-child(3) { animation-delay: 0.3s; }
.stat-item:nth-child(4) { animation-delay: 0.4s; }

.stat-item__number {
  font-size: clamp(3rem, 6vw, var(--text-5xl));
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-sm);
}

.stat-item__label {
  font-size: var(--text-lg);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about__content {
  display: grid;
  gap: var(--space-2xl);
  align-items: center;
}

@media (min-width: 992px) {
  .about__content {
    grid-template-columns: 1fr 1fr;
  }
}

.about__text {
  animation: fadeInUp 0.8s ease-out;
}

.about__text p {
  font-size: var(--text-lg);
  line-height: 1.9;
  color: var(--color-medium-gray);
  margin-bottom: var(--space-lg);
}

.about__image {
  position: relative;
  animation: fadeInUp 1s ease-out;
}

.about__image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.about__image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  background: var(--gradient-primary);
  border-radius: var(--radius-xl);
  z-index: -1;
  opacity: 0.3;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact {
  position: relative;
}

.contact__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.contact__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(3px);
}

.contact__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.85);
  z-index: 1;
}

.contact__container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.contact__content {
  display: grid;
  gap: var(--space-2xl);
}

@media (min-width: 992px) {
  .contact__content {
    grid-template-columns: 1fr 1fr;
  }
}

.contact__info {
  animation: fadeInUp 0.8s ease-out;
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  padding: var(--space-lg);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.contact-info__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.contact-info__icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info__icon .material-symbols-rounded {
  font-size: var(--text-2xl);
  color: var(--color-dark-gray);
}

.contact-info__content h4 {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-xs);
  color: var(--color-dark-gray);
}

.contact-info__content p {
  color: var(--color-medium-gray);
  margin: 0;
}

.contact__form {
  animation: fadeInUp 1s ease-out;
}

.contact-form {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-xl);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--color-dark-gray);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: var(--space-md);
  font-family: var(--font-secondary);
  font-size: var(--text-base);
  color: var(--color-dark-gray);
  background: var(--color-light-gray);
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-sky-blue);
  background: var(--color-white);
  box-shadow: 0 0 0 4px rgba(135, 206, 235, 0.2);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

/* ============================================
   MAP SECTION
   ============================================ */

.map {
  padding: 0;
}

.map__container {
  max-width: 1200px;
  margin: 0 auto;
}

.map__iframe {
  width: 100%;
  height: 450px;
  border: none;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--gradient-dark);
  color: var(--color-white);
  padding: var(--space-3xl) var(--space-lg) var(--space-lg);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(0, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.footer__content {
  display: grid;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

@media (min-width: 768px) {
  .footer__content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .footer__content {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer__column {
  animation: fadeInUp 0.8s ease-out;
  animation-fill-mode: both;
}

.footer__column:nth-child(1) { animation-delay: 0.1s; }
.footer__column:nth-child(2) { animation-delay: 0.2s; }
.footer__column:nth-child(3) { animation-delay: 0.3s; }
.footer__column:nth-child(4) { animation-delay: 0.4s; }

.footer__logo {
  margin-bottom: var(--space-md);
}

.footer__logo img {
  max-width: 200px;
  height: auto;
}

.footer__title {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--color-white);
}

.footer__text {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.footer__links {
  list-style: none;
}

.footer__links li {
  margin-bottom: var(--space-sm);
}

.footer__links a {
  color: rgba(255, 255, 255, 0.8);
  transition: all var(--transition-fast);
}

.footer__links a:hover {
  color: var(--neon-cyan);
  padding-left: var(--space-sm);
}

.footer__bottom {
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}

.footer__bottom-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.footer__bottom-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--text-sm);
  transition: color var(--transition-fast);
}

.footer__bottom-links a:hover {
  color: var(--neon-cyan);
}

/* ============================================
   BACKGROUND SECTIONS WITH IMAGES
   ============================================ */

.bg-image-section {
  position: relative;
  padding: var(--space-4xl) var(--space-lg);
  overflow: hidden;
}

.bg-image-section__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.bg-image-section__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(3px);
}

.bg-image-section__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.bg-image-section__overlay--white {
  background: rgba(255, 255, 255, 0.9);
}

.bg-image-section__overlay--light {
  background: rgba(255, 255, 255, 0.85);
}

.bg-image-section__content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

/* ============================================
   LEGAL PAGES STYLES
   ============================================ */

.legal {
  background: var(--color-white);
}

.legal__container {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--space-4xl) var(--space-lg);
}

.legal__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.legal__title {
  font-size: clamp(2rem, 5vw, var(--text-4xl));
  font-weight: 800;
  margin-bottom: var(--space-md);
  color: var(--color-dark-gray);
}

.legal__last-update {
  color: var(--color-medium-gray);
  font-size: var(--text-sm);
}

.legal__content {
  animation: fadeInUp 0.8s ease-out;
}

.legal__section {
  margin-bottom: var(--space-2xl);
}

.legal__section-title {
  font-size: var(--text-2xl);
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--color-ocean-blue);
  padding-bottom: var(--space-sm);
  border-bottom: 3px solid var(--color-sunny-yellow);
}

.legal__section-content p {
  font-size: var(--text-base);
  line-height: 1.9;
  color: var(--color-medium-gray);
  margin-bottom: var(--space-md);
}

.legal__section-content ul,
.legal__section-content ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-xl);
}

.legal__section-content li {
  margin-bottom: var(--space-sm);
  color: var(--color-medium-gray);
  line-height: 1.8;
}

.legal__section-content a {
  color: var(--color-ocean-blue);
  font-weight: 600;
  text-decoration: underline;
}

.legal__section-content a:hover {
  color: var(--color-coral-red);
}

.legal__highlight {
  background: var(--color-light-gray);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-coral-red);
  margin: var(--space-lg) 0;
}

.legal__highlight p:last-child {
  margin-bottom: 0;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

:focus-visible {
  outline: 3px solid var(--color-ocean-blue);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-dark-gray);
  color: var(--color-white);
  padding: var(--space-sm) var(--space-md);
  z-index: 9999;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: 0;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: var(--space-sm); }
.mt-2 { margin-top: var(--space-md); }
.mt-3 { margin-top: var(--space-lg); }
.mt-4 { margin-top: var(--space-xl); }

.mb-1 { margin-bottom: var(--space-sm); }
.mb-2 { margin-bottom: var(--space-md); }
.mb-3 { margin-bottom: var(--space-lg); }
.mb-4 { margin-bottom: var(--space-xl); }

.py-1 { padding-top: var(--space-sm); padding-bottom: var(--space-sm); }
.py-2 { padding-top: var(--space-md); padding-bottom: var(--space-md); }
.py-3 { padding-top: var(--space-lg); padding-bottom: var(--space-lg); }
.py-4 { padding-top: var(--space-xl); padding-bottom: var(--space-xl); }

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */

@media (max-width: 768px) {
  :root {
    --text-5xl: 2.5rem;
    --text-4xl: 2rem;
    --text-3xl: 1.75rem;
  }

  .section {
    padding: var(--space-2xl) var(--space-md);
  }

  .hero {
    padding: var(--space-3xl) var(--space-md) var(--space-2xl);
  }

  .header__logo img {
    width: 180px;
    height: auto;
  }
}

@media (max-width: 480px) {
  .btn {
    width: 100%;
    justify-content: center;
  }

  .hero__cta-group {
    flex-direction: column;
  }
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
  .header,
  .footer,
  .btn,
  .hero__cta-group {
    display: none;
  }

  .section {
    page-break-inside: avoid;
  }

  body {
    background: white;
    color: black;
  }
}
