.logo img {max-width:150px !important;}

@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;700;800;900&family=Open+Sans:wght@300;400;500;600&display=swap');

:root {
  --primary: #1a56db;
  --primary-dark: #0f2057;
  --primary-light: #3b82f6;
  --primary-xlight: #eff6ff;
  --accent: #f59e0b;
  --accent-dark: #d97706;
  --success: #10b981;
  --danger: #ef4444;
  --text: #1e293b;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --border: #e2e8f0;
  --surface: #f8fafc;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -1px rgba(0,0,0,.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -2px rgba(0,0,0,.05);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,.1), 0 10px 10px -5px rgba(0,0,0,.04);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --transition: all .25s cubic-bezier(.4,0,.2,1);
  --font-heading: 'Raleway', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

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

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.75rem); }
h4 { font-size: 1.25rem; }
p { margin-bottom: 1rem; }

/* ── Layout ── */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.text-center { text-align: center; }
.gap-2 { gap: 8px; }
.gap-4 { gap: 16px; }

/* ── Section Header ── */
.section-header { text-align: center; margin-bottom: 56px; }
.section-badge {
  display: inline-block;
  background: var(--primary-xlight);
  color: var(--primary);
  border: 1px solid rgba(26,86,219,.15);
  padding: 6px 18px;
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--text-muted); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }
.divider {
  width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  margin: 16px auto 0;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  box-shadow: 0 4px 16px rgba(26,86,219,.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,86,219,.45);
}
.btn-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
  box-shadow: 0 4px 16px rgba(245,158,11,.3);
}
.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,158,11,.4);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}
.btn-white {
  background: var(--white);
  color: var(--primary);
}
.btn-white:hover {
  background: var(--primary-xlight);
  transform: translateY(-2px);
}
.btn-lg { padding: 18px 48px; font-size: 1.05rem; }
.btn-sm { padding: 8px 20px; font-size: .85rem; }

/* ── Header / Navbar ── */
.topbar {
  background: var(--primary-dark);
  color: rgba(255,255,255,.85);
  font-size: .82rem;
  padding: 8px 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar a { color: rgba(255,255,255,.85); transition: color .2s; }
.topbar a:hover { color: var(--accent); }
.topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

.navbar {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,.12);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.logo-text .logo-name {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.35rem;
  color: var(--primary-dark);
  line-height: 1;
}
.logo-text .logo-slogan {
  font-size: .7rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 10px;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .9rem;
  color: var(--text);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--primary);
  background: var(--primary-xlight);
}
.nav-link.active { color: var(--primary); }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  min-width: 220px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  z-index: 100;
}
.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 500;
  transition: var(--transition);
}
.nav-dropdown a:hover {
  background: var(--primary-xlight);
  color: var(--primary);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Hero ── */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, #1d4ed8 100%);
  overflow: hidden;
  padding: 100px 0 80px;
  color: var(--white);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3z' fill='%23ffffff' fill-opacity='0.04'/%3E%3C/svg%3E");
  opacity: .5;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: .82rem;
  font-weight: 600;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  margin-bottom: 24px;
  line-height: 1.15;
}
.hero h1 .highlight {
  color: var(--accent);
  position: relative;
}
.hero p {
  color: rgba(255,255,255,.85);
  font-size: 1.1rem;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
}
.hero-stat { text-align: center; }
.hero-stat-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
}
.hero-stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.7);
  margin-top: 4px;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: flex-end;
}
.hero-img-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
}
.hero-img-wrap img {
  border-radius: var(--radius-lg);
  box-shadow: 0 32px 64px rgba(0,0,0,.3);
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.hero-float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-float-card.card-1 { bottom: -20px; left: -40px; }
.hero-float-card.card-2 { top: -20px; right: -20px; }
.float-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.float-icon.blue { background: var(--primary-xlight); }
.float-icon.green { background: #f0fdf4; }
.float-info .label { font-size: .7rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; }
.float-info .value { font-family: var(--font-heading); font-size: 1rem; font-weight: 800; color: var(--text); }

/* ── Services ── */
.service-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.service-card:hover {
  border-color: var(--primary-light);
  box-shadow: 0 16px 40px rgba(26,86,219,.12);
  transform: translateY(-6px);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 64px; height: 64px;
  background: var(--primary-xlight);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--primary);
  transform: scale(1.05);
}
.service-card h3 { font-size: 1.15rem; margin-bottom: 12px; }
.service-card p { color: var(--text-muted); font-size: .9rem; line-height: 1.65; margin: 0; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 700;
  font-size: .875rem;
  margin-top: 20px;
  font-family: var(--font-heading);
  transition: gap .2s;
}
.service-card:hover .service-link { gap: 10px; }

/* ── Why Us ── */
.why-us { background: var(--surface); }
.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.feature-num {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-body h4 { margin-bottom: 8px; font-size: 1rem; }
.feature-body p { margin: 0; color: var(--text-muted); font-size: .875rem; }

/* ── Reviews ── */
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}
.review-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(26,86,219,.15);
}
.review-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 16px; }
.reviewer-info { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
}
.reviewer-name { font-weight: 700; font-size: .95rem; }
.reviewer-service { font-size: .8rem; color: var(--text-muted); margin-top: 2px; }
.review-verified {
  display: flex;
  align-items: center;
  gap: 4px;
  background: #f0fdf4;
  color: var(--success);
  border-radius: 100px;
  padding: 4px 10px;
  font-size: .72rem;
  font-weight: 700;
}
.stars { display: inline-flex; gap: 2px; }
.star { color: #d1d5db; font-size: 1.1rem; }
.star.filled { color: #f59e0b; }
.review-text { color: var(--text-muted); font-size: .9rem; line-height: 1.65; margin-top: 12px; }
.review-date { font-size: .75rem; color: var(--text-light); margin-top: 12px; }

.rating-summary {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--white);
  text-align: center;
  margin-bottom: 40px;
}
.rating-big {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
}
.rating-stars { font-size: 1.5rem; margin: 12px 0 8px; }
.rating-count { opacity: .8; font-size: .9rem; }
.rating-bars { margin-top: 24px; text-align: left; }
.rating-bar-row { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; font-size: .82rem; }
.bar-track { flex: 1; height: 6px; background: rgba(255,255,255,.2); border-radius: 3px; }
.bar-fill { height: 100%; background: var(--accent); border-radius: 3px; }

/* ── FAQ ── */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 12px;
  transition: var(--transition);
}
.faq-item.open {
  border-color: rgba(26,86,219,.25);
  box-shadow: 0 4px 16px rgba(26,86,219,.08);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-family: var(--font-heading);
  font-size: 1rem;
  transition: background .2s;
}
.faq-question:hover { background: var(--surface); }
.faq-item.open .faq-question { background: var(--primary-xlight); color: var(--primary); }
.faq-icon {
  font-size: 1.4rem;
  line-height: 1;
  transition: transform .3s;
  color: var(--primary);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .25s;
  color: var(--text-muted);
  font-size: .93rem;
  line-height: 1.7;
}
.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 16px 24px 24px;
}

