/* ================================================================
   FlowMatic - Bab Al Masa Pump Repair LLC
   Unified Stylesheet - Single Source of Truth
   Professional Water Pump Services - Dubai & Sharjah, UAE
   ================================================================ */


/* =================================================================
   1. CSS VARIABLES
   ================================================================= */
:root {
  /* Primary Palette */
  --primary: #0056b3;
  --primary-dark: #003d82;
  --primary-light: #e8f0fe;
  --primary-rgb: 0, 86, 179;

  /* Secondary / CTA */
  --secondary: #ff6b00;
  --secondary-dark: #e05e00;
  --secondary-light: #fff3e6;
  --secondary-rgb: 255, 107, 0;

  /* Accent */
  --accent: #00c853;
  --whatsapp: #25D366;
  --whatsapp-dark: #1ebe5c;

  /* Neutrals */
  --dark: #1a1a2e;
  --dark-secondary: #16213e;
  --gray-900: #212529;
  --gray-800: #343a40;
  --gray-700: #495057;
  --gray-600: #6c757d;
  --gray-400: #ced4da;
  --gray-300: #dee2e6;
  --gray-200: #e9ecef;
  --gray-100: #f8f9fa;
  --white: #ffffff;

  /* Semantic */
  --danger: #dc3545;
  --success: #28a745;
  --warning: #f4a100;

  /* Typography */
  --font-primary: 'Poppins', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
  --shadow-card: 0 2px 15px rgba(0, 86, 179, 0.08);
  --shadow-card-hover: 0 8px 30px rgba(0, 86, 179, 0.15);

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-pill: 50px;
  --radius-full: 50%;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Layout */
  --container-max: 1200px;
  --header-height: 80px;
  --header-height-scrolled: 64px;

  /* Spacing (8px grid) */
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-6: 48px;
  --space-8: 64px;
  --space-10: 80px;
}


/* =================================================================
   2. RESET & BASE
   ================================================================= */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  line-height: 1.7;
  background-color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul, ol {
  list-style: none;
}

button,
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark);
}

h1 { font-size: 2.75rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
  line-height: 1.7;
}


/* =================================================================
   3. CONTAINER & LAYOUT UTILITIES
   ================================================================= */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: var(--space-10) 0;
}

.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-white { color: var(--white); }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* =================================================================
   4. HEADER
   ================================================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

/* -- Header Top Bar -- */
.header-top {
  background: var(--primary-dark);
  color: var(--white);
  font-size: 13px;
  padding: 6px 0;
}

.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-1);
}

.header-top a {
  color: var(--white);
}

.header-top a:hover {
  color: var(--secondary);
}

.header-top-left {
  display: flex;
  gap: 20px;
  align-items: center;
}

.header-top-left i {
  margin-right: 6px;
}

.header-top-right {
  display: flex;
  gap: 14px;
  align-items: center;
}

.header-top-right a {
  font-size: 15px;
  opacity: 0.85;
}

.header-top-right a:hover {
  opacity: 1;
}

/* -- Nav Wrapper -- */
.nav-wrapper {
  padding: 12px 0;
}

.nav-wrapper .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* -- Logo -- */
.logo img {
  height: 50px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

/* -- Nav Menu -- */
.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.nav-menu li {
  position: relative;
}

.nav-menu > li > a {
  padding: 10px var(--space-2);
  font-weight: 500;
  font-size: 15px;
  color: var(--gray-800);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all var(--transition-fast);
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
  color: var(--primary);
  background: var(--primary-light);
}

/* -- Dropdown Menu -- */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: var(--space-1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
  z-index: 100;
}

.nav-menu li:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--gray-700);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.dropdown-menu a:hover {
  background: var(--primary-light);
  color: var(--primary);
}

.dropdown-menu a i {
  width: 20px;
  text-align: center;
  color: var(--primary);
}

/* -- Nav CTA -- */
.nav-cta {
  display: flex;
  gap: 10px;
  margin-left: var(--space-2);
}

/* -- Mobile Menu Toggle -- */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: var(--space-1);
  z-index: 1001;
}

.menu-toggle span {
  width: 26px;
  height: 3px;
  background: var(--gray-800);
  border-radius: 3px;
  transition: all var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}


