/* =============================================
   AUTO VERKAUFEN OBERHAUSEN – MAIN STYLESHEET
   Premium Blue Design System
   ============================================= */

/* 1. CSS Variables */
:root {
  --primary: #1a3a6b;
  --primary-light: #2563eb;
  --primary-lighter: #3b82f6;
  --primary-dark: #0f172a;
  --accent: #0ea5e9;
  --gold: #f59e0b;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --white: #ffffff;
  --off-white: #f8fafc;
  --light-bg: #f0f9ff;
  --text-dark: #1e293b;
  --text-medium: #475569;
  --text-light: #94a3b8;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
  --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.25);
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --container: 1200px;
  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

/* 2. Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
input, select, textarea { font-family: inherit; }

/* 3. Typography */
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; color: var(--primary-dark); }
h1 { font-size: clamp(1.8rem, 4vw, 3rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p { margin-bottom: 1rem; color: var(--text-medium); }
p:last-child { margin-bottom: 0; }
.lead { font-size: 1.125rem; color: var(--text-dark); font-weight: 500; line-height: 1.7; }

/* Text utilities */
.text-center { text-align: center; }
.text-gradient {
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(37,99,235,0.1), rgba(14,165,233,0.1));
  color: var(--primary-light);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid rgba(37,99,235,0.2);
  margin-bottom: 1rem;
}
.section-title { margin-bottom: 1rem; }
.section-subtitle { font-size: 1.05rem; color: var(--text-medium); max-width: 600px; }
.section-header { margin-bottom: 3rem; }
.section-header.text-center .section-subtitle { margin: 0 auto; }

/* 4. Layout */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { max-width: 800px; }
.section-padding { padding: 5rem 0; }
.bg-light { background: var(--light-bg); }
.mt-2 { margin-top: 0.75rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 2rem; }
.mb-2 { margin-bottom: 0.75rem; }
.mr-2 { margin-right: 0.75rem; }

/* 5. Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.925rem;
  transition: all var(--transition);
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  line-height: 1;
}
.btn-sm { padding: 0.5rem 1.2rem; font-size: 0.85rem; }
.btn-lg { padding: 0.9rem 2.2rem; font-size: 1rem; }
.btn-xl { padding: 1.1rem 2.5rem; font-size: 1.05rem; border-radius: var(--radius-lg); }
.btn-full { width: 100%; justify-content: center; }

.btn-primary { background: linear-gradient(135deg, var(--primary-light), var(--primary)); color: white; box-shadow: 0 4px 15px rgba(37,99,235,0.3); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(37,99,235,0.4); background: linear-gradient(135deg, var(--primary-lighter), var(--primary-light)); }
.btn-primary:active { transform: translateY(0); }

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

.btn-white { background: white; color: var(--primary); box-shadow: 0 4px 15px rgba(0,0,0,0.15); }
.btn-white:hover { background: var(--off-white); transform: translateY(-2px); }

.btn-outline-white { background: transparent; color: white; border-color: rgba(255,255,255,0.7); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: white; }

.btn-ghost { background: transparent; color: var(--text-medium); border-color: var(--border); }
.btn-ghost:hover { background: var(--off-white); }

.btn-whatsapp { background: #25d366; color: white; box-shadow: 0 4px 15px rgba(37,211,102,0.3); }
.btn-whatsapp:hover { background: #22c35e; transform: translateY(-2px); }

/* 6. Header & Navigation */
.header-top {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.85);
  padding: 0.4rem 0;
  font-size: 0.8rem;
}
.header-top-inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.header-top-left { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.header-info { display: flex; align-items: center; gap: 0.35rem; }
.header-top-right { display: flex; align-items: center; gap: 1rem; }
.header-phone-top { display: flex; align-items: center; gap: 0.35rem; color: var(--gold); font-weight: 600; transition: opacity var(--transition); }
.header-phone-top:hover { opacity: 0.85; }
.btn-callback-top {
  background: var(--gold);
  color: var(--primary-dark);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.75rem;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-callback-top:hover { background: #e08f00; }

.navbar {
  background: white;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow var(--transition), background var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  gap: 1rem;
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-svg { height: 44px; width: auto; transition: transform var(--transition); }
.nav-logo:hover .logo-svg { transform: scale(1.02); }

.nav-menu { display: flex; align-items: center; gap: 0.25rem; }
.nav-list { display: flex; align-items: center; gap: 0.1rem; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  background: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.nav-link:hover, .nav-item.active .nav-link { color: var(--primary-light); background: var(--light-bg); }
.nav-dropdown-toggle svg { transition: transform var(--transition); }
.nav-item.dropdown-open .nav-dropdown-toggle svg { transform: rotate(180deg); }

.has-dropdown { position: relative; }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-light);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--transition);
  z-index: 200;
  overflow: hidden;
}
.nav-dropdown-wide { min-width: 200px; columns: 2; gap: 0; }
.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }

.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.1rem;
  font-size: 0.875rem;
  color: var(--text-dark);
  transition: background var(--transition);
  border: none;
  width: 100%;
  text-align: left;
  break-inside: avoid;
}
.nav-dropdown-item:hover { background: var(--light-bg); color: var(--primary-light); }
.nav-dropdown-item svg { color: var(--primary-light); flex-shrink: 0; }

