/* ===============================================
   VESSIRINFA REINIGUNGSSERVICE - TECH FUTURISTIC DESIGN
   CSS Reset & Base Styles
   =============================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #E0E7FF;
  background: linear-gradient(135deg, #0A0E27 0%, #1A1F3A 50%, #0F1729 100%);
  background-attachment: fixed;
  overflow-x: hidden;
}

/* ===============================================
   TYPOGRAPHY - FUTURISTIC TECH STYLE
   =============================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #00D9FF;
  text-shadow: 0 0 10px rgba(0, 217, 255, 0.3);
  margin-bottom: 24px;
}

h1 {
  font-size: 48px;
  letter-spacing: -1px;
}

h2 {
  font-size: 32px;
  letter-spacing: -0.5px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
  color: #7DD3FC;
}

p {
  font-size: 16px;
  margin-bottom: 16px;
  color: #CBD5E1;
}

a {
  color: #00D9FF;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #7DD3FC;
  text-shadow: 0 0 8px rgba(0, 217, 255, 0.5);
}

ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}

li {
  margin-bottom: 8px;
  color: #CBD5E1;
}

/* ===============================================
   CONTAINER & LAYOUT
   =============================================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  position: relative;
}

/* ===============================================
   HEADER - FUTURISTIC NAVIGATION
   =============================================== */

header {
  background: linear-gradient(180deg, rgba(10, 14, 39, 0.95) 0%, rgba(15, 23, 41, 0.9) 100%);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid rgba(0, 217, 255, 0.3);
  box-shadow: 0 4px 20px rgba(0, 217, 255, 0.15);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

header img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.5));
  transition: transform 0.3s ease;
}

header img:hover {
  transform: scale(1.05);
}

.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #CBD5E1;
  padding: 8px 16px;
  border: 1px solid transparent;
  border-radius: 4px;
  transition: all 0.3s ease;
  position: relative;
}

.main-nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00D9FF, #7DD3FC);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #00D9FF;
  border-color: rgba(0, 217, 255, 0.3);
  background: rgba(0, 217, 255, 0.05);
}

.main-nav a:hover::before {
  width: 80%;
}

/* ===============================================
   MOBILE MENU - FUTURISTIC SLIDE-IN
   =============================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #00D9FF, #0EA5E9);
  color: #0A0E27;
  border: none;
  border-radius: 8px;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 217, 255, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(0, 217, 255, 0.6);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background: linear-gradient(180deg, #0A0E27 0%, #1A1F3A 100%);
  border-left: 2px solid rgba(0, 217, 255, 0.5);
  box-shadow: -4px 0 30px rgba(0, 217, 255, 0.2);
  z-index: 2001;
  padding: 80px 30px 30px;
  overflow-y: auto;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  color: #00D9FF;
  border: 2px solid #00D9FF;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #00D9FF;
  color: #0A0E27;
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #CBD5E1;
  padding: 16px 20px;
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: 8px;
  background: rgba(0, 217, 255, 0.05);
  transition: all 0.3s ease;
  min-height: 50px;
  display: flex;
  align-items: center;
}

.mobile-nav a:hover {
  background: rgba(0, 217, 255, 0.15);
  border-color: #00D9FF;
  transform: translateX(8px);
  box-shadow: 0 4px 15px rgba(0, 217, 255, 0.3);
}

/* ===============================================
   BUTTONS - FUTURISTIC DESIGN
   =============================================== */

.btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 16px 32px;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, #00D9FF, #0EA5E9);
  color: #0A0E27;
  box-shadow: 0 4px 20px rgba(0, 217, 255, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(0, 217, 255, 0.6);
}

.btn-secondary {
  background: transparent;
  color: #00D9FF;
  border-color: #00D9FF;
}

.btn-secondary:hover {
  background: rgba(0, 217, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 217, 255, 0.3);
}

/* ===============================================
   HERO SECTION - FUTURISTIC LANDING
   =============================================== */