/* =================================================================
   5. BUTTONS
   ================================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-1);
  padding: 12px 28px;
  min-height: 48px;
  border-radius: var(--radius-pill);
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  line-height: 1;
  white-space: nowrap;
}

.btn i,
.btn svg {
  font-size: 1.1em;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(var(--primary-rgb), 0.3);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}

.btn-secondary:hover {
  background: var(--secondary-dark);
  border-color: var(--secondary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(var(--secondary-rgb), 0.3);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  border-color: var(--whatsapp);
}

.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  border-color: var(--whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 20px;
  font-size: 13px;
  min-height: 38px;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 17px;
  min-height: 54px;
}

.btn-group {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  flex-wrap: wrap;
}


/* =================================================================
   6. HERO SECTION
   ================================================================= */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #001a3a 0%, #003d82 40%, #0056b3 70%, #1a73c7 100%);
  overflow: hidden;
  padding-top: 120px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/hero-pump.jpg') center/cover no-repeat;
  opacity: 0.12;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(transparent, var(--white));
  z-index: 3;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  color: var(--white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: var(--space-3);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge i {
  color: var(--secondary);
}

.hero h1 {
  font-size: 48px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero h1 span {
  color: var(--secondary);
}

.hero-subtitle {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: var(--space-4);
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--secondary);
  font-family: var(--font-primary);
  line-height: 1.2;
}

.hero-stat-label {
  font-size: 13px;
  opacity: 0.8;
  margin-top: 4px;
  line-height: 1.4;
}

/* -- Hero Image -- */
.hero-image {
  position: relative;
}

.hero-image img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.hero-image-badge {
  position: absolute;
  bottom: 20px;
  left: -20px;
  background: var(--white);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-image-badge i {
  font-size: 28px;
  color: var(--whatsapp);
}

.hero-image-badge-text {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.4;
}

.hero-image-badge-text strong {
  display: block;
  color: var(--dark);
  font-size: 15px;
}


/* =================================================================
   7. SECTION HEADERS
   ================================================================= */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .subtitle {
  display: inline-block;
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: var(--space-2);
  line-height: 1.25;
}

.section-header p {
  font-size: 17px;
  color: var(--gray-600);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}

.underline-bar {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
  margin: var(--space-2) auto 0;
}


/* =================================================================
   8. SERVICES
   ================================================================= */
.services {
  background: var(--gray-100);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

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

.service-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-img img {
  transform: scale(1.08);
}

.service-card-img .service-icon {
  position: absolute;
  bottom: -22px;
  left: var(--space-3);
  width: 52px;
  height: 52px;
  background: var(--primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 22px;
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.service-card-body {
  padding: 36px var(--space-3) var(--space-3);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-body h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}

.service-card-body p {
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: var(--space-2);
  line-height: 1.7;
  flex: 1;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  transition: all var(--transition-fast);
}

.service-card-link:hover {
  gap: 10px;
  color: var(--primary-dark);
}


/* =================================================================
   9. ABOUT SECTION
   ================================================================= */
.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
}

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

.about-experience-badge {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 110px;
  height: 110px;
  background: var(--secondary);
  border-radius: var(--radius-full);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.about-experience-badge span:first-child {
  font-size: 32px;
  font-weight: 800;
  font-family: var(--font-primary);
  line-height: 1;
}

.about-experience-badge span:last-child {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.about-content .subtitle {
  display: inline-block;
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.about-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.25;
}

.about-content p {
  color: var(--gray-600);
  margin-bottom: var(--space-2);
  font-size: 15px;
  line-height: 1.7;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2);
  margin-top: 28px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.6;
}

.about-feature i {
  color: var(--accent);
  font-size: 18px;
  flex-shrink: 0;
}


/* =================================================================
   10. WHY CHOOSE US / STATS (Dark Background)
   ================================================================= */
.why-choose-us {
  background: linear-gradient(135deg, #001a3a 0%, #003d82 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.why-choose-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/industrial-installation.jpeg') center/cover no-repeat;
  opacity: 0.08;
}

.why-choose-us .container {
  position: relative;
  z-index: 2;
}

.why-choose-us .section-header h2 {
  color: var(--white);
}

.why-choose-us .section-header p {
  color: rgba(255, 255, 255, 0.7);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-card {
  text-align: center;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all var(--transition);
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-6px);
}

.stat-icon {
  width: 64px;
  height: 64px;
  background: rgba(var(--secondary-rgb), 0.2);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-2);
  font-size: 26px;
  color: var(--secondary);
}

.stat-number {
  font-size: 40px;
  font-weight: 800;
  font-family: var(--font-primary);
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.2;
}

.stat-label {
  font-size: 14px;
  opacity: 0.8;
  font-weight: 500;
  line-height: 1.4;
}


/* =================================================================
   11. EMERGENCY CTA BANNER
   ================================================================= */
.emergency-cta {
  background: linear-gradient(90deg, var(--secondary), #ff8533);
  padding: 50px 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.emergency-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 120%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
}

.emergency-cta h2 {
  font-size: 32px;
  color: var(--white);
  margin-bottom: 10px;
  position: relative;
}

.emergency-cta p {
  font-size: 17px;
  opacity: 0.9;
  margin-bottom: var(--space-3);
  position: relative;
}

.emergency-cta .btn-group {
  position: relative;
}

.emergency-cta .btn-outline {
  border-color: var(--white);
  color: var(--white);
}

.emergency-cta .btn-outline:hover {
  background: var(--white);
  color: var(--secondary);
}


/* =================================================================
   12. BRANDS SECTION
   ================================================================= */
.brands {
  background: var(--gray-100);
  padding: 60px 0;
}

.brands-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-10);
  flex-wrap: wrap;
}

.brand-item {
  text-align: center;
  padding: var(--space-3) 40px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.brand-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.brand-item img {
  height: 50px;
  object-fit: contain;
  margin: 0 auto 12px;
  filter: grayscale(100%);
  transition: filter var(--transition);
}

.brand-item:hover img {
  filter: grayscale(0%);
}

.brand-item h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
}

.brand-item p {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.6;
}


/* =================================================================
   13. TESTIMONIALS
   ================================================================= */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.testimonial-card .quote-icon {
  font-size: 40px;
  color: var(--primary-light);
  margin-bottom: 12px;
  line-height: 1;
}

.testimonial-stars {
  color: var(--warning);
  margin-bottom: 14px;
  font-size: 14px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.testimonial-author-avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 18px;
  font-family: var(--font-primary);
  flex-shrink: 0;
  overflow: hidden;
}

.testimonial-author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-full);
}

.testimonial-author-info h5 {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
}

.testimonial-author-info p {
  font-size: 13px;
  color: var(--gray-600);
  margin-bottom: 0;
  line-height: 1.4;
}


/* =================================================================
   14. CONTACT SECTION
   ================================================================= */
.contact {
  background: var(--gray-100);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* -- Contact Form -- */
.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.contact-form-wrapper h3 {
  font-size: 24px;
  margin-bottom: 6px;
  line-height: 1.3;
}

.contact-form-wrapper > p {
  color: var(--gray-600);
  font-size: 14px;
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--gray-700);
}

.form-group label .required {
  color: var(--danger);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px var(--space-2);
  min-height: 48px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2);
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}

.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--primary);
  cursor: pointer;
  flex-shrink: 0;
}