.nav-cta { display: flex; align-items: center; gap: 0.75rem; margin-left: 1rem; }
.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius);
  background: var(--light-bg);
  transition: all var(--transition);
}
.nav-phone:hover { background: rgba(37,99,235,0.1); color: var(--primary-light); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
  border-radius: var(--radius-sm);
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text-dark); transition: all var(--transition); border-radius: 2px; }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* 7. Hero */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 40%, var(--primary-light) 100%);
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.hero-bg-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,23,42,0.9) 0%, rgba(26,58,107,0.7) 50%, rgba(37,99,235,0.5) 100%); }
.hero-shapes { position: absolute; inset: 0; }
.hero-shape { position: absolute; border-radius: 50%; }
.hero-shape-1 { width: 600px; height: 600px; background: rgba(37,99,235,0.15); top: -200px; right: -100px; animation: float 8s ease-in-out infinite; }
.hero-shape-2 { width: 400px; height: 400px; background: rgba(14,165,233,0.1); bottom: -100px; left: -50px; animation: float 10s ease-in-out infinite reverse; }
.hero-shape-3 { width: 200px; height: 200px; background: rgba(245,158,11,0.1); top: 40%; left: 30%; animation: float 6s ease-in-out infinite; }

.hero-container { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; padding: 6rem 1.5rem 8rem; width: 100%; max-width: var(--container); margin: 0 auto; }
.hero-content { color: white; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.hero-badge-dot { width: 7px; height: 7px; background: #4ade80; border-radius: 50%; animation: pulse 2s infinite; }

.hero-title { font-size: clamp(2rem, 5vw, 3.75rem); font-weight: 900; color: white; margin-bottom: 1rem; line-height: 1.1; }
.hero-subtitle { font-size: clamp(1rem, 2.5vw, 1.35rem); color: rgba(255,255,255,0.8); margin-bottom: 2rem; font-weight: 400; }

.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-trust { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.hero-trust-item { display: flex; align-items: center; gap: 0.35rem; color: rgba(255,255,255,0.8); font-size: 0.875rem; }
.hero-trust-divider { width: 1px; height: 16px; background: rgba(255,255,255,0.2); }

.hero-car-visual { display: none; }
.hero-car-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-xl);
  padding: 2rem;
  color: white;
}
.hero-car-icon { text-align: center; margin-bottom: 1.5rem; }
.hero-quick-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.quick-stat { text-align: center; }
.quick-stat-num { display: block; font-size: 1.5rem; font-weight: 800; color: white; }
.quick-stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.6); }

.hero-wave { position: absolute; bottom: -1px; left: 0; right: 0; z-index: 3; }
.hero-wave svg { display: block; width: 100%; height: auto; }

/* 8. Stats Bar */
.stats-bar { padding: 2.5rem 0; background: var(--white); box-shadow: var(--shadow); position: relative; z-index: 2; }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--light-bg);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(37,99,235,0.1);
  transition: all var(--transition);
}
.stat-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--primary-light); }
.stat-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}
.stat-number {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}
.stat-number::after { content: '+'; font-size: 1.2rem; }
.stat-number-text::after { content: ''; }
.stat-label { font-size: 0.8rem; color: var(--text-medium); font-weight: 500; margin-top: 0.2rem; }

/* 9. Service Cards */
.services-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.service-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-light), var(--accent));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: rgba(37,99,235,0.2); }
.service-card:hover::before { transform: scaleX(1); }
.service-card-highlight { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: white; border-color: transparent; }
.service-card-highlight .service-card-title, .service-card-highlight .service-card-text { color: white; }
.service-card-highlight .service-card-link { color: var(--gold); }
.service-card-highlight .service-card-icon { background: rgba(255,255,255,0.15); color: white; }

.service-card-icon {
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, rgba(37,99,235,0.1), rgba(14,165,233,0.1));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  margin-bottom: 1.25rem;
  transition: all var(--transition);
}
.service-card:hover .service-card-icon { background: linear-gradient(135deg, var(--primary-light), var(--accent)); color: white; }
.service-card-title { font-size: 1.2rem; margin-bottom: 0.75rem; color: var(--primary-dark); }
.service-card-text { font-size: 0.9rem; color: var(--text-medium); margin-bottom: 1rem; line-height: 1.6; }
.service-card-link { color: var(--primary-light); font-weight: 600; font-size: 0.875rem; transition: gap var(--transition); }
.service-card-link:hover { color: var(--primary); }

/* 10. Process Steps */
.process-grid { display: grid; grid-template-columns: 1fr; gap: 0; position: relative; }
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
}
.process-connector { display: none; }
.process-number {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(37,99,235,0.1);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.process-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin: 0 auto 1.25rem;
  box-shadow: 0 8px 25px rgba(37,99,235,0.3);
}
.process-step h3 { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--primary-dark); }
.process-step p { font-size: 0.9rem; color: var(--text-medium); }