.hero {
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.8) 0%, rgba(26, 31, 58, 0.6) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(0, 217, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(14, 165, 233, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #00D9FF, #7DD3FC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 20px;
  color: #94A3B8;
  margin-bottom: 40px;
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.trust-indicators {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.trust-indicators span {
  font-size: 14px;
  color: #64748B;
  padding: 8px 16px;
  border: 1px solid rgba(0, 217, 255, 0.3);
  border-radius: 20px;
  background: rgba(0, 217, 255, 0.05);
}

/* ===============================================
   PAGE HERO
   =============================================== */

.page-hero {
  padding: 60px 20px;
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.9) 0%, rgba(26, 31, 58, 0.8) 100%);
  border-bottom: 2px solid rgba(0, 217, 255, 0.3);
  text-align: center;
  margin-bottom: 40px;
}

.page-hero h1 {
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  color: #94A3B8;
}

/* ===============================================
   CARDS & GRIDS - FLEXBOX LAYOUTS
   =============================================== */

.services-grid,
.benefits-grid,
.reasons-grid,
.categories,
.methods-grid,
.packages-grid,
.factors-grid,
.cert-list,
.stats-grid,
.trust-stats,
.client-categories,
.payment-methods,
.discount-cards,
.addon-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.service-card,
.benefit-card,
.service-detail-card,
.testimonial-card,
.package-card,
.method-card,
.factor,
.cert-item,
.stat-item,
.client-category,
.payment-method,
.discount-card,
.addon-item {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: linear-gradient(135deg, rgba(26, 31, 58, 0.6) 0%, rgba(15, 23, 41, 0.8) 100%);
  border: 1px solid rgba(0, 217, 255, 0.3);
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before,
.benefit-card::before,
.service-detail-card::before,
.package-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #00D9FF, #0EA5E9);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover::before,
.benefit-card:hover::before,
.service-detail-card:hover::before,
.package-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover,
.benefit-card:hover,
.service-detail-card:hover,
.package-card:hover,
.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 217, 255, 0.3);
  border-color: #00D9FF;
}

.service-card img,
.benefit-card img,
.cert-item img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.5));
}

.service-card h3,
.benefit-card h3,
.service-detail-card h2 {
  color: #00D9FF;
  margin-bottom: 16px;
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: #7DD3FC;
  margin: 20px 0;
  text-shadow: 0 0 10px rgba(125, 211, 252, 0.3);
}

.package-card.popular {
  border-color: #F59E0B;
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.3);
}

.badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, #F59E0B, #D97706);
  color: #0A0E27;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===============================================
   TESTIMONIALS - HIGH CONTRAST
   =============================================== */

.testimonial-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(226, 232, 240, 0.95) 100%);
  border: 2px solid rgba(0, 217, 255, 0.3);
  color: #1E293B;
  padding: 32px;
  flex: 1 1 calc(50% - 24px);
}

.testimonial-card p {
  color: #334155;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.testimonial-card .author {
  color: #0F172A;
  font-weight: 700;
  margin-bottom: 8px;
}

.testimonial-card .service {
  color: #64748B;
  font-size: 14px;
  font-style: italic;
}

.rating {
  color: #F59E0B;
  font-size: 20px;
  margin-bottom: 16px;
  text-shadow: 0 2px 4px rgba(245, 158, 11, 0.3);
}

/* ===============================================
   PROCESS STEPS
   =============================================== */

.steps,
.next-steps {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
}

.step {
  flex: 1 1 300px;
  text-align: center;
  padding: 32px;
  background: linear-gradient(135deg, rgba(26, 31, 58, 0.6) 0%, rgba(15, 23, 41, 0.8) 100%);
  border: 1px solid rgba(0, 217, 255, 0.3);
  border-radius: 12px;
  position: relative;
}

.step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  background: linear-gradient(135deg, #00D9FF, #0EA5E9);
  color: #0A0E27;
  font-size: 28px;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(0, 217, 255, 0.4);
}

/* ===============================================
   TIMELINE
   =============================================== */

.timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px 0;
}

.milestone {
  flex: 1 1 calc(20% - 24px);
  min-width: 150px;
  text-align: center;
  padding: 24px;
  background: linear-gradient(135deg, rgba(26, 31, 58, 0.6) 0%, rgba(15, 23, 41, 0.8) 100%);
  border: 1px solid rgba(0, 217, 255, 0.3);
  border-radius: 12px;
}

