/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  /* Colors */
  --bg-light: #F7FAFC;
  --primary: #3F51B5;
  --primary-light: #5C6BC0;
  --primary-dark: #303F9F;
  --secondary: #00BFA6;
  --secondary-light: #26C6DA;
  --secondary-dark: #00897B;
  --accent: #FF7A59;
  --accent-light: #FF8A65;
  --accent-dark: #F4511E;
  --text-primary: #1A202C;
  --text-secondary: #4A5568;
  --text-light: #718096;
  --text-white: #FFFFFF;
  --border: #E2E8F0;
  --border-light: #F7FAFC;
  --success: #48BB78;
  --warning: #ED8936;
  --error: #F56565;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
  --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
  
  /* Spacing (8px system) */
  --space-xs: 0.5rem;   /* 8px */
  --space-sm: 1rem;     /* 16px */
  --space-md: 1.5rem;   /* 24px */
  --space-lg: 2rem;     /* 32px */
  --space-xl: 3rem;     /* 48px */
  --space-2xl: 4rem;    /* 64px */
  --space-3xl: 6rem;    /* 96px */
  
  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  --font-size-xs: 0.75rem;   /* 12px */
  --font-size-sm: 0.875rem;  /* 14px */
  --font-size-base: 1rem;    /* 16px */
  --font-size-lg: 1.125rem;  /* 18px */
  --font-size-xl: 1.25rem;   /* 20px */
  --font-size-2xl: 1.5rem;   /* 24px */
  --font-size-3xl: 1.875rem; /* 30px */
  --font-size-4xl: 2.25rem;  /* 36px */
  --font-size-5xl: 3rem;     /* 48px */
  --font-size-6xl: 3.75rem;  /* 60px */
  
  /* Line heights */
  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;
  
  /* Font weights */
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  
  /* Border radius */
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-normal: 300ms ease;
  --transition-slow: 500ms ease;
  
  /* Z-index */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;
}

/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: var(--line-height-normal);
  color: var(--text-primary);
  background-color: var(--bg-light);
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-sm);
}

h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.875rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.875rem); }
h5 { font-size: var(--font-size-xl); }
h6 { font-size: var(--font-size-lg); }

p {
  margin-bottom: var(--space-sm);
  color: var(--text-secondary);
  line-height: var(--line-height-relaxed);
}

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

a:hover,
a:focus {
  color: var(--primary-dark);
}

/* ===== UTILITIES ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

@media (min-width: 768px) {
  .container {
    padding: 0 var(--space-lg);
  }
}

.section {
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}

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

.section__title {
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.section__description {
  font-size: var(--font-size-lg);
  max-width: 600px;
  margin: 0 auto;
}

/* Diagonal Background */
.diagonal-bg {
  background: var(--gradient-glass);
  position: relative;
}

.diagonal-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(15deg, rgba(63, 81, 181, 0.03) 0%, rgba(0, 191, 166, 0.03) 100%);
  clip-path: polygon(0 0, 100% 10%, 100% 90%, 0 100%);
  z-index: -1;
}

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-lg);
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  white-space: nowrap;
  min-height: 48px;
}

.btn--primary {
  background: var(--gradient-primary);
  color: var(--text-white);
  box-shadow: var(--shadow-md);
}

.btn--primary:hover,
.btn--primary:focus {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
  color: var(--text-white);
}

.btn--secondary {
  background: var(--gradient-secondary);
  color: var(--text-white);
  box-shadow: var(--shadow-md);
}

.btn--secondary:hover,
.btn--secondary:focus {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
  color: var(--text-white);
}

.btn--accent {
  background: var(--gradient-accent);
  color: var(--text-white);
  box-shadow: var(--shadow-md);
}

.btn--accent:hover,
.btn--accent:focus {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
  color: var(--text-white);
}

.btn--outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn--outline:hover,
.btn--outline:focus {
  background: var(--primary);
  color: var(--text-white);
}