/* 11. Why Section */
.why-section { background: var(--off-white); }
.why-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
.why-features { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-top: 2rem; }
.why-feature { display: flex; gap: 1rem; align-items: flex-start; }
.why-feature-icon { font-size: 1.5rem; flex-shrink: 0; }
.why-feature h4 { font-size: 1rem; margin-bottom: 0.25rem; color: var(--primary-dark); }
.why-feature p { font-size: 0.875rem; color: var(--text-medium); margin: 0; }

.why-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-light);
  max-width: 380px;
  margin: 0 auto;
}
.why-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.badge { padding: 0.25rem 0.75rem; border-radius: var(--radius-full); font-size: 0.75rem; font-weight: 600; }
.badge-green { background: rgba(16,185,129,0.1); color: var(--success); }
.why-rating { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1.5rem; }
.rating-stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; }
.why-card-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-bottom: 1.5rem; text-align: center; padding: 1.25rem 0; border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); }
.why-stat { display: flex; flex-direction: column; }
.why-stat-num { font-size: 1.4rem; font-weight: 800; color: var(--primary); }
.why-stat span:last-child { font-size: 0.75rem; color: var(--text-medium); }

/* 12. Testimonials */
.testimonials-section { background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%); }
.testimonials-section .section-tag { border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.1); }
.testimonials-section .section-title { color: white; }
.testimonials-section .section-subtitle { color: rgba(255,255,255,0.7); }

.testimonials-carousel { position: relative; overflow: hidden; }
.testimonials-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.testimonial-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  padding: 2rem;
  min-width: 300px;
  flex-shrink: 0;
}
.testimonial-rating { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 1rem; }
.testimonial-text { color: rgba(255,255,255,0.9); font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
.testimonial-avatar { width: 40px; height: 40px; background: linear-gradient(135deg, var(--primary-light), var(--accent)); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 1.1rem; flex-shrink: 0; }
.testimonial-name { font-weight: 600; color: white; font-style: normal; display: block; }
.testimonial-location { font-size: 0.8rem; color: rgba(255,255,255,0.6); }
.testimonial-date { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-left: auto; }

.testimonials-nav { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 2rem; }
.testimonial-nav-btn {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  cursor: pointer;
  transition: all var(--transition);
}
.testimonial-nav-btn:hover { background: rgba(255,255,255,0.2); }
.testimonials-dots { display: flex; gap: 0.4rem; }
.testimonials-dots .dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.3); cursor: pointer; transition: all var(--transition); }
.testimonials-dots .dot.active { background: white; width: 20px; border-radius: 4px; }