.year {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: #00D9FF;
  margin-bottom: 12px;
  text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

/* ===============================================
   TABLES
   =============================================== */

table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  background: linear-gradient(135deg, rgba(26, 31, 58, 0.6) 0%, rgba(15, 23, 41, 0.8) 100%);
  border: 1px solid rgba(0, 217, 255, 0.3);
  border-radius: 12px;
  overflow: hidden;
}

thead {
  background: linear-gradient(135deg, #00D9FF, #0EA5E9);
}

thead th {
  color: #0A0E27;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 16px;
  text-align: left;
}

tbody tr {
  border-bottom: 1px solid rgba(0, 217, 255, 0.2);
  transition: background 0.3s ease;
}

tbody tr:hover {
  background: rgba(0, 217, 255, 0.1);
}

tbody td {
  padding: 16px;
  color: #CBD5E1;
}

/* ===============================================
   FORMS
   =============================================== */

.contact-form-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, rgba(26, 31, 58, 0.6) 0%, rgba(15, 23, 41, 0.8) 100%);
  border: 1px solid rgba(0, 217, 255, 0.3);
  border-radius: 12px;
  margin: 40px 0;
}

.form-info {
  text-align: center;
  margin-top: 32px;
}

.form-info p {
  color: #94A3B8;
  margin-bottom: 12px;
}

/* ===============================================
   CONTACT METHODS
   =============================================== */

.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px 0;
}

.contact-method,
.method-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  text-align: center;
  padding: 32px;
  background: linear-gradient(135deg, rgba(26, 31, 58, 0.6) 0%, rgba(15, 23, 41, 0.8) 100%);
  border: 1px solid rgba(0, 217, 255, 0.3);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.contact-method:hover,
.method-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 217, 255, 0.3);
  border-color: #00D9FF;
}

.contact-method img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.5));
}

.contact-value {
  font-size: 18px;
  font-weight: 700;
  color: #00D9FF;
  margin: 16px 0;
}

.contact-value a {
  color: #00D9FF;
}

.contact-value a:hover {
  color: #7DD3FC;
}

/* ===============================================
   CTA SECTIONS
   =============================================== */

.cta-banner,
.cta-section {
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(14, 165, 233, 0.05) 100%);
  border: 2px solid rgba(0, 217, 255, 0.3);
  border-radius: 12px;
  margin: 60px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before,