/* ── Brands ── */
.brands-track {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.brand-chip {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 28px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .95rem;
  color: var(--text);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-chip:hover {
  border-color: var(--primary-light);
  color: var(--primary);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

/* ── CTA Section ── */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 80px 0;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 400px; height: 400px;
  background: rgba(255,255,255,.04);
  border-radius: 50%;
}
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,.85); font-size: 1.1rem; margin-bottom: 36px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Fault Codes ── */
.fault-filter {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: 100px;
  border: 2px solid var(--border);
  background: var(--white);
  font-family: var(--font-heading);
  font-size: .85rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-muted);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.fault-table { width: 100%; border-collapse: collapse; }
.fault-table th {
  background: var(--primary-dark);
  color: var(--white);
  padding: 14px 20px;
  text-align: left;
  font-family: var(--font-heading);
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.fault-table th:first-child { border-radius: var(--radius-sm) 0 0 0; }
.fault-table th:last-child { border-radius: 0 var(--radius-sm) 0 0; }
.fault-table td { padding: 14px 20px; border-bottom: 1px solid var(--border); font-size: .9rem; }
.fault-table tr:hover td { background: var(--primary-xlight); }
.fault-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 700;
  font-family: var(--font-heading);
  background: #fef3c7;
  color: #92400e;
}
.fault-badge.critical { background: #fef2f2; color: #dc2626; }
.fault-badge.low { background: #f0fdf4; color: #16a34a; }
.fault-badge.medium { background: #fef3c7; color: #92400e; }
.fault-badge.high { background: #fff7ed; color: #c2410c; }

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: flex-start;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-bottom: 16px;
  transition: var(--transition);
}
.contact-info-item:hover {
  border-color: rgba(26,86,219,.2);
  box-shadow: var(--shadow);
}
.contact-icon {
  width: 48px; height: 48px;
  background: var(--primary-xlight);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-info-item h4 { font-size: .85rem; color: var(--text-muted); margin-bottom: 4px; font-weight: 600; }
.contact-info-item p { font-weight: 700; font-size: 1rem; margin: 0; }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: .875rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  font-family: var(--font-heading);
}
.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .9rem;
  color: var(--text);
  transition: var(--transition);
  background: var(--white);
}
.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,86,219,.1);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
textarea.form-control { resize: vertical; min-height: 140px; }
select.form-control { appearance: none; }

/* ── Footer ── */
.footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,.8);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-logo-wrap { margin-bottom: 20px; }
.footer-logo-wrap .logo-name { color: var(--white); }
.footer-logo-wrap .logo-slogan { color: rgba(255,255,255,.5); }
.footer h5 {
  font-family: var(--font-heading);
  font-size: .95rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,.7);
  font-size: .875rem;
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a:hover { color: var(--accent); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: .875rem;
}
.footer-contact-item span:first-child { font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.social-btn {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  color: rgba(255,255,255,.7);
}
.social-btn:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .8rem;
  color: rgba(255,255,255,.5);
}

/* ── Floating Buttons ── */
.floating-btns {
  position: fixed;
  bottom: 28px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}
.float-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
  transition: var(--transition);
  cursor: pointer;
  border: none;
  text-decoration: none;
  color: var(--white);
}
.float-btn:hover { transform: scale(1.12); box-shadow: 0 12px 32px rgba(0,0,0,.25); }
.float-btn-phone { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); }
.float-btn-whatsapp { background: linear-gradient(135deg, #25d366, #128c7e); }
.float-btn-search { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); }
.float-btn-label {
  position: absolute;
  right: 68px;
  background: var(--text);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 8px;
  font-size: .78rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  transition: opacity .2s;
  pointer-events: none;
}
.float-btn:hover + .float-btn-label,
.float-btn-wrap:hover .float-btn-label { opacity: 1; }
.float-btn-wrap { position: relative; display: flex; align-items: center; }

/* ── Service Search Modal ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  padding: 20px;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 540px;
  width: 100%;
  transform: scale(.95) translateY(20px);
  transition: var(--transition);
}
.modal-overlay.open .modal { transform: scale(1) translateY(0); }
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.modal-title { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 800; }
.modal-close {
  width: 36px; height: 36px;
  border: none;
  background: var(--surface);
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Page Hero ── */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 60px 0;
  color: var(--white);
  text-align: center;
}
.page-hero h1 { color: var(--white); font-size: 2.5rem; margin-bottom: 12px; }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  align-items: center;
  color: rgba(255,255,255,.7);
  font-size: .875rem;
}
.breadcrumb a { color: rgba(255,255,255,.7); transition: color .2s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { color: rgba(255,255,255,.4); }
.breadcrumb .current { color: var(--white); }

/* ── Cards ── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.card-img { width: 100%; height: 220px; object-fit: cover; }
.card-body { padding: 24px; }
.card-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.card-text { color: var(--text-muted); font-size: .875rem; }
.card-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ── Map Embed ── */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--border);
  height: 320px;
}
.map-container iframe { width: 100%; height: 100%; border: none; }