/* 13. Districts */
.districts-grid { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
.district-chip {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.25rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  color: var(--text-dark);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.district-chip:hover { background: var(--primary-light); color: white; border-color: var(--primary-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.district-chip svg { color: var(--primary-light); }
.district-chip:hover svg { color: white; }

/* 14. FAQ */
.faq-layout { display: grid; grid-template-columns: 1fr; gap: 3rem; }
.faq-header { }
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-list-centered { max-width: 800px; margin: 0 auto; width: 100%; }
.faq-item { background: white; border: 1px solid var(--border-light); border-radius: var(--radius-lg); overflow: hidden; transition: box-shadow var(--transition); }
.faq-item:hover { box-shadow: var(--shadow-md); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary-dark);
  gap: 1rem;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--off-white); }
.faq-question[aria-expanded="true"] { background: var(--light-bg); color: var(--primary-light); }
.faq-icon { flex-shrink: 0; transition: transform var(--transition); }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(180deg); }
.faq-answer { display: none; padding: 0 1.5rem 1.25rem; }
.faq-answer > div { font-size: 0.9rem; color: var(--text-medium); line-height: 1.7; }
.faq-answer.open { display: block; }

/* 15. Blog Cards */
.blog-grid { display: grid; grid-template-columns: 1fr; gap: 1.75rem; }
.blog-card { background: white; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow); transition: all var(--transition); border: 1px solid var(--border-light); }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.blog-card-img { width: 100%; height: 200px; background: var(--light-bg); overflow: hidden; }
.blog-card-img-link { display: block; }
.blog-card-img svg { width: 100%; height: 100%; }
.blog-card-body { padding: 1.5rem; }
.blog-card-tags { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-bottom: 0.5rem; }
.blog-tag { padding: 0.2rem 0.6rem; background: var(--light-bg); color: var(--primary-light); border-radius: var(--radius-full); font-size: 0.75rem; font-weight: 500; }
.blog-card-date { font-size: 0.8rem; color: var(--text-light); display: block; margin-bottom: 0.5rem; }
.blog-card-title { font-size: 1.1rem; margin-bottom: 0.75rem; line-height: 1.3; }
.blog-card-title a { color: var(--primary-dark); }
.blog-card-title a:hover { color: var(--primary-light); }
.blog-card-excerpt { font-size: 0.875rem; color: var(--text-medium); margin-bottom: 1rem; line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.blog-card-link { color: var(--primary-light); font-weight: 600; font-size: 0.875rem; }

/* 16. CTA Section */
.cta-section {
  position: relative;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--primary-light));
  padding: 5rem 0;
  overflow: hidden;
  text-align: center;
}
.cta-bg { position: absolute; inset: 0; overflow: hidden; }
.cta-shapes { }
.cta-shape { position: absolute; border-radius: 50%; opacity: 0.1; }
.cta-shape-1 { width: 500px; height: 500px; background: white; top: -250px; right: -100px; }
.cta-shape-2 { width: 300px; height: 300px; background: white; bottom: -150px; left: -50px; }
.cta-content { position: relative; z-index: 2; }
.cta-title { color: white; font-size: clamp(1.5rem, 4vw, 2.5rem); margin-bottom: 1rem; }
.cta-subtitle { color: rgba(255,255,255,0.8); font-size: 1.05rem; margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* 17. Contact Form */
.contact-form-section { background: var(--off-white); padding: 5rem 0; }
.contact-form-wrapper { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.contact-form-side { }
.contact-benefits { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }
.benefit-item { display: flex; gap: 1rem; align-items: flex-start; }
.benefit-icon { width: 36px; height: 36px; background: linear-gradient(135deg, var(--primary-light), var(--accent)); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; flex-shrink: 0; }
.benefit-item strong { display: block; color: var(--primary-dark); margin-bottom: 0.15rem; }
.benefit-item p { font-size: 0.85rem; color: var(--text-medium); margin: 0; }
.contact-direct-label { font-size: 0.875rem; color: var(--text-medium); margin-bottom: 0.75rem; }

.contact-form-main { }
.vehicle-form { background: white; border-radius: var(--radius-xl); padding: 2rem; box-shadow: var(--shadow-lg); border: 1px solid var(--border-light); }
.form-section-title { font-size: 0.8rem; font-weight: 700; color: var(--primary-light); text-transform: uppercase; letter-spacing: 0.05em; padding-bottom: 0.75rem; margin-bottom: 1.25rem; border-bottom: 2px solid var(--light-bg); margin-top: 1.5rem; }
.form-section-title:first-child { margin-top: 0; }

.form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--text-dark); }
.required { color: var(--danger); }
.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--off-white);
  transition: all var(--transition);
  appearance: none;
}
.form-control:focus { outline: none; border-color: var(--primary-light); background: white; box-shadow: 0 0 0 3px rgba(37,99,235,0.1); }
.form-control::placeholder { color: var(--text-light); }
textarea.form-control { resize: vertical; min-height: 100px; }
select.form-control { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' viewBox='0 0 24 24' stroke='%2394a3b8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 2.5rem; cursor: pointer; }
.form-control-file { padding: 0; border: none; background: transparent; }
.upload-label { display: flex; align-items: center; gap: 0.5rem; cursor: pointer; padding: 0.75rem 1rem; border: 1.5px dashed var(--border); border-radius: var(--radius); color: var(--text-medium); font-weight: 500; transition: all var(--transition); }
.upload-label:hover { border-color: var(--primary-light); color: var(--primary-light); background: var(--light-bg); }
.form-hint { font-size: 0.78rem; color: var(--text-light); }
.form-privacy { padding: 1rem 0; border-top: 1px solid var(--border-light); margin-top: 0.5rem; }
.checkbox-label { display: flex; align-items: flex-start; gap: 0.6rem; cursor: pointer; font-size: 0.85rem; color: var(--text-medium); }
.checkbox-label input { margin-top: 0.1rem; flex-shrink: 0; accent-color: var(--primary-light); width: 16px; height: 16px; }
.checkbox-label a { color: var(--primary-light); text-decoration: underline; }
.form-message { margin-top: 0.75rem; padding: 0.75rem 1rem; border-radius: var(--radius); font-size: 0.875rem; display: none; }
.form-message.success { background: rgba(16,185,129,0.1); color: var(--success); border: 1px solid rgba(16,185,129,0.2); display: block; }
.form-message.error { background: rgba(239,68,68,0.1); color: var(--danger); border: 1px solid rgba(239,68,68,0.2); display: block; }

/* 18. Page Heroes */
.page-hero {
  position: relative;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  padding: 5rem 0 4rem;
  color: white;
  overflow: hidden;
}
.page-hero-blog { padding: 4rem 0; }
.page-hero-legal { padding: 3rem 0; }
.page-hero-bg { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,23,42,0.85), rgba(26,58,107,0.6)); }
.page-hero .container { position: relative; z-index: 2; }
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-bottom: 1.25rem; }
.breadcrumb a { color: rgba(255,255,255,0.7); transition: color var(--transition); }
.breadcrumb a:hover { color: white; }
.breadcrumb span { color: rgba(255,255,255,0.4); }
.page-hero-title { font-size: clamp(1.75rem, 4vw, 3rem); color: white; margin-bottom: 1rem; }
.page-hero-title span { color: var(--gold); }
.blog-article-hero-title { font-size: clamp(1.4rem, 3vw, 2.2rem); }
.page-hero-subtitle { color: rgba(255,255,255,0.8); font-size: 1.05rem; max-width: 600px; margin-bottom: 1.75rem; }
.page-hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Article Meta */
.article-meta { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; color: rgba(255,255,255,0.7); font-size: 0.85rem; }
.article-meta svg { display: inline; vertical-align: middle; margin-right: 0.3rem; }
.article-tags-inline { display: flex; gap: 0.4rem; flex-wrap: wrap; }