.form-check label {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.5;
  cursor: pointer;
}

.form-error {
  color: var(--danger);
  font-size: 0.8rem;
  margin-top: 4px;
}

.form-success {
  background-color: rgba(40, 167, 69, 0.1);
  color: var(--success);
  padding: 15px 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(40, 167, 69, 0.2);
  text-align: center;
  font-weight: 500;
}

/* -- Contact Info Cards -- */
.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  transition: all var(--transition);
}

.contact-info-card:hover {
  box-shadow: var(--shadow-md);
}

.contact-info-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: var(--primary-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--primary);
}

.contact-info-text h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  line-height: 1.3;
}

.contact-info-text p {
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 0;
  line-height: 1.6;
}

.contact-info-text a {
  color: var(--primary);
  font-weight: 500;
}

.contact-info-text a:hover {
  color: var(--primary-dark);
}


/* =================================================================
   15. MAP SECTION
   ================================================================= */
.map-section {
  padding: 0;
}

.map-section iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}


/* =================================================================
   16. FOOTER
   ================================================================= */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4 {
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 3px;
  background: var(--secondary);
  border-radius: 2px;
}

.footer-about p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-about .logo img {
  height: 45px;
  margin-bottom: var(--space-2);
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: var(--space-1);
  transition: all var(--transition-fast);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 6px;
}

.footer-links a i {
  font-size: 10px;
  color: var(--secondary);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 1.6;
}

.footer-contact li i {
  margin-top: 4px;
  color: var(--secondary);
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
}