/* ── Pagination ── */
.pagination ul {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 48px;
}
.pagination li a, .pagination li.active span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 2px solid var(--border);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .9rem;
  transition: var(--transition);
  color: var(--text);
}
.pagination li a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.pagination li.active a {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

/* ── Alert ── */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  font-size: .9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.alert-success { background: #f0fdf4; border: 1px solid #86efac; color: #166534; }
.alert-error { background: #fef2f2; border: 1px solid #fca5a5; color: #dc2626; }
.alert-info { background: var(--primary-xlight); border: 1px solid rgba(26,86,219,.2); color: var(--primary-dark); }

/* ── Utilities ── */
.hidden { display: none !important; }
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.text-muted { color: var(--text-muted); }
.bg-surface { background: var(--surface); }
.fw-bold { font-weight: 700; }
.fw-black { font-weight: 900; }
.mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; }
.mb-1 { margin-bottom: 8px; } .mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; }

/* ── Animations ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
.animate-fade-up { animation: fadeInUp .6s ease both; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }
.delay-4 { animation-delay: .4s; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid { gap: 40px; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .hero { padding: 64px 0 48px; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { text-align: center; justify-content: center; }
  .topbar-left, .topbar-right { gap: 12px; }

  .nav-menu { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; width: 100%; background: var(--white); border-top: 1px solid var(--border); padding: 16px; box-shadow: var(--shadow-lg); z-index: 999; gap: 4px; }
  .nav-menu.open { display: flex; }
  .nav-item { width: 100%; }
  .nav-link { width: 100%; padding: 12px 16px; }
  .nav-dropdown { position: static; box-shadow: none; border: none; background: var(--surface); padding: 4px 0 4px 16px; opacity: 1; visibility: visible; transform: none; display: none; }
  .nav-item.dd-open .nav-dropdown { display: block; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .navbar-inner { position: relative; }

  .cta-buttons { flex-direction: column; align-items: center; }
  .hero-buttons { flex-direction: column; }
  .hero-float-card { display: none; }

  .contact-form-wrap { padding: 24px; }
  .floating-btns { bottom: 20px; right: 16px; }
}

@media (max-width: 480px) {
  .topbar-left { display: none; }
  .section-header { margin-bottom: 36px; }
  .btn-lg { padding: 14px 28px; font-size: .95rem; }
}