/* ===== HEADER & NAVIGATION ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(247, 250, 252, 0.95);
  backdrop-filter: blur(10px);
  z-index: var(--z-sticky);
  transition: all var(--transition-normal);
}

.header.scrolled {
  background: rgba(247, 250, 252, 0.98);
  box-shadow: var(--shadow-md);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.nav__logo-img {
  height: 140px;
  width: 200px;
}

.nav__logo-text {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--primary);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav__list {
  display: flex;
  list-style: none;
  gap: var(--space-lg);
}

.nav__link {
  font-weight: var(--font-weight-medium);
  color: var(--text-primary);
  transition: color var(--transition-fast);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition-fast);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

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

.nav__legal-link {
  font-size: var(--font-size-sm);
  color: var(--text-light);
}

.nav__legal-link.active {
  color: var(--primary);
}

/* Mobile Menu Toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: var(--space-xs);
}

.nav__toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-primary);
  transition: all var(--transition-fast);
  border-radius: 2px;
}

/* Mobile Menu */
@media (max-width: 768px) {
  .nav__toggle {
    display: flex;
  }
  
  .nav__menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(247, 250, 252, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: flex-start;
    padding: var(--space-lg);
    transition: left var(--transition-normal);
  }
  
  .nav__menu.show {
    left: 0;
  }
  
  .nav__list {
    flex-direction: column;
    width: 100%;
    margin-bottom: var(--space-lg);
  }
  
  .nav__link {
    display: block;
    padding: var(--space-sm) 0;
    font-size: var(--font-size-lg);
    border-bottom: 1px solid var(--border);
  }
  
  .nav__legal {
    flex-direction: column;
    gap: var(--space-sm);
  }
  
  /* Hamburger Animation */
  .nav__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  
  .nav__toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .nav__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--bg-light) 0%, rgba(63, 81, 181, 0.05) 100%);
  padding-top: 80px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: var(--gradient-glass);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 1;
}

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

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

.hero__title {
  margin-bottom: var(--space-lg);
  color: var(--text-primary);
}

.hero__title-accent {
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__description {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-xl);
  max-width: 500px;
}

.hero__buttons {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

.hero__benefits {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.hero__benefit {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-md);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-weight: var(--font-weight-medium);
  color: var(--text-primary);
}

.hero__benefit-icon {
  width: 20px;
  height: 20px;
  color: var(--secondary);
}

.hero__image {
  position: relative;
  animation: fadeInRight 0.8s ease-out 0.3s both;
}

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

.hero__scroll {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 24px;
  color: var(--primary);
  animation: bounce 2s infinite;
  cursor: pointer;
}

/* Mobile Hero */
@media (max-width: 768px) {
  .hero__container {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    text-align: center;
  }
  
  .hero::before {
    display: none;
  }
  
  .hero__buttons {
    justify-content: center;
  }
  
  .hero__benefits {
    justify-content: center;
  }
}

/* ===== SERVICES SECTION ===== */
.services {
  background: var(--bg-light);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-lg);
}

@media (max-width: 425px) {
  .services__grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.3);
  overflow: hidden;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-md);
}

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

.service-card__image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.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.05);
}

.service-card__content {
  padding: var(--space-lg);
}

.service-card__title {
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

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

/* ===== PACKAGES SECTION ===== */
.packages__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.package-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-md);
}

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

.package-card--featured {
  border: 2px solid var(--primary);
  transform: scale(1.05);
}

.package-card--featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.package-card__badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary);
  color: var(--text-white);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
}

.package-card__badge--featured {
  background: var(--primary);
}

.package-card__title {
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

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

.package-card__price-amount {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  color: var(--primary);
}

.package-card__price-period {
  font-size: var(--font-size-base);
  color: var(--text-secondary);
}

.package-card__features {
  list-style: none;
  margin-bottom: var(--space-lg);
  text-align: left;
}

.package-card__features li {
  padding: var(--space-xs) 0;
  position: relative;
  padding-left: var(--space-lg);
}

.package-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: var(--font-weight-bold);
}