/* 19. Content Layout (Service pages) */
.content-layout { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.content-main h2 { margin-bottom: 1rem; }
.content-main h3 { margin: 2rem 0 1rem; color: var(--primary); }
.content-main h4 { margin: 1.25rem 0 0.5rem; }
.content-sidebar { display: flex; flex-direction: column; gap: 1.25rem; }
.sidebar-card { background: white; border-radius: var(--radius-lg); padding: 1.5rem; box-shadow: var(--shadow); border: 1px solid var(--border-light); }
.sidebar-card h3 { font-size: 1rem; margin-bottom: 1rem; color: var(--primary); }
.sidebar-card-highlight { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: white; }
.sidebar-card-highlight h3, .sidebar-card-highlight p { color: white; }
.sidebar-links { display: flex; flex-direction: column; gap: 0.4rem; }
.sidebar-links li a { display: flex; align-items: center; gap: 0.4rem; font-size: 0.875rem; color: var(--text-medium); padding: 0.3rem 0; transition: color var(--transition); }
.sidebar-links li a:hover { color: var(--primary-light); }
.sidebar-links li a svg { color: var(--primary-light); flex-shrink: 0; }

.feature-list { display: flex; flex-direction: column; gap: 0.6rem; margin: 1.25rem 0; }
.feature-item { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9rem; }
.feature-item svg { color: var(--success); flex-shrink: 0; }

.cards-2col { display: grid; grid-template-columns: 1fr; gap: 1rem; margin: 1.25rem 0; }
.cards-3col { display: grid; grid-template-columns: 1fr; gap: 1rem; margin: 1.25rem 0; }
.info-card { background: var(--off-white); border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 1.25rem; }
.info-card-icon { font-size: 1.75rem; margin-bottom: 0.75rem; }
.info-card h4 { font-size: 1rem; margin-bottom: 0.5rem; color: var(--primary-dark); }
.info-card p { font-size: 0.875rem; color: var(--text-medium); margin: 0; }
.info-card-check { border-left: 3px solid var(--success); }
.info-card-neutral { border-left: 3px solid var(--primary-light); }

.check-list { display: flex; flex-direction: column; gap: 0.4rem; }
.check-list li { font-size: 0.875rem; color: var(--text-medium); padding-left: 1.25rem; position: relative; }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--success); font-weight: 700; }

.promise-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.5rem; }
.promise-item { background: var(--light-bg); border-radius: var(--radius); padding: 1rem; text-align: center; }
.promise-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
.promise-item strong { display: block; font-size: 0.9rem; color: var(--primary-dark); margin-bottom: 0.25rem; }
.promise-item p { font-size: 0.8rem; color: var(--text-medium); margin: 0; }

.alert-box { display: flex; gap: 0.75rem; padding: 1rem 1.25rem; border-radius: var(--radius); margin: 1.5rem 0; font-size: 0.875rem; }
.alert-box svg { flex-shrink: 0; margin-top: 2px; }
.alert-box p { margin: 0; }
.alert-info { background: rgba(37,99,235,0.08); border: 1px solid rgba(37,99,235,0.2); color: var(--primary-dark); }
.alert-info svg { color: var(--primary-light); }
.alert-success { background: rgba(16,185,129,0.08); border: 1px solid rgba(16,185,129,0.2); }
.alert-success svg { color: var(--success); }