.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 217, 255, 0.1), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.cta-banner h2,
.cta-section h2 {
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-banner p,
.cta-section p {
  margin-bottom: 32px;
  font-size: 18px;
  position: relative;
  z-index: 1;
}

.validity,
.guarantee {
  font-size: 14px;
  color: #64748B;
  margin-top: 16px;
  font-style: italic;
}

/* ===============================================
   THANK YOU PAGE
   =============================================== */

.thank-you-hero {
  padding: 80px 20px;
  text-align: center;
}

.success-icon {
  width: 100px;
  height: 100px;
  line-height: 100px;
  background: linear-gradient(135deg, #00D9FF, #0EA5E9);
  color: #0A0E27;
  font-size: 60px;
  border-radius: 50%;
  margin: 0 auto 32px;
  box-shadow: 0 8px 30px rgba(0, 217, 255, 0.5);
  animation: successPulse 2s infinite;
}

@keyframes successPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.confirmation {
  font-size: 20px;
  color: #7DD3FC;
  font-weight: 600;
  margin-bottom: 32px;
}

.contact-reminder {
  font-size: 16px;
  color: #94A3B8;
  margin-top: 32px;
}

/* ===============================================
   LEGAL CONTENT
   =============================================== */

.legal-content {
  padding: 40px 20px;
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal-content p,
.legal-content ul {
  color: #CBD5E1;
  line-height: 1.8;
}

.legal-content strong {
  color: #00D9FF;
}

/* ===============================================
   FOOTER - FUTURISTIC DESIGN
   =============================================== */

footer {
  background: linear-gradient(180deg, rgba(10, 14, 39, 0.95) 0%, rgba(15, 23, 41, 1) 100%);
  border-top: 2px solid rgba(0, 217, 255, 0.3);
  padding: 60px 20px 20px;
  margin-top: 80px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
  justify-content: space-between;
}

.footer-section {
  flex: 1 1 250px;
}

.footer-section h4 {
  color: #00D9FF;
  margin-bottom: 16px;
  font-size: 18px;
}

.footer-section p {
  color: #94A3B8;
  font-size: 14px;
  line-height: 1.8;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  padding: 24px 0;
  border-top: 1px solid rgba(0, 217, 255, 0.2);
  border-bottom: 1px solid rgba(0, 217, 255, 0.2);
  margin-bottom: 24px;
}

.footer-nav a {
  font-size: 14px;
  color: #94A3B8;
  transition: all 0.3s ease;
}

.footer-nav a:hover {
  color: #00D9FF;
}

.copyright {
  text-align: center;
  color: #64748B;
  font-size: 14px;
}

/* ===============================================
   COOKIE CONSENT BANNER
   =============================================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(10, 14, 39, 0.98) 0%, rgba(15, 23, 41, 0.98) 100%);
  backdrop-filter: blur(10px);
  border-top: 2px solid rgba(0, 217, 255, 0.5);
  padding: 24px;
  z-index: 1999;
  box-shadow: 0 -4px 30px rgba(0, 217, 255, 0.2);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1 1 400px;
  color: #CBD5E1;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-buttons button {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookie-accept {
  background: linear-gradient(135deg, #00D9FF, #0EA5E9);
  color: #0A0E27;
}

.cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 217, 255, 0.5);
}

.cookie-reject,
.cookie-settings {
  background: transparent;
  color: #00D9FF;
  border: 1px solid #00D9FF;
}

.cookie-reject:hover,
.cookie-settings:hover {
  background: rgba(0, 217, 255, 0.1);
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 14, 39, 0.9);
  backdrop-filter: blur(5px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: linear-gradient(135deg, rgba(26, 31, 58, 0.95) 0%, rgba(15, 23, 41, 0.95) 100%);
  border: 2px solid rgba(0, 217, 255, 0.5);
  border-radius: 12px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
}

.cookie-modal h2 {
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: rgba(0, 217, 255, 0.05);
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: 8px;
}

.cookie-category h3 {
  margin-bottom: 12px;
  color: #7DD3FC;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}

.cookie-toggle input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* ===============================================
   RESPONSIVE DESIGN - MOBILE FIRST
   =============================================== */

@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  
  /* Hide desktop nav, show mobile menu button */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hero */
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 16px;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
  
  /* Cards */
  .service-card,
  .benefit-card,
  .service-detail-card,
  .testimonial-card,
  .package-card,
  .method-card,
  .contact-method {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Steps */
  .steps,
  .next-steps {
    flex-direction: column;
  }
  
  .step {
    flex: 1 1 100%;
  }
  
  /* Timeline */
  .timeline {
    flex-direction: column;
  }
  
  .milestone {
    flex: 1 1 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    flex: 1 1 100%;
    text-align: center;
  }
  
  .footer-nav {
    flex-direction: column;
    gap: 12px;
  }
  
  /* Tables */
  table {
    font-size: 14px;
  }
  
  thead th,
  tbody td {
    padding: 12px 8px;
  }
  
  /* Trust indicators */
  .trust-indicators {
    flex-direction: column;
    gap: 12px;
  }
  
  .trust-indicators span {
    width: 100%;
    text-align: center;
  }
  
  /* Cookie banner */
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-text {
    flex: 1 1 100%;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .service-card,
  .benefit-card,
  .service-detail-card,
  .package-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .testimonial-card {
    flex: 1 1 100%;
  }
}

/* ===============================================
   ANIMATIONS & TRANSITIONS
   =============================================== */

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

.section {
  animation: fadeIn 0.6s ease-out;
}

/* Smooth scrolling for all browsers */
@media (prefers-reduced-motion: no-preference) {
  * {
    scroll-behavior: smooth;
  }
}

/* Focus states for accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: 2px solid #00D9FF;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal {
    display: none !important;
  }
  
  body {
    background: white;
    color: black;
  }
  
  a {
    color: black;
    text-decoration: underline;
  }
}