.packages__note {
  text-align: center;
  padding: var(--space-lg);
  background: rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.packages__note p {
  margin-bottom: var(--space-md);
  font-style: italic;
  color: var(--text-secondary);
}

/* ===== COVERAGE SECTION ===== */
.coverage__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.coverage__cities {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: var(--space-sm);
  margin: var(--space-lg) 0;
}

.coverage__city {
  padding: var(--space-sm) var(--space-md);
  background: var(--gradient-glass);
  border-radius: var(--radius-lg);
  text-align: center;
  font-weight: var(--font-weight-medium);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all var(--transition-fast);
}

.coverage__city:hover {
  background: var(--gradient-secondary);
  color: var(--text-white);
  transform: translateY(-2px);
}

.coverage__note {
  font-style: italic;
  color: var(--text-light);
}

.coverage__map img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .coverage__content {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

/* ===== PROCESS SECTION ===== */
.process__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
  position: relative;
}

.process__step {
  position: relative;
  padding: var(--space-lg);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-align: center;
  transition: all var(--transition-normal);
}

.process__step:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.process__step-number {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  color: var(--text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  margin: 0 auto var(--space-md);
  box-shadow: var(--shadow-lg);
}

.process__step-title {
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.process__step-description {
  font-size: var(--font-size-sm);
}

/* ===== RESULTS SECTION ===== */
.results__gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: var(--space-xl);
}

@media (max-width: 480px) {
  .results__gallery {
    grid-template-columns: 1fr;
  }
}

/* Comparison Slider */
.comparison-slider {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.comparison-slider__container {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.comparison-slider__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.comparison-slider__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comparison-slider__after {
  clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
}

.comparison-slider__label {
  position: absolute;
  top: var(--space-sm);
  background: rgba(0, 0, 0, 0.7);
  color: var(--text-white);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
}

.comparison-slider__before .comparison-slider__label {
  left: var(--space-sm);
}

.comparison-slider__after .comparison-slider__label {
  right: var(--space-sm);
}

.comparison-slider__handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: var(--text-white);
  cursor: ew-resize;
  z-index: 3;
  transform: translateX(-50%);
}

.comparison-slider__handle-line {
  width: 100%;
  height: 100%;
  background: var(--text-white);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.comparison-slider__handle-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: var(--text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}

.comparison-slider__handle-circle svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

.comparison-slider__input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 4;
}

/* ===== SAFETY SECTION ===== */
.safety__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

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

.safety__feature {
  margin-bottom: var(--space-lg);
  padding: var(--space-lg);
  background: rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.safety__feature h3 {
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
  font-size: var(--font-size-lg);
}

.safety__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.safety__image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
  .safety__content {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

/* ===== STATISTICS ===== */
.statistics {
  background: var(--gradient-primary);
  color: var(--text-white);
}

.statistics__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
  text-align: center;
}

.statistic__number {
  font-size: var(--font-size-5xl);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-sm);
  background: var(--gradient-accent);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.statistic__label {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-medium);
  opacity: 0.9;
}

/* ===== TESTIMONIALS ===== */
.testimonials__slider {
  position: relative;
  overflow: hidden;
  padding: 0 60px;
}

.testimonials__track {
  display: flex;
  transition: transform var(--transition-normal);
}

.testimonial {
  min-width: 100%;
  padding: var(--space-xl);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.testimonial__text {
  font-size: var(--font-size-lg);
  font-style: italic;
  margin-bottom: var(--space-lg);
  color: var(--text-primary);
}

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

.testimonial__author strong {
  color: var(--text-primary);
}

.testimonial__author span {
  color: var(--text-secondary);
}

.testimonial__stars {
  color: var(--accent);
  font-size: var(--font-size-lg);
}

.testimonials__controls {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.testimonials__btn {
  width: 48px;
  height: 48px;
  border: none;
  background: var(--primary);
  color: var(--text-white);
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonials__btn:hover {
  background: var(--primary-dark);
  transform: scale(1.1);
}

.testimonials__btn svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 768px) {
  .testimonials__slider {
    padding: 0 20px;
  }
}

/* ===== FAQ ===== */
.faq__list {
  max-width: 800px;
  margin: 0 auto;
}

.faq__item {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-sm);
  border: 1px solid rgba(255, 255, 255, 0.3);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq__item:hover {
  box-shadow: var(--shadow-md);
}

.faq__question {
  width: 100%;
  padding: var(--space-lg);
  background: none;
  border: none;
  text-align: left;
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq__icon {
  width: 20px;
  height: 20px;
  color: var(--primary);
  transition: transform var(--transition-fast);
}

.faq__item.active .faq__icon {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
}

.faq__item.active .faq__answer {
  max-height: 200px;
}

.faq__answer p {
  padding: 0 var(--space-lg) var(--space-lg);
  margin: 0;
}

/* ===== CONTACT SECTION ===== */
.contact__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
}

.contact__info {
  padding: var(--space-xl);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: var(--shadow-md);
}

.contact__info h3 {
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
}

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

.contact__icon {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.contact__item strong {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--text-primary);
}

.contact__item a {
  font-size: var(--font-size-lg);
}

.contact__schedule {
  margin: var(--space-lg) 0;
  padding: var(--space-md);
  background: rgba(63, 81, 181, 0.05);
  border-radius: var(--radius-md);
}

.contact__schedule h4 {
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.contact__schedule p {
  margin-bottom: var(--space-xs);
}

.contact__quick-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* Form Styles */
.contact__form {
  padding: var(--space-xl);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: var(--shadow-md);
}

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

.form__label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: var(--font-weight-medium);
  color: var(--text-primary);
}

.form__input {
  width: 100%;
  padding: var(--space-md);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  font-size: var(--font-size-base);
  transition: all var(--transition-fast);
  background: rgba(255, 255, 255, 0.9);
}

.form__input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(63, 81, 181, 0.1);
}

.form__input.error {
  border-color: var(--error);
}

.form__textarea {
  resize: vertical;
  min-height: 100px;
}

.form__group--checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  cursor: pointer;
  line-height: var(--line-height-normal);
}

.form__checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.form__checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  flex-shrink: 0;
  margin-top: 2px;
}

.form__checkbox input:checked + .form__checkmark {
  background: var(--primary);
  border-color: var(--primary);
}

.form__checkbox input:checked + .form__checkmark::after {
  content: '✓';
  color: var(--text-white);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
}

.form__error {
  display: block;
  color: var(--error);
  font-size: var(--font-size-sm);
  margin-top: var(--space-xs);
  min-height: 20px;
}

.form__submit {
  width: 100%;
  margin-top: var(--space-md);
}

.form__success {
  display: none;
  padding: var(--space-lg);
  background: var(--success);
  color: var(--text-white);
  border-radius: var(--radius-lg);
  text-align: center;
  margin-top: var(--space-md);
}

.form__success.show {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  animation: slideInUp 0.5s ease-out;
}

.form__success svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 768px) {
  .contact__content {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

/* ===== FOOTER ===== */
.footer {
  background: var(--text-primary);
  color: var(--text-white);
  padding: var(--space-2xl) 0 var(--space-lg);
}

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

.footer__logo {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: var(--space-md);
}

.footer__description {
  color: rgba(255, 255, 255, 0.8);
  max-width: 300px;
}

.footer__links h4,
.footer__contact h4 {
  margin-bottom: var(--space-md);
  color: var(--text-white);
}

.footer__links ul {
  list-style: none;
}

.footer__links li {
  margin-bottom: var(--space-xs);
}

.footer__links a {
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition-fast);
}

.footer__links a:hover {
  color: var(--text-white);
}

.footer__contact a {
  color: var(--text-white);
  font-weight: var(--font-weight-medium);
}

.footer__social {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.footer__social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.footer__social-link:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.footer__social-link svg {
  width: 20px;
  height: 20px;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-lg);
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
  .footer__content {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    text-align: center;
  }
}

/* ===== MODAL ===== */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: var(--z-modal);
}

.modal.show {
  display: block;
  animation: fadeIn 0.3s ease-out;
}

.modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.modal__content {
  position: relative;
  max-width: 600px;
  margin: 10vh auto;
  background: var(--text-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  animation: slideInUp 0.3s ease-out;
  max-height: 80vh;
  overflow-y: auto;
}

.modal__close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
  z-index: 1;
}

.modal__close:hover {
  background: rgba(0, 0, 0, 0.1);
}

.modal__close svg {
  width: 20px;
  height: 20px;
}

.modal__body {
  padding: var(--space-2xl);
}

/* ===== LEGAL PAGES ===== */
.legal-page {
  padding: calc(80px + var(--space-xl)) 0 var(--space-2xl);
}

.legal-page__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
  padding-bottom: var(--space-lg);
  border-bottom: 2px solid var(--border);
}

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