.step-simple { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
.step-num { width: 36px; height: 36px; background: linear-gradient(135deg, var(--primary-light), var(--accent)); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 0.875rem; flex-shrink: 0; }
.step-simple strong { display: block; font-size: 1rem; color: var(--primary-dark); margin-bottom: 0.25rem; }
.step-simple p { font-size: 0.875rem; color: var(--text-medium); margin: 0; }

.value-factors { display: grid; grid-template-columns: 1fr; gap: 1rem; margin: 1.25rem 0; }
.value-factor { background: var(--off-white); border-radius: var(--radius-lg); padding: 1.25rem; }
.value-factor.positive { border-left: 3px solid var(--success); }
.value-factor.negative { border-left: 3px solid var(--danger); }
.value-factor h4 { font-size: 0.95rem; margin-bottom: 0.75rem; }
.value-factor.positive h4 { color: var(--success); }
.value-factor.negative h4 { color: var(--danger); }

.process-steps-simple { margin: 1.5rem 0; }

/* 20. Contact page */
.contact-info-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-bottom: 2rem; }
.contact-info-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem;
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.contact-info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); border-color: var(--primary-light); }
.contact-info-whatsapp:hover { border-color: #25d366; }
.contact-info-icon { width: 64px; height: 64px; background: var(--light-bg); border-radius: var(--radius-xl); display: flex; align-items: center; justify-content: center; color: var(--primary-light); margin-bottom: 1rem; }
.contact-info-whatsapp .contact-info-icon { background: rgba(37,211,102,0.1); color: #25d366; }
.contact-info-card h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.contact-info-card p { font-size: 0.875rem; color: var(--text-medium); margin: 0; }
.contact-info-action { font-size: 0.8rem; font-weight: 600; color: var(--primary-light); margin-top: 0.5rem; }

.success-banner, .error-banner {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  margin: 1rem 1.5rem;
  border-radius: var(--radius-lg);
}
.success-banner { background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.2); color: var(--success); }
.error-banner { background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.2); color: var(--danger); }
.success-banner strong, .error-banner strong { display: block; margin-bottom: 0.25rem; }
.success-banner p, .error-banner p { margin: 0; font-size: 0.875rem; }

.map-placeholder {
  background: var(--light-bg);
  border: 2px dashed var(--border);
  border-radius: var(--radius-xl);
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.map-placeholder-sm { min-height: 200px; margin: 2rem 0; }
.map-overlay { padding: 2rem; }
.map-overlay h3 { color: var(--primary); margin: 0.75rem 0 0.5rem; }
.map-overlay p { font-size: 0.875rem; color: var(--text-medium); max-width: 400px; }

/* 21. About Page */
.about-intro { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
.about-stats-card { background: white; border-radius: var(--radius-xl); padding: 2rem; box-shadow: var(--shadow-xl); display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; border: 1px solid var(--border-light); }
.about-stat { text-align: center; }
.about-stat-num { display: block; font-size: 2rem; font-weight: 900; color: var(--primary); }
.about-stat-label { font-size: 0.8rem; color: var(--text-medium); }
.values-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.value-card { background: white; border-radius: var(--radius-xl); padding: 2rem; text-align: center; box-shadow: var(--shadow); border: 1px solid var(--border-light); transition: all var(--transition); }
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.value-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.value-card h3 { margin-bottom: 0.75rem; color: var(--primary); }
.cert-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.cert-item { text-align: center; padding: 1.5rem; }
.cert-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.cert-item h4 { color: var(--primary-dark); margin-bottom: 0.5rem; }
.cert-item p { font-size: 0.875rem; color: var(--text-medium); }

/* 22. Blog Article */
.article-layout { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.article-image { border-radius: var(--radius-xl); overflow: hidden; margin-bottom: 2rem; height: 300px; }
.article-image svg { width: 100%; height: 100%; }
.article-body { font-size: 1rem; line-height: 1.8; }
.article-body h2 { font-size: 1.5rem; color: var(--primary); margin: 2rem 0 1rem; }
.article-body h3 { font-size: 1.2rem; color: var(--primary-dark); margin: 1.75rem 0 0.75rem; }
.article-body p { margin-bottom: 1.25rem; color: var(--text-medium); }
.article-body ul, .article-body ol { margin: 1rem 0 1.5rem 1.5rem; }
.article-body li { margin-bottom: 0.5rem; color: var(--text-medium); }
.article-body strong { color: var(--text-dark); }
.article-cta-box { background: var(--light-bg); border: 1px solid rgba(37,99,235,0.15); border-radius: var(--radius-xl); padding: 2rem; margin-top: 3rem; text-align: center; }
.article-cta-box h3 { color: var(--primary); margin-bottom: 0.75rem; }
.article-cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 1.25rem; }
.related-posts { display: flex; flex-direction: column; gap: 0.5rem; }
.related-post-item { padding: 0.5rem 0; border-bottom: 1px solid var(--border-light); }
.related-post-item:last-child { border-bottom: none; }
.related-post-title { font-size: 0.875rem; color: var(--text-dark); line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.related-post-item:hover .related-post-title { color: var(--primary-light); }

/* 23. Pagination */
.pagination { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-top: 3rem; }
.pagination-btn { padding: 0.6rem 1.25rem; background: white; border: 1px solid var(--border); border-radius: var(--radius); font-weight: 500; color: var(--text-dark); transition: all var(--transition); }
.pagination-btn:hover { background: var(--primary-light); color: white; border-color: var(--primary-light); }
.pagination-pages { display: flex; gap: 0.4rem; }
.pagination-page { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border); border-radius: var(--radius-sm); font-weight: 500; color: var(--text-dark); transition: all var(--transition); }
.pagination-page:hover, .pagination-page.active { background: var(--primary-light); color: white; border-color: var(--primary-light); }

/* 24. Legal pages */
.legal-section { }
.legal-content { }
.legal-updated { font-size: 0.85rem; color: var(--text-light); margin-bottom: 2rem; }
.legal-content h2 { font-size: 1.25rem; margin: 2rem 0 0.75rem; color: var(--primary); padding-bottom: 0.5rem; border-bottom: 2px solid var(--light-bg); }
.legal-content h3 { font-size: 1rem; margin: 1.5rem 0 0.5rem; color: var(--primary-dark); }
.legal-content p { font-size: 0.9rem; color: var(--text-medium); margin-bottom: 0.75rem; }
.legal-content ul { margin: 0.75rem 0 0.75rem 1.5rem; }
.legal-content li { font-size: 0.9rem; color: var(--text-medium); margin-bottom: 0.4rem; }

/* 25. Services link cards */
.services-grid-3 { grid-template-columns: 1fr; gap: 1rem; }
.service-link-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem;
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  transition: all var(--transition);
  color: var(--text-dark);
}
.service-link-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); border-color: var(--primary-light); }
.service-link-card svg { color: var(--primary-light); margin-bottom: 0.75rem; }
.service-link-card h3 { font-size: 1rem; margin-bottom: 0.4rem; color: var(--primary-dark); }
.service-link-card p { font-size: 0.8rem; color: var(--text-medium); margin: 0; }