.footer-bottom a {
  color: var(--secondary);
}

.footer-bottom a:hover {
  color: var(--white);
}


/* =================================================================
   17. WHATSAPP FLOATING BUTTON
   ================================================================= */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
}

.whatsapp-float a {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  background: var(--whatsapp);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition);
  animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}


/* =================================================================
   18. COOKIE CONSENT BANNER
   ================================================================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: var(--white);
  padding: 18px var(--space-3);
  z-index: 9999;
  display: none;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.cookie-banner.active {
  display: block;
}

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

.cookie-banner p {
  font-size: 14px;
  flex: 1;
  margin-bottom: 0;
  line-height: 1.6;
}

.cookie-banner p a {
  color: var(--secondary);
  text-decoration: underline;
}

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

.cookie-btn {
  padding: 8px 24px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-primary);
  transition: all var(--transition);
  min-height: 40px;
}

.cookie-accept {
  background: var(--primary);
  color: var(--white);
}

.cookie-accept:hover {
  background: var(--primary-dark);
}

.cookie-decline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-decline:hover {
  border-color: var(--white);
}


/* =================================================================
   19. LANDING PAGE v2 - High-Converting Google Ads Layout
   ================================================================= */

/* ---- LP Header ---- */
.lp-header,
.lp-topbar {
  background: var(--dark);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.lp-header .container,
.lp-topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.lp-header img,
.lp-topbar img {
  height: 44px;
  max-width: 180px;
  object-fit: contain;
}
.lp-header a,
.lp-topbar a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.lp-header a:hover,
.lp-topbar a:hover { color: var(--secondary); }
.lp-header__phone,
.lp-header-phone { color: #fff; }

/* ---- LP Hero (Split Layout) ---- */
.lp-hero {
  background: linear-gradient(135deg, #001a3a 0%, #003d82 40%, #0056b3 100%);
  color: #fff;
  padding: 60px 0 80px;
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.lp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 80%, rgba(0,86,179,0.3) 0%, transparent 60%);
  pointer-events: none;
}
.lp-hero > .container,
.lp-hero-split {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Hero Left Content */
.lp-hero-content {
  color: #fff;
}
.lp-hero__badge,
.lp-hero-badge,
.lp-badge {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
}
.lp-hero h1 {
  font-family: var(--font-primary);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  color: #fff;
}
.lp-hero h1 span {
  color: var(--secondary);
}
.lp-hero__subtitle,
.lp-hero-subtitle {
  font-size: 17px;
  line-height: 1.7;
  opacity: 0.92;
  margin-bottom: 24px;
  max-width: 540px;
}
.lp-hero__trust-items,
.lp-hero-trust-inline,
.lp-trust-items {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-bottom: 24px;
}
.lp-hero__trust-items span,
.lp-hero-trust-inline span {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.95);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.lp-hero__phone-cta,
.lp-hero-phone {
  font-size: 16px;
  font-weight: 600;
  margin-top: 8px;
}
.lp-hero__phone-cta a,
.lp-hero-phone a {
  color: var(--secondary);
  font-weight: 800;
  font-size: 20px;
  text-decoration: none;
}
.lp-hero__phone-cta a:hover,
.lp-hero-phone a:hover {
  text-decoration: underline;
}

/* Hero Right - Form Card */
.lp-hero-form-card,
.lp-hero-form {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  position: relative;
}
.lp-hero-form-card__urgency,
.lp-form-urgency {
  background: linear-gradient(90deg, #ff6b00, #ff8533);
  color: #fff;
  text-align: center;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.lp-hero-form-card__body {
  padding: 28px 28px 24px;
}
.lp-hero-form-card__title,
.lp-hero-form-card h3 {
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.3;
}
.lp-hero-form-card input,
.lp-hero-form-card select,
.lp-hero-form-card textarea,
.lp-hero-form input,
.lp-hero-form select,
.lp-hero-form textarea,
.lp-form input,
.lp-form select,
.lp-form textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 12px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 15px;
  font-family: var(--font-body);
  color: #333;
  background: #fff;
  min-height: 48px;
  transition: border-color 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}
.lp-hero-form-card input:focus,
.lp-hero-form-card select:focus,
.lp-hero-form-card textarea:focus,
.lp-hero-form input:focus,
.lp-hero-form select:focus,
.lp-hero-form textarea:focus,
.lp-form input:focus,
.lp-form select:focus,
.lp-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,86,179,0.1);
}
.lp-hero-form-card select,
.lp-hero-form select,
.lp-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.lp-hero-form-card textarea,
.lp-hero-form textarea,
.lp-form textarea {
  height: 80px;
  resize: vertical;
}
.lp-hero-form-card__btn,
.lp-hero-form-card button,
.lp-hero-form button,
.lp-form-submit,
.lp-form button {
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, #ff6b00, #ff8533);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  font-family: var(--font-primary);
  cursor: pointer;
  min-height: 56px;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.lp-hero-form-card__btn:hover,
.lp-hero-form-card button:hover,
.lp-hero-form button:hover,
.lp-form-submit:hover,
.lp-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,107,0,0.4);
}
.lp-hero-form-card__privacy,
.lp-form-privacy {
  text-align: center;
  font-size: 12px;
  color: #999;
  margin-top: 12px;
  line-height: 1.5;
}
.lp-hero-form-card__wa,
.lp-form-whatsapp {
  text-align: center;
  font-size: 14px;
  color: #666;
  margin-top: 12px;
}
.lp-hero-form-card__wa a,
.lp-form-whatsapp a {
  color: #25d366;
  font-weight: 700;
  text-decoration: none;
}
.lp-hero-form-card__wa a:hover,
.lp-form-whatsapp a:hover {
  text-decoration: underline;
}

/* ---- Social Proof Bar ---- */
.lp-social-proof {
  background: #f0f7ff;
  padding: 20px 0;
  border-bottom: 1px solid #e0e8f0;
}
.lp-social-proof .container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 40px;
}
.lp-social-proof__item,
.lp-stat {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

/* ---- How It Works (Process) ---- */
.lp-process {
  padding: 64px 0;
  background: #fff;
  text-align: center;
}
.lp-process h2 {
  font-family: var(--font-primary);
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 48px;
}
.lp-process__grid,
.lp-process-steps,
.lp-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}
.lp-process__step,
.lp-process-step {
  text-align: center;
  padding: 24px 16px;
}
.lp-process__icon,
.lp-process-step .step-number,
.lp-process__step > div:first-child {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary), #003d82);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 28px;
  color: #fff;
}
.lp-process__step h3,
.lp-process-step h3 {
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.lp-process__step p,
.lp-process-step p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* ---- Benefits v2 ---- */
.lp-benefits-v2 {
  padding: 64px 0;
  background: #f8f9fa;
}
.lp-benefits-v2 h2 {
  font-family: var(--font-primary);
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
  text-align: center;
  margin-bottom: 48px;
}
.lp-benefits-v2__grid,
.lp-benefits-v2-grid,
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.lp-benefits-v2__card,
.lp-benefit-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.lp-benefits-v2__card:hover,
.lp-benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}
.lp-benefits-v2__card-icon,
.lp-benefit-card .icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(0,86,179,0.1), rgba(0,86,179,0.05));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 24px;
  color: var(--primary);
}
.lp-benefits-v2__card h3,
.lp-benefit-card h3 {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.lp-benefits-v2__card p,
.lp-benefit-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* ---- Testimonials v2 ---- */
.lp-testimonials-v2 {
  padding: 64px 0;
  background: #fff;
}
.lp-testimonials-v2 h2 {
  font-family: var(--font-primary);
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
  text-align: center;
  margin-bottom: 48px;
}
.lp-testimonials-v2__grid,
.lp-testimonials-v2-grid,
.lp-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.lp-testimonials-v2__card,
.lp-testimonial,
.lp-review-card {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 28px;
  border: 1px solid #eee;
  transition: transform 0.3s, box-shadow 0.3s;
}
.lp-testimonials-v2__card:hover,
.lp-testimonial:hover,
.lp-review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.lp-testimonials-v2__stars,
.lp-testimonial .stars {
  color: #f4a100;
  font-size: 16px;
  margin-bottom: 12px;
}
.lp-testimonials-v2__card p,
.lp-testimonial p,
.lp-review-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  font-style: italic;
  margin-bottom: 16px;
}
.lp-testimonials-v2__author,
.lp-testimonial .author {
  font-weight: 700;
  color: var(--dark);
  font-size: 15px;
}
.lp-testimonials-v2__role {
  font-size: 13px;
  color: #888;
  margin-top: 2px;
}