.legal-page__updated {
  color: var(--text-light);
  font-style: italic;
}

.legal-page__content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-section {
  margin-bottom: var(--space-2xl);
  padding: var(--space-xl);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: var(--shadow-sm);
}

.legal-section h2 {
  color: var(--text-primary);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--border-light);
}

.legal-section h3 {
  color: var(--text-primary);
  margin: var(--space-lg) 0 var(--space-sm);
}

.legal-section ul {
  margin-left: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.legal-section li {
  margin-bottom: var(--space-xs);
  line-height: var(--line-height-relaxed);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes fadeInRight {
  from { 
    opacity: 0; 
    transform: translateX(30px); 
  }
  to { 
    opacity: 1; 
    transform: translateX(0); 
  }
}

@keyframes slideInUp {
  from { 
    transform: translateY(100%);
    opacity: 0;
  }
  to { 
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transform: translate3d(-50%, 0, 0);
  }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    transform: translate3d(-50%, -10px, 0);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    transform: translate3d(-50%, -5px, 0);
  }
  90% {
    transform: translate3d(-50%, -2px, 0);
  }
}

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

/* Mobile First Approach */
@media (max-width: 320px) {
  .container {
    padding: 0 var(--space-sm);
  }
  
  .hero__buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn {
    padding: var(--space-md) var(--space-sm);
  }
}

@media (min-width: 375px) {
  .services__grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 768px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .packages__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

@media (min-width: 1440px) {
  .container {
    max-width: 1400px;
  }
  
  .section {
    padding: calc(var(--space-3xl) * 1.5) 0;
  }
}

/* High Resolution Displays */
@media (min-width: 1920px) {
  .container {
    max-width: 1600px;
  }
}

/* Ensure no horizontal scroll */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

*, *::before, *::after {
  max-width: 100%;
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Focus styles */
button:focus,
a:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Skip to content link for screen readers */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--text-primary);
  color: var(--text-white);
  padding: var(--space-sm);
  text-decoration: none;
  z-index: 100;
}

.skip-link:focus {
  top: 6px;
}

/* ===== PRINT STYLES ===== */
@media print {
  .header,
  .hero__scroll,
  .testimonials__controls,
  .nav__toggle,
  .modal {
    display: none !important;
  }
  
  .hero {
    padding-top: 0;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
    color: black;
    background: white;
  }
}