/* 26. District page */
.district-content p { font-size: 0.95rem; color: var(--text-medium); margin-bottom: 1rem; }

/* 27. FAQ Category Filter */
.faq-category-filter { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.faq-cat-btn {
  padding: 0.5rem 1.1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-medium);
  cursor: pointer;
  background: white;
  transition: all var(--transition);
}
.faq-cat-btn.active, .faq-cat-btn:hover { background: var(--primary-light); color: white; border-color: var(--primary-light); }
.faq-cta { }

/* 28. Footer */
.site-footer { background: var(--primary-dark); color: rgba(255,255,255,0.8); }
.footer-main { padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
.footer-brand { }
.footer-logo { display: inline-block; margin-bottom: 1rem; }
.footer-tagline { font-size: 0.875rem; color: rgba(255,255,255,0.6); max-width: 280px; margin-bottom: 1.5rem; }
.footer-contact-info { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.8rem; color: rgba(255,255,255,0.6); }
.footer-contact-item a { color: rgba(255,255,255,0.8); transition: color var(--transition); }
.footer-contact-item a:hover { color: white; }
.footer-contact-item svg { flex-shrink: 0; margin-top: 1px; color: var(--accent); }
.footer-heading { font-size: 0.85rem; font-weight: 700; color: white; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links li a { font-size: 0.85rem; color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-links li a:hover { color: white; }
.footer-links-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem 1rem; }
@media (max-width: 480px) { .footer-links-two-col { grid-template-columns: 1fr; } }

.footer-cta-bar { background: var(--primary); padding: 1.5rem 0; }
.footer-cta-inner { display: flex; flex-direction: column; gap: 1rem; align-items: center; text-align: center; }
.footer-cta-inner p { color: rgba(255,255,255,0.9); font-size: 0.9rem; margin: 0; }
.footer-cta-btns { display: flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center; }
.footer-bottom { padding: 1.25rem 0; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-bottom-inner { display: flex; flex-direction: column; gap: 0.75rem; align-items: center; text-align: center; }
.footer-bottom-inner p { font-size: 0.8rem; color: rgba(255,255,255,0.4); margin: 0; }
.footer-legal-links { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.footer-legal-links a { font-size: 0.8rem; color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-legal-links a:hover { color: white; }
.footer-trust-badges { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.trust-badge { font-size: 0.75rem; color: rgba(255,255,255,0.4); }

/* 29. WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  background: #25d366;
  color: white;
  border-radius: var(--radius-full);
  padding: 0.9rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition);
  animation: float-pulse 3s ease-in-out infinite;
}
.whatsapp-float:hover { background: #22c35e; transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.5); animation: none; }
.whatsapp-label { font-size: 0.8rem; font-weight: 600; white-space: nowrap; }

/* 30. Scroll Top */
.scroll-top {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 900;
  width: 44px;
  height: 44px;
  background: var(--primary-light);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  cursor: pointer;
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--primary); transform: translateY(-3px); }

/* 31. Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-light);
  padding: 1.25rem 1.5rem;
  max-width: min(90vw, 600px);
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
.cookie-consent.show { opacity: 1; visibility: visible; }
.cookie-consent-inner { display: flex; gap: 1rem; align-items: flex-start; flex-wrap: wrap; }
.cookie-icon { font-size: 1.5rem; flex-shrink: 0; }
.cookie-text { flex: 1; min-width: 200px; }
.cookie-text strong { display: block; margin-bottom: 0.3rem; color: var(--primary-dark); }
.cookie-text p { font-size: 0.8rem; color: var(--text-medium); margin: 0; }
.cookie-text a { color: var(--primary-light); text-decoration: underline; }
.cookie-actions { display: flex; gap: 0.5rem; flex-shrink: 0; flex-wrap: wrap; }

/* 32. Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal {
  background: white;
  border-radius: var(--radius-xl);
  padding: 2rem;
  width: 100%;
  max-width: 440px;
  position: relative;
  box-shadow: var(--shadow-xl);
  transform: scale(0.9);
  transition: transform var(--transition);
}
.modal-overlay.open .modal { transform: scale(1); }
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--off-white);
  color: var(--text-medium);
  font-size: 1.25rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}
.modal-close:hover { background: var(--danger); color: white; }
.modal h3 { margin-bottom: 0.5rem; color: var(--primary); }
.modal p { font-size: 0.875rem; color: var(--text-medium); margin-bottom: 1.5rem; }

/* 33. Error Page */
.error-page { padding: 8rem 0; text-align: center; background: var(--off-white); min-height: 60vh; display: flex; align-items: center; }
.error-content { }
.error-code { font-size: 8rem; font-weight: 900; color: var(--primary-light); opacity: 0.2; line-height: 1; margin-bottom: 1rem; }
.error-title { font-size: 1.75rem; margin-bottom: 1rem; color: var(--primary); }
.error-message { color: var(--text-medium); margin-bottom: 2rem; max-width: 400px; margin-left: auto; margin-right: auto; }
.error-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* 34. Empty State */
.empty-state { text-align: center; padding: 4rem 2rem; color: var(--text-medium); }
.empty-state h3 { margin: 1rem 0 0.5rem; color: var(--primary-dark); }

/* 35. Animations */
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.8); } }
@keyframes float-pulse { 0%, 100% { transform: scale(1); box-shadow: 0 4px 20px rgba(37,211,102,0.4); } 50% { transform: scale(1.05); box-shadow: 0 8px 30px rgba(37,211,102,0.6); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideRight { from { opacity: 0; transform: translateX(50px); } to { opacity: 1; transform: translateX(0); } }

.animate-fade-up { animation: fadeUp 0.6s ease forwards; opacity: 0; }
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.25s; }
.animate-delay-3 { animation-delay: 0.4s; }
.animate-delay-4 { animation-delay: 0.55s; }
.animate-slide-right { animation: slideRight 0.8s ease 0.3s forwards; opacity: 0; }

.reveal { opacity: 0; transform: translateY(25px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* ==========================================
   RESPONSIVE DESIGN – TABLET (768px+)
   ========================================== */
@media (min-width: 768px) {
  .hero-container { grid-template-columns: 1fr 1fr; padding-bottom: 8rem; }
  .hero-car-visual { display: block; }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-features { grid-template-columns: 1fr 1fr; }
  .cards-2col { grid-template-columns: 1fr 1fr; }
  .cards-3col { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(4, 1fr) !important; }
  .process-connector { display: flex; align-items: center; justify-content: center; color: var(--border); padding-top: 3rem; }
  .process-connector::after { content: '→'; font-size: 1.5rem; color: var(--primary-light); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr 1fr; }
  .contact-form-wrapper { grid-template-columns: 340px 1fr; }
  .contact-info-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-cta-inner { flex-direction: row; justify-content: space-between; }
  .footer-bottom-inner { flex-direction: row; justify-content: space-between; text-align: left; }
  .services-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .value-factors { grid-template-columns: 1fr 1fr; }
  .testimonial-card { min-width: 340px; }
  .about-intro { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-layout { grid-template-columns: 300px 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .article-layout { grid-template-columns: 1fr 300px; }
  .article-image { height: 400px; }
  .content-layout { grid-template-columns: 1fr 300px; }
  .value-factors { grid-template-columns: 1fr 1fr; }
  .process-steps-simple { }
}

/* ==========================================
   DESKTOP (1024px+)
   ========================================== */
@media (min-width: 1024px) {
  .nav-toggle { display: none !important; }
  .nav-menu { display: flex !important; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .cards-3col { grid-template-columns: repeat(3, 1fr); }
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-info-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .services-grid-3 { grid-template-columns: repeat(3, 1fr); }
  .values-grid { grid-template-columns: repeat(4, 1fr); }
  .cert-grid { grid-template-columns: repeat(4, 1fr); }
  .testimonial-card { min-width: 380px; }
  .header-top-left { display: flex; }
}

/* Mobile: collapse nav */
@media (max-width: 1023px) {
  .nav-toggle { display: flex; }
  .header-top-left { display: none; }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 90vw);
    height: 100vh;
    background: white;
    flex-direction: column;
    align-items: stretch;
    padding: 5rem 1.5rem 2rem;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    transition: right 0.3s ease;
    z-index: 999;
  }
  .nav-menu.open { right: 0; }
  .nav-list { flex-direction: column; gap: 0; }
  .has-dropdown { }
  .nav-dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; background: var(--off-white); border-radius: var(--radius); margin: 0.25rem 0 0.5rem; display: none; }
  .nav-dropdown.open { display: block; }
  .nav-dropdown-wide { columns: 1; }
  .nav-cta { flex-direction: column; margin-left: 0; padding-top: 1.5rem; border-top: 1px solid var(--border-light); }
  .nav-phone { width: 100%; justify-content: center; }
}