/* ---- CTA Banner ---- */
.lp-cta-banner {
  background: linear-gradient(135deg, var(--primary), #003d82);
  padding: 48px 0;
  text-align: center;
  color: #fff;
}
.lp-cta-banner h2 {
  font-family: var(--font-primary);
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
}
.lp-cta-banner .lp-cta-group {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-call {
  background: #dc3545;
  color: #fff;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  min-height: 54px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-call:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(220,53,69,0.4);
  color: #fff;
}
.btn-cta-call { background: #dc3545; color: #fff; padding: 16px 32px; border-radius: 50px; font-weight: 700; display: inline-flex; align-items: center; gap: 8px; text-decoration: none; transition: transform 0.2s; }
.btn-cta-call:hover { transform: scale(1.05); color: #fff; }
.btn-cta-wa,
.btn-cta-secondary { background: #25d366; color: #fff; padding: 16px 32px; border-radius: 50px; font-weight: 700; display: inline-flex; align-items: center; gap: 8px; text-decoration: none; transition: transform 0.2s; }
.btn-cta-wa:hover,
.btn-cta-secondary:hover { transform: scale(1.05); color: #fff; }
.btn-cta-primary { background: var(--secondary); color: #fff; padding: 16px 32px; border-radius: 50px; font-weight: 700; display: inline-flex; align-items: center; gap: 8px; text-decoration: none; transition: transform 0.2s; }
.btn-cta-primary:hover { transform: scale(1.05); color: #fff; }
.lp-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- Service Areas v2 ---- */
.lp-areas-v2 {
  padding: 48px 0;
  text-align: center;
  background: #f8f9fa;
}
.lp-areas-v2 h2 {
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.lp-areas-v2 > .container > p {
  color: #666;
  margin-bottom: 28px;
}
.lp-areas-v2__group,
.areas-group {
  margin-bottom: 16px;
}
.lp-areas-v2__group-label {
  display: inline-block;
  font-weight: 700;
  font-size: 14px;
  color: var(--primary);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.lp-areas-v2__tags,
.areas-tags,
.lp-area-pills,
.area-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.lp-areas-v2__tag,
.area-tag {
  display: inline-block;
  background: #fff;
  color: var(--dark);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid #dee2e6;
  transition: all 0.2s;
}
.lp-areas-v2__tag:hover,
.area-tag:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* ---- FAQ Accordion ---- */
.lp-faq {
  padding: 64px 0;
  background: #fff;
}
.lp-faq h2 {
  font-family: var(--font-primary);
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
  text-align: center;
  margin-bottom: 40px;
}
.lp-faq__list,
.lp-faq-list {
  max-width: 720px;
  margin: 0 auto;
}
.lp-faq__item,
.lp-faq-item {
  border: 1px solid #eee;
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.2s;
}
.lp-faq__item:hover,
.lp-faq-item:hover {
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.lp-faq__question,
.faq-question,
.lp-faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-primary);
  color: var(--dark);
  text-align: left;
  transition: background 0.2s;
}
.lp-faq__question:hover,
.faq-question:hover,
.lp-faq-question:hover {
  background: #f8f9fa;
}
.lp-faq__question::after,
.faq-question::after,
.lp-faq-question::after {
  content: "+";
  font-size: 22px;
  font-weight: 400;
  color: var(--primary);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}
.lp-faq__item.active .lp-faq__question::after,
.lp-faq-item.active .faq-question::after,
.lp-faq-item.active .lp-faq-question::after {
  content: "−";
  transform: rotate(180deg);
}
.lp-faq__answer,
.faq-answer,
.lp-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.lp-faq__item.active .lp-faq__answer,
.lp-faq-item.active .faq-answer,
.lp-faq-item.active .lp-faq-answer {
  max-height: 300px;
  padding: 0 24px 18px;
}
.lp-faq__answer p,
.faq-answer p,
.lp-faq-answer p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

/* ---- LP Footer v2 ---- */
.lp-footer-v2 {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  text-align: center;
  padding: 28px 0;
  font-size: 14px;
}
.lp-footer-v2 a {
  color: var(--secondary);
  text-decoration: none;
}
.lp-footer-v2 a:hover {
  text-decoration: underline;
}
.lp-footer-v2 strong {
  color: #fff;
}

/* Legacy footer support */
.lp-footer {
  background: var(--dark);
  color: #fff;
  text-align: center;
  padding: 25px 0;
  font-size: 0.9rem;
}
.lp-footer a { color: var(--secondary); }

/* ---- Mobile Sticky CTA Bar ---- */
.lp-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  padding: 10px 16px;
  z-index: 1000;
  display: none;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
}
.lp-sticky-cta .container {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.lp-sticky-cta .btn-call,
.lp-sticky-cta .btn-whatsapp,
.btn-sticky,
.btn-sticky-call,
.btn-sticky-whatsapp {
  flex: 1;
  justify-content: center;
  padding: 14px 16px;
  font-size: 15px;
  min-height: 48px;
  border-radius: 50px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.btn-sticky-call { background: #dc3545; color: #fff; }
.btn-sticky-whatsapp { background: #25d366; color: #fff; }
/* Legacy sticky bar */
.lp-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  padding: 12px 0;
  z-index: 1000;
  display: none;
  box-shadow: 0 -3px 15px rgba(0,0,0,0.2);
}
.lp-sticky-bar .container { display: flex; justify-content: center; gap: 12px; }

/* ---- LP Responsive ---- */
@media (max-width: 992px) {
  .lp-hero > .container,
  .lp-hero-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .lp-hero-content {
    order: 2;
    text-align: center;
  }
  .lp-hero-form-card,
  .lp-hero-form {
    order: 1;
    max-width: 480px;
    margin: 0 auto;
  }
  .lp-hero__trust-items,
  .lp-hero-trust-inline {
    justify-content: center;
  }
  .lp-hero__phone-cta,
  .lp-hero-phone {
    text-align: center;
  }
  .lp-hero { min-height: auto; padding: 40px 0 48px; }
  .lp-benefits-v2__grid,
  .lp-benefits-v2-grid,
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .lp-testimonials-v2__grid,
  .lp-testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .lp-sticky-cta { display: flex; }
  .lp-process__grid,
  .lp-process-steps,
  .lp-process-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .lp-benefits-v2__grid,
  .lp-benefits-v2-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .lp-hero h1 { font-size: 26px; }
  .lp-cta-banner h2 { font-size: 22px; }
  .lp-hero-form-card__body { padding: 20px 20px 18px; }
  .lp-header__phone span,
  .lp-header-phone span { display: none; }
  .lp-social-proof .container { gap: 8px 24px; }
  .lp-social-proof__item,
  .lp-stat { font-size: 13px; }
  .btn-call, .btn-cta-call { padding: 14px 20px; font-size: 15px; }
  body { padding-bottom: 72px; }
}
@media (max-width: 480px) {
  .lp-hero { padding: 24px 0 32px; }
  .lp-hero-form-card__body { padding: 16px; }
  .lp-hero__trust-items,
  .lp-hero-trust-inline { flex-direction: column; gap: 6px; align-items: center; }
  .lp-process, .lp-benefits-v2, .lp-testimonials-v2, .lp-faq { padding: 40px 0; }
}

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

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

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

@keyframes whatsapp-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* -- Animation Utility Classes (triggered by JS Intersection Observer) -- */
.animate {
  opacity: 0;
}

.animate.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

.animate.slide-up {
  animation: fadeInUp 0.6s ease forwards;
}

/* Staggered delays */
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }
.animate-delay-5 { animation-delay: 0.5s; }
.animate-delay-6 { animation-delay: 0.6s; }

/* -- Spinner / Loading -- */
.spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--white);
  border-radius: var(--radius-full);
  animation: spin 0.6s linear infinite;
}


/* =================================================================
   21. RESPONSIVE BREAKPOINTS
   ================================================================= */

/* -- Tablet: max-width 992px -- */
@media (max-width: 992px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.85rem; }

  .section-padding {
    padding: 60px 0;
  }

  /* Hero */
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero h1 { font-size: 36px; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-image { display: none; }

  /* Nav - mobile slide-in */
  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: var(--space-10) var(--space-3) var(--space-3);
    box-shadow: var(--shadow-xl);
    transition: right 0.3s ease;
    overflow-y: auto;
    z-index: 1000;
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-menu > li {
    width: 100%;
  }

  .nav-menu > li > a {
    padding: 12px 0;
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    display: none;
    padding-left: var(--space-2);
    min-width: unset;
  }

  .dropdown-menu.open {
    display: block;
  }

  .nav-cta {
    flex-direction: column;
    margin-left: 0;
    width: 100%;
    margin-top: var(--space-2);
  }

  .nav-cta .btn {
    justify-content: center;
  }

  /* Grids */
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about .container { grid-template-columns: 1fr; }
  .about-image { order: 2; }
  .about-content { order: 1; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }

  /* LP */
  .lp-trust-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-benefits-grid { grid-template-columns: 1fr; }
  .lp-testimonials-grid { grid-template-columns: 1fr; }
}

/* -- Mobile: max-width 768px -- */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  h1 { font-size: 1.85rem; }
  h2 { font-size: 1.6rem; }
  h3 { font-size: 1.3rem; }

  .section-padding { padding: 50px 0; }
  .section-header { margin-bottom: 40px; }
  .section-header h2 { font-size: 28px; }

  .container {
    padding: 0 16px;
  }

  /* Header */
  .header-top { display: none; }

  /* Hero */
  .hero {
    min-height: auto;
    padding: 140px 0 100px;
  }
  .hero h1 { font-size: 30px; }
  .hero-subtitle { font-size: 16px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }

  /* Grids */
  .services-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-2); }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  /* Emergency CTA */
  .emergency-cta { padding: 35px 0; }
  .emergency-cta h2 { font-size: 24px; }
  .emergency-cta .btn-group { flex-direction: column; align-items: center; }

  /* Contact */
  .contact-form-wrapper { padding: 28px 20px; }

  /* Testimonials */
  .testimonial-card { padding: 24px 20px; }

  /* Footer */
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* WhatsApp */
  .whatsapp-float {
    bottom: 16px;
    right: 16px;
  }
  .whatsapp-float a {
    width: 52px;
    height: 52px;
    font-size: 26px;
  }

  /* Map */
  .map-section iframe { height: 280px; }

  /* LP */
  .lp-hero h1 { font-size: 1.8rem; }
  .lp-hero p { font-size: 1rem; }
  .btn-call { padding: 14px 24px; font-size: 1rem; }
  .lp-form { padding: 28px 20px; }
}

/* -- Small mobile: max-width 480px -- */
@media (max-width: 480px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.4rem; }

  .hero-stats {
    flex-direction: column;
    gap: var(--space-2);
  }

  .hero-badge {
    font-size: 12px;
    padding: 6px 14px;
  }

  .stat-card {
    padding: var(--space-3) 12px;
    min-height: auto;
  }

  .stat-number { font-size: 30px; }

  .btn-lg {
    padding: 14px 24px;
    font-size: 1rem;
  }

  /* LP trust */
  .lp-trust-grid { grid-template-columns: 1fr 1fr; }

  /* LP sticky bar */
  .lp-sticky-bar {
    display: flex;
  }

  .lp-sticky-bar .container {
    flex-wrap: nowrap;
  }

  .lp-sticky-bar .btn-call,
  .lp-sticky-bar .btn-whatsapp {
    padding: 12px 18px;
    font-size: 0.9rem;
    flex: 1;
    justify-content: center;
  }
}


/* =================================================================
   22. PRINT STYLES
   ================================================================= */
@media print {
  .header,
  .header-top,
  .whatsapp-float,
  .emergency-cta,
  .cookie-banner,
  .menu-toggle,
  .lp-topbar,
  .lp-sticky-bar {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
    font-size: 12pt;
    line-height: 1.5;
  }

  .hero {
    min-height: auto;
    padding: 30px 0;
    background: none !important;
    color: #000;
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  .hero h1,
  .hero-stat-number {
    color: #000;
  }

  .section-padding {
    padding: 30px 0;
  }

  .service-card,
  .testimonial-card,
  .stat-card,
  .contact-info-card {
    box-shadow: none;
    border: 1px solid #ddd;
    break-inside: avoid;
  }

  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
    color: #666;
  }

  .nav-menu a[href]::after,
  .footer a[href]::after {
    content: none;
  }
}


/* -- LP Badge (Hero Inline Badge) -- */
.lp-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  letter-spacing: 0.3px;
}

/* =================================================================
   23. PREFERS REDUCED MOTION
   ================================================================= */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  html {
    scroll-behavior: auto;
  }

  .whatsapp-float a {
    animation: none;
  }

  .service-card:hover,
  .testimonial-card:hover,
  .stat-card:hover,
  .brand-item:hover,
  .btn:hover {
    transform: none;
  }
}
