/* ============================================
   SRV HOME CARE - Main Stylesheet
   Premium Home Appliance Repair Website
   ============================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,400;14..32,500;14..32,600;14..32,700&family=Poppins:wght@400;500;600;700;800&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  --primary: #0b4f9c;
  --primary-dark: #07366d;
  --primary-light: #eaf3ff;

  --secondary: #ff7a00;
  --secondary-dark: #d95f00;
  --secondary-light: #fff0e0;

  --whatsapp: #16a34a;
  --whatsapp-dark: #12813c;

  --background: #f5f8fc;
  --surface: #ffffff;
  --surface-soft: #f9fbfd;

  --text-dark: #172033;
  --text-body: #475467;
  --text-light: #667085;

  --border: #dce5ef;
  --danger: #dc2626;
  --success: #16a34a;

  --footer-dark: #071629;
  --footer-mid: #0a2442;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 34px;
  --radius-pill: 999px;

  --shadow-sm: 0 8px 24px rgba(23, 32, 51, 0.08);
  --shadow-md: 0 18px 45px rgba(23, 32, 51, 0.12);
  --shadow-lg: 0 28px 80px rgba(23, 32, 51, 0.16);

  --transition-fast: 180ms ease;
  --transition: 280ms ease;
  --transition-slow: 600ms cubic-bezier(0.22, 1, 0.36, 1);

  --container: 1200px;
  --header-height: 82px;

  --z-header: 1000;
  --z-overlay: 1100;
  --z-mobile-menu: 1200;
  --z-floating: 1300;
  --z-preloader: 9999;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

/* ---------- Icon SVG Defaults ---------- */
svg {
  display: block;
  flex-shrink: 0;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--background);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ---------- Skip Link ---------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  z-index: 10000;
  font-weight: 600;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 0;
}

/* ---------- Preloader ---------- */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: var(--z-preloader);
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

#preloader .preloader-logo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

#preloader .preloader-gear {
  width: 48px;
  height: 48px;
  border: 4px solid var(--primary-light);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-bottom: 1.5rem;
}

#preloader .preloader-bar {
  width: 120px;
  height: 3px;
  background: var(--border);
  border-radius: var(--radius-pill);
  overflow: hidden;
}

#preloader .preloader-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: var(--radius-pill);
  animation: preloaderFill 1.5s ease-in-out infinite;
}

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

@keyframes preloaderFill {
  0% { width: 0; margin-left: 0; }
  50% { width: 60%; margin-left: 20%; }
  100% { width: 0; margin-left: 100%; }
}

/* ---------- Scroll Progress Bar ---------- */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  z-index: calc(var(--z-header) + 1);
  width: 0%;
  transition: width 0.1s linear;
  pointer-events: none;
}

/* ---------- Top Bar ---------- */
.top-bar {
  background: var(--primary-dark);
  color: #fff;
  font-size: 0.85rem;
  padding: 0.5rem 0;
  position: relative;
  z-index: var(--z-header);
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
}

.top-bar-item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: 0.85;
}

.top-bar a {
  color: #fff;
  text-decoration: none;
  transition: opacity var(--transition-fast);
}

.top-bar a:hover {
  opacity: 0.8;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  background: var(--surface);
  height: var(--header-height);
  z-index: var(--z-header);
  transition: box-shadow var(--transition), height var(--transition);
  border-bottom: 1px solid transparent;
}

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

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary);
  flex-shrink: 0;
}

.header-logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.header-nav a {
  padding: 0.5rem 0.9rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-body);
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background var(--transition-fast);
  position: relative;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.9rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-body);
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background var(--transition-fast);
  cursor: pointer;
}

.nav-dropdown-toggle:hover {
  color: var(--primary);
  background: var(--primary-light);
}

.nav-dropdown-toggle svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition);
}

.nav-dropdown.open .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  padding: 0.5rem;
  z-index: calc(var(--z-header) + 1);
}

.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 0.9rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-body);
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast), color var(--transition-fast);
}

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

.nav-dropdown-menu a svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
  flex-shrink: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
  white-space: nowrap;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 4px 15px rgba(11, 79, 156, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(11, 79, 156, 0.45);
}

.btn-secondary {
  background: var(--secondary);
  color: #fff;
  box-shadow: 0 4px 15px rgba(255, 122, 0, 0.35);
}

.btn-secondary:hover {
  background: var(--secondary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 122, 0, 0.45);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 4px 15px rgba(22, 163, 74, 0.35);
}

.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(22, 163, 74, 0.45);
}

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

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

.btn-sm {
  padding: 0.5rem 1.2rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 1rem 2.2rem;
  font-size: 1.05rem;
}

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------- Section ---------- */
.section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
  background: var(--primary-light);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-pill);
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 700px;
  display: flex;
  align-items: center;
  padding: clamp(4.5rem, 7vw, 7rem) 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(11, 79, 156, 0.13), transparent 31%),
    radial-gradient(circle at 92% 18%, rgba(255, 122, 0, 0.12), transparent 29%),
    linear-gradient(145deg, #ffffff 0%, #f5f9ff 58%, #fff8f0 100%);
}

.hero-bg,
.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-grid {
  background-image:
    linear-gradient(rgba(11, 79, 156, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 79, 156, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.75), transparent 90%);
}

.hero-layout,
.hero .container {
  position: relative;
  z-index: 2;
}

.home-hero .hero-layout {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr);
  align-items: center;
  gap: clamp(3rem, 6vw, 5.5rem);
}

.hero-content {
  min-width: 0;
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 1.25rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255, 122, 0, 0.2);
  border-radius: var(--radius-pill);
  background: rgba(255, 240, 224, 0.9);
  color: var(--secondary-dark);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.35;
  box-shadow: 0 10px 30px rgba(217, 95, 0, 0.08);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--secondary);
  box-shadow: 0 0 0 6px rgba(255, 122, 0, 0.12);
  animation: pulse 2s ease-in-out infinite;
  flex: 0 0 auto;
}

.hero-title {
  max-width: 760px;
  margin-bottom: 1.2rem;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.65rem, 4.35vw, 3.85rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.045em;
  color: var(--text-dark);
  text-wrap: balance;
}

.hero-highlight {
  color: var(--primary);
  position: relative;
  white-space: nowrap;
}

.hero-highlight::after {
  content: '';
  position: absolute;
  left: 2%;
  right: 0;
  bottom: 0.03em;
  height: 0.16em;
  border-radius: 999px;
  background: rgba(255, 122, 0, 0.28);
  z-index: -1;
}

.hero-subtitle {
  max-width: 620px;
  margin-bottom: 0.65rem;
  font-size: clamp(1.08rem, 1.6vw, 1.3rem);
  line-height: 1.55;
  font-weight: 650;
  color: var(--text-body);
}

.hero-description,
.hero-desc {
  max-width: 625px;
  margin-bottom: 1.3rem;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-light);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  margin-bottom: 1.75rem;
}

.hero-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  min-width: 0;
  color: var(--text-body);
  font-size: 0.88rem;
  font-weight: 650;
  white-space: nowrap;
}

.hero-trust-item svg {
  width: 18px;
  height: 18px;
  padding: 3px;
  border-radius: 50%;
  background: rgba(22, 163, 74, 0.12);
  color: var(--success);
  overflow: visible;
}

.hero-buttons {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-buttons .btn {
  min-height: 52px;
  padding-inline: 1.25rem;
  border-radius: 13px;
  white-space: nowrap;
  box-shadow: 0 12px 26px rgba(23, 32, 51, 0.09);
}

.hero-buttons .btn svg {
  width: 19px;
  height: 19px;
}

.hero-contact-note {
  margin-top: 0.85rem;
  font-size: 0.86rem;
  color: var(--text-light);
}

.hero-contact-note strong {
  color: var(--primary-dark);
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 560px;
  min-width: 0;
  margin-left: auto;
  padding: 1rem;
}

.hero-image-accent {
  position: absolute;
  width: 72%;
  aspect-ratio: 1;
  top: -4%;
  right: -4%;
  border-radius: 42% 58% 48% 52%;
  background: linear-gradient(145deg, rgba(11, 79, 156, 0.17), rgba(255, 122, 0, 0.2));
  transform: rotate(8deg);
  filter: blur(1px);
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1.36 / 1;
  overflow: hidden;
  border: 8px solid rgba(255,255,255,.92);
  border-radius: 36px;
  background: #dcecff;
  box-shadow: 0 34px 85px rgba(23, 32, 51, 0.19);
}

.hero-image-wrapper > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 22, 41, 0.28), transparent 42%);
  pointer-events: none;
}

.hero-image-caption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 170px;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 16px;
  background: rgba(255,255,255,.88);
  color: var(--text-dark);
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.25;
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
}

.hero-image-caption .caption-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
}

.hero-floating-badge {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  max-width: calc(100% - 2rem);
  padding: 0.72rem 0.9rem;
  border: 1px solid rgba(220, 229, 239, 0.9);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--text-dark);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.25;
  box-shadow: 0 16px 38px rgba(23, 32, 51, 0.14);
  backdrop-filter: blur(14px);
  animation: floatBadge 4s ease-in-out infinite;
}

.hero-floating-badge svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

.hero-floating-badge.badge-location {
  top: 7%;
  right: -2%;
}

.hero-floating-badge.badge-doorstep {
  left: -5%;
  bottom: 18%;
  animation-delay: 1.2s;
}

.hero-floating-badge.badge-sameday {
  right: -4%;
  bottom: 5%;
  animation-delay: 2.1s;
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.42;
  pointer-events: none;
}

.hero-blob-1 {
  width: 420px;
  height: 420px;
  top: -160px;
  left: -120px;
  background: rgba(11, 79, 156, 0.18);
  animation: blobMove 12s ease-in-out infinite;
}

.hero-blob-2 {
  width: 380px;
  height: 380px;
  right: -100px;
  bottom: -170px;
  background: rgba(255, 122, 0, 0.16);
  animation: blobMove 11s ease-in-out infinite reverse;
}

@keyframes blobMove {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(28px, -18px) scale(1.05); }
  66% { transform: translate(-18px, 20px) scale(0.96); }
}

/* Compact hero used by inner pages */
.hero.section {
  min-height: auto;
}

.hero.section .container {
  display: block;
}

.hero.section .hero-text {
  width: min(100%, 820px);
  margin-inline: auto !important;
}

/* ---------- Trust Strip ---------- */
.trust-strip {
  background: var(--surface);
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}

.trust-strip-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.5rem;
  transition: transform var(--transition);
}

.trust-strip-item:hover {
  transform: translateY(-2px);
}

.trust-strip-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-strip-icon svg {
  width: 22px;
  height: 22px;
  color: var(--primary);
}

.trust-strip-text {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
}

/* ---------- Services Section ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  opacity: 0;
  transform: translateY(30px);
}

.service-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow var(--transition), border-color var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(11, 79, 156, 0.2);
}

.service-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
  background: var(--primary-light);
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.service-card-body {
  padding: 1.5rem;
}

.service-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 1rem;
  transition: transform var(--transition);
}

.service-card:hover .service-card-icon {
  transform: translateX(4px);
}

.service-card-icon svg {
  width: 22px;
  height: 22px;
}

.service-card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.service-card-desc {
  font-size: 0.93rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.service-card-faults {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.fault-tag {
  font-size: 0.78rem;
  padding: 0.25rem 0.7rem;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-pill);
  font-weight: 500;
}

.service-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

/* ---------- About Section ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-badges {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.about-badge {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
}

.about-content .section-label {
  margin-bottom: 0.75rem;
}

.about-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.about-text {
  font-size: 1.05rem;
  color: var(--text-body);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin: 1.5rem 0;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--text-dark);
}

.about-feature svg {
  width: 20px;
  height: 20px;
  color: var(--success);
  flex-shrink: 0;
}

/* ---------- Stats Section ---------- */
.stats-section {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
}

.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #fff, rgba(255, 255, 255, 0.8));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.95rem;
  opacity: 0.85;
  font-weight: 500;
}

/* ---------- Why Choose Us ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.why-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 2rem;
  transition: transform var(--transition), box-shadow var(--transition);
  opacity: 0;
  transform: translateY(20px);
}

.why-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow var(--transition);
}

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

.why-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.why-icon svg {
  width: 26px;
  height: 26px;
  color: var(--primary);
}

.why-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.why-text {
  font-size: 0.93rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ---------- How It Works ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(20px);
}

.process-step.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.process-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--surface);
  border: 3px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.process-step:hover .process-number {
  background: var(--primary);
  color: #fff;
  transform: scale(1.08);
}

.process-icon {
  margin-top: -1.5rem;
  margin-bottom: 0.5rem;
}

.process-icon svg {
  width: 28px;
  height: 28px;
  color: var(--secondary);
}

.process-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.process-desc {
  font-size: 0.88rem;
  color: var(--text-light);
}

/* ---------- Accordion (Common Problems) ---------- */
.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: var(--surface);
  transition: box-shadow var(--transition);
}

.accordion-item.open {
  box-shadow: var(--shadow-sm);
  border-color: rgba(11, 79, 156, 0.2);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: background var(--transition-fast);
  gap: 1rem;
}

.accordion-trigger:hover {
  background: var(--surface-soft);
}

.accordion-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.accordion-item.open .accordion-icon {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow), padding var(--transition-slow);
}

.accordion-item.open .accordion-content {
  max-height: 300px;
}

.accordion-content-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.93rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ---------- Urgent Banner ---------- */
.urgent-banner {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.urgent-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 122, 0, 0.15), transparent 40%),
    radial-gradient(circle at 80% 50%, rgba(255, 122, 0, 0.1), transparent 40%);
  pointer-events: none;
}

.urgent-banner .container {
  position: relative;
  z-index: 1;
}

.urgent-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.urgent-desc {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.urgent-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.urgent-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  background: #fff;
  color: var(--primary-dark);
  font-weight: 700;
  border-radius: var(--radius-pill);
  font-size: 1.05rem;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  animation: phoneRing 2s ease-in-out infinite;
}

.urgent-call-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.urgent-call-btn svg {
  width: 22px;
  height: 22px;
}

.urgent-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  background: #25d366;
  color: #fff;
  font-weight: 700;
  border-radius: var(--radius-pill);
  font-size: 1.05rem;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  animation: whatsappPulse 2s ease-in-out infinite;
}

.urgent-whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  background: #12813c;
}

.urgent-whatsapp-btn svg {
  width: 22px;
  height: 22px;
}

@keyframes phoneRing {
  0%, 100% { transform: rotate(0); }
  10%, 30% { transform: rotate(-8deg); }
  20%, 40% { transform: rotate(8deg); }
  50% { transform: rotate(0); }
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
}

/* ---------- Service Areas ---------- */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

.area-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  opacity: 0;
  transform: translateY(20px);
}

.area-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow var(--transition), border-color var(--transition);
}

.area-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(11, 79, 156, 0.2);
}

.area-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
}

.area-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.area-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.area-text {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.area-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap var(--transition);
}

.area-link:hover {
  gap: 0.6rem;
}

.area-link svg {
  width: 16px;
  height: 16px;
}

/* ---------- Before/After Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 2rem;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  opacity: 0;
  transform: translateY(20px);
}

.gallery-item.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.gallery-comparison {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
}

.gallery-comparison img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-after {
  clip-path: inset(0 0 0 50%);
  z-index: 2;
}

.gallery-slider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: #fff;
  z-index: 3;
  transform: translateX(-50%);
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.gallery-slider::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.gallery-slider-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: ew-resize;
}

.gallery-slider-handle svg {
  width: 20px;
  height: 20px;
  color: var(--text-dark);
}

.gallery-label {
  position: absolute;
  top: 1rem;
  z-index: 5;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.gallery-label-before {
  left: 1rem;
}

.gallery-label-after {
  right: 1rem;
}

.gallery-item-info {
  padding: 1.25rem;
}

.gallery-item-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-dark);
}

/* ---------- Reviews / Testimonials ---------- */
.reviews-slider {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  transition: transform 0.5s ease;
}

.review-card {
  min-width: 100%;
  padding: 0 0.5rem;
}

.review-inner {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
}

.review-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.review-stars {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.review-stars svg {
  width: 20px;
  height: 20px;
  color: #f59e0b;
  fill: #f59e0b;
}

.review-text {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.review-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}

.review-location {
  font-size: 0.85rem;
  color: var(--text-light);
}

.reviews-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.reviews-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

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

.reviews-btn svg {
  width: 20px;
  height: 20px;
  color: var(--text-dark);
}

.reviews-dots {
  display: flex;
  gap: 0.5rem;
}

.reviews-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.reviews-dot.active {
  background: var(--primary);
  transform: scale(1.2);
}

/* ---------- Booking Form ---------- */
.booking-section {
  background: var(--surface-soft);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.booking-info {
  padding-top: 0.5rem;
}

.booking-info .section-label {
  margin-bottom: 0.75rem;
}

.booking-info-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.booking-info-text {
  font-size: 1.05rem;
  color: var(--text-body);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.booking-methods {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.booking-method {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.2rem;
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  font-weight: 500;
  font-size: 0.93rem;
  color: var(--text-dark);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.booking-method:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.booking-method svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--primary);
}

.booking-form-wrapper {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.booking-form-wrapper h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
}

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

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--surface);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
  width: 100%;
}

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

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-group .error-message {
  display: none;
  font-size: 0.8rem;
  color: var(--danger);
  align-items: center;
  gap: 0.3rem;
}

.form-group .error-message.visible {
  display: flex;
}

.form-group .error-message svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

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

.checkbox-group {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.6rem;
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 0.15rem;
  accent-color: var(--primary);
  flex-shrink: 0;
}

.checkbox-group label {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-body);
}

.checkbox-group label a {
  color: var(--primary);
  text-decoration: underline;
}

/* ---------- FAQ Section ---------- */
.faq-section {
  background: var(--surface-soft);
}

/* ---------- Contact Section ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.contact-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.contact-card-icon svg {
  width: 26px;
  height: 26px;
  color: var(--primary);
}

.contact-card-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.contact-card-text {
  font-size: 0.93rem;
  color: var(--text-light);
}

.contact-card-text a {
  color: var(--primary);
  font-weight: 600;
  transition: color var(--transition-fast);
}

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

/* ---------- Footer ---------- */
.footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(11, 79, 156, 0.3), transparent 32%),
    radial-gradient(circle at 85% 80%, rgba(255, 122, 0, 0.18), transparent 30%),
    linear-gradient(135deg, #071629 0%, #0a2442 50%, #07111f 100%);
  color: #fff;
  padding-top: 5rem;
}

.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.footer .container {
  position: relative;
  z-index: 1;
}

.footer-cta {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 3rem;
  text-align: center;
  margin-bottom: 4rem;
}

.footer-cta-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.footer-cta-desc {
  font-size: 1rem;
  opacity: 0.8;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.footer-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.footer-call-button {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.8rem;
  background: #fff;
  color: var(--primary-dark);
  font-weight: 700;
  border-radius: var(--radius-pill);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  animation: phoneRing 2.5s ease-in-out infinite;
}

.footer-call-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.footer-whatsapp-button {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.8rem;
  background: #25d366;
  color: #fff;
  font-weight: 700;
  border-radius: var(--radius-pill);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  animation: whatsappPulse 2.5s ease-in-out infinite;
}

.footer-whatsapp-button:hover {
  background: #12813c;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

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

.footer-col-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}

.footer-about p {
  font-size: 0.9rem;
  opacity: 0.75;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.footer-trust-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-trust-label {
  font-size: 0.78rem;
  padding: 0.25rem 0.7rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-pill);
  font-weight: 500;
}

.footer-links a {
  display: block;
  font-size: 0.9rem;
  opacity: 0.75;
  padding: 0.3rem 0;
  transition: opacity var(--transition-fast), padding-left var(--transition-fast);
}

.footer-links a:hover {
  opacity: 1;
  padding-left: 0.3rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  opacity: 0.75;
  margin-bottom: 0.75rem;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: var(--secondary);
}

.footer-contact-item a {
  color: #fff;
  opacity: 0.85;
  transition: opacity var(--transition-fast);
}

.footer-contact-item a:hover {
  opacity: 1;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  font-size: 0.88rem;
  opacity: 0.7;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: #fff;
  transition: opacity var(--transition-fast);
}

.footer-bottom-links a:hover {
  opacity: 0.8;
}

.developer-credit {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

.developer-credit a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    color 0.25s ease;
}

.developer-credit a::after {
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, #ff7a00, #ffffff);
  border-radius: 20px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.developer-credit a:hover {
  color: #ffb15f;
  transform: translateY(-1px);
}

.developer-credit a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.footer-disclaimer {
  font-size: 0.8rem;
  opacity: 0.5;
  padding: 1rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  line-height: 1.6;
}

/* ---------- Mobile Menu ---------- */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: var(--z-overlay);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.mobile-menu-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100%;
  background: var(--surface);
  z-index: var(--z-mobile-menu);
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

.mobile-menu-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.mobile-menu-close:hover {
  background: var(--surface-soft);
}

.mobile-menu-close svg {
  width: 22px;
  height: 22px;
}

.mobile-menu-nav {
  flex: 1;
  padding: 1rem;
}

.mobile-menu-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
  width: 100%;
  text-align: left;
}

.mobile-menu-link:hover,
.mobile-menu-link.active {
  background: var(--primary-light);
  color: var(--primary);
}

.mobile-menu-link svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.mobile-services-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.85rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}

.mobile-services-toggle:hover {
  background: var(--primary-light);
}

.mobile-services-toggle svg {
  width: 20px;
  height: 20px;
  transition: transform var(--transition);
}

.mobile-services-toggle.open svg {
  transform: rotate(180deg);
}

.mobile-services-list {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.mobile-services-list.open {
  max-height: 500px;
}

.mobile-service-link {
  display: block;
  padding: 0.65rem 1rem 0.65rem 2.5rem;
  font-size: 0.93rem;
  color: var(--text-body);
  transition: color var(--transition-fast);
}

.mobile-service-link:hover {
  color: var(--primary);
}

.mobile-menu-footer {
  padding: 1.25rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.mobile-menu-footer .btn {
  justify-content: center;
}

/* ---------- Floating Buttons ---------- */
.floating-buttons {
  position: fixed;
  right: 1.5rem;
  bottom: 2rem;
  z-index: var(--z-floating);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.floating-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  position: relative;
  cursor: pointer;
}

.floating-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.floating-btn svg {
  width: 22px;
  height: 22px;
}

.floating-btn-tooltip {
  position: absolute;
  right: calc(100% + 0.75rem);
  background: var(--text-dark);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.7rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-fast), visibility var(--transition-fast);
  pointer-events: none;
}

.floating-btn:hover .floating-btn-tooltip {
  opacity: 1;
  visibility: visible;
}

.floating-btn-call {
  background: var(--secondary);
  animation: phoneRing 2.5s ease-in-out infinite;
}

.floating-btn-whatsapp {
  background: var(--whatsapp);
  animation: whatsappPulse 2.5s ease-in-out infinite;
}

.floating-btn-book {
  background: var(--primary);
}

.floating-btn-top {
  background: var(--text-dark);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.floating-btn-top.visible {
  opacity: 1;
  visibility: visible;
}

/* ---------- Mobile Bottom Bar ---------- */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  z-index: var(--z-floating);
  padding: 0.5rem 0;
  padding-bottom: env(safe-area-inset-bottom, 0.5rem);
}

.mobile-bottom-bar .container {
  display: flex;
  justify-content: space-around;
}

.mobile-bottom-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 0.4rem 1rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-light);
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast);
}

.mobile-bottom-btn svg {
  width: 22px;
  height: 22px;
}

.mobile-bottom-btn.call-btn {
  color: var(--secondary);
}

.mobile-bottom-btn.whatsapp-btn {
  color: var(--whatsapp);
}

.mobile-bottom-btn.book-btn {
  color: var(--primary);
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.2); }
}

/* ---------- Reveal Classes ---------- */
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-scale,
.reveal-fade {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-up {
  transform: translateY(30px);
}

.reveal-left {
  transform: translateX(-30px);
}

.reveal-right {
  transform: translateX(30px);
}

.reveal-scale {
  transform: scale(0.92);
}

.reveal-fade {
  transform: none;
}

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-scale.visible,
.reveal-fade.visible {
  opacity: 1;
  transform: none;
}

/* ---------- Hamburger ---------- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  padding: 5px 0;
  z-index: calc(var(--z-mobile-menu) + 1);
}

.hamburger span {
  display: block;
  height: 2.5px;
  background: var(--text-dark);
  border-radius: var(--radius-pill);
  transition: transform var(--transition), opacity var(--transition-fast);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ---------- Map Placeholder ---------- */
.map-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(135deg, var(--primary-light), #e8f0fe);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border: 2px dashed var(--border);
  color: var(--text-light);
}

.map-placeholder svg {
  width: 48px;
  height: 48px;
  opacity: 0.5;
}

.map-placeholder p {
  font-weight: 600;
  font-size: 1rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-image {
    max-width: 500px;
    margin: 0 auto;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid::before {
    display: none;
  }

  .footer-columns {
    grid-template-columns: 1fr 1fr;
  }

  .booking-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header-nav,
  .header-actions .btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .floating-buttons {
    display: none;
  }

  .mobile-bottom-bar {
    display: block;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-columns {
    grid-template-columns: 1fr;
  }

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

  .form-grid {
    grid-template-columns: 1fr;
  }

  .top-bar-left {
    display: none;
  }

  .top-bar {
    text-align: center;
  }

  body {
    padding-bottom: 70px;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-buttons .btn {
    justify-content: center;
  }

  .areas-grid {
    grid-template-columns: 1fr;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .footer-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .urgent-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mt-2 { margin-top: 2rem; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ============================================
   Image & Icon Alignment Hardening
   ============================================ */
svg {
  vertical-align: middle;
  overflow: visible;
}

.btn svg,
.header-actions svg,
.mobile-menu-link svg,
.mobile-bottom-btn svg,
.footer-contact-item svg,
.hero-trust-item svg,
.hero-floating-badge svg,
.urgent-buttons svg,
.footer-cta-buttons svg {
  display: block;
  flex: 0 0 auto;
}

.service-card,
.why-card,
.contact-card,
.area-card {
  height: 100%;
}

.service-card {
  display: flex;
  flex-direction: column;
}

.service-card-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-width: 0;
}

.service-card-desc {
  min-height: 3.2em;
}

.service-card-faults {
  align-content: flex-start;
}

.service-card-actions {
  align-items: stretch;
  margin-top: auto;
}

.service-card-actions .btn {
  flex: 1 1 0;
  min-width: 92px;
  min-height: 42px;
  padding-inline: 1rem;
}

.service-card-icon,
.trust-strip-icon,
.why-icon,
.contact-card-icon,
.process-icon,
.header-logo-icon,
.floating-btn,
.reviews-btn {
  line-height: 0;
}

.service-card-icon > svg,
.trust-strip-icon > svg,
.why-icon > svg,
.contact-card-icon > svg,
.process-icon > svg {
  display: block;
  margin: auto;
}

.trust-strip-item {
  min-height: 60px;
}

.trust-strip-text,
.contact-card-text,
.footer-contact-item,
.hero-floating-badge,
.top-bar-item {
  min-width: 0;
}

.service-card-image img,
.hero-image-wrapper img,
.about-image img,
.service-hero-image img {
  object-position: center center;
}

.image-load-error,
img[src=""] {
  visibility: hidden;
}


/* ============================================
   Desktop icon sizing polish
   Prevent oversized SVG icons on laptop/desktop
   ============================================ */
@media (min-width: 769px) {
  .top-bar-item svg,
  .footer-contact-item svg,
  .nav-dropdown-toggle svg,
  .nav-dropdown-menu a svg,
  .hero-trust-item svg,
  .hero-buttons .btn svg,
  .hero-floating-badge svg,
  .urgent-call-btn svg,
  .urgent-whatsapp-btn svg,
  .area-link svg,
  .review-stars svg,
  .reviews-btn svg,
  .booking-method svg,
  .form-group .error-message svg,
  .footer-cta-buttons svg {
    width: 18px !important;
    height: 18px !important;
    max-width: 18px !important;
    max-height: 18px !important;
    flex: 0 0 18px;
  }

  .service-card-icon,
  .trust-strip-icon {
    width: 38px;
    height: 38px;
  }

  .service-card-icon svg,
  .trust-strip-icon svg {
    width: 18px;
    height: 18px;
  }

  .why-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 1rem;
  }

  .why-icon svg {
    width: 20px;
    height: 20px;
  }

  .contact-card-icon {
    width: 46px;
    height: 46px;
  }

  .contact-card-icon svg {
    width: 20px;
    height: 20px;
  }

  .process-icon svg {
    width: 22px;
    height: 22px;
  }

  .floating-btn {
    width: 46px;
    height: 46px;
  }

  .floating-btn svg {
    width: 20px;
    height: 20px;
  }
}


/* ============================================
   Generated markup compatibility & icon guard
   Keeps all inline SVG icons compact on desktop
   ============================================ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  padding: 0.65rem 0.75rem;
  border-radius: var(--radius-md);
  color: var(--text-dark);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
  transition: transform var(--transition), background-color var(--transition);
}

.trust-item:hover {
  transform: translateY(-2px);
  background: var(--primary-light);
}

.trust-item > svg {
  width: 22px !important;
  height: 22px !important;
  max-width: 22px !important;
  max-height: 22px !important;
  flex: 0 0 22px;
  color: var(--primary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
  gap: 1.35rem;
}

.feature-card {
  min-width: 0;
  padding: 1.6rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(11, 79, 156, 0.18);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
  color: var(--primary);
  line-height: 0;
  overflow: hidden;
}

.feature-icon > svg {
  width: 21px !important;
  height: 21px !important;
  max-width: 21px !important;
  max-height: 21px !important;
  flex: 0 0 21px;
  display: block;
}

.feature-title {
  margin: 0 0 0.55rem;
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 650;
  line-height: 1.35;
  color: var(--text-dark);
}

.feature-desc {
  margin: 0;
  color: var(--text-body);
  font-size: 0.94rem;
  line-height: 1.65;
}

.stat-card {
  text-align: center;
  padding: 1.5rem;
}

/* Final safety net: an SVG inside a known UI icon wrapper may never expand
   to the width of its section. */
:is(.service-card-icon, .trust-strip-icon, .trust-item, .why-icon, .feature-icon,
    .contact-card-icon, .process-icon, .hero-floating-badge, .hero-trust-item,
    .floating-btn, .mobile-bottom-btn, .footer-contact-item, .top-bar-item) > svg {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .trust-item {
    align-items: flex-start;
    padding: 0.6rem;
    font-size: 0.82rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }
}

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

/* PHP email form states */
.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  pointer-events: none !important;
}

.mail-form-status {
  display: none;
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.5;
}

.mail-form-status.is-loading,
.mail-form-status.is-success,
.mail-form-status.is-error {
  display: block;
}

.mail-form-status.is-loading {
  background: #eef5ff;
  color: var(--primary-dark);
  border: 1px solid #cfe0f7;
}

.mail-form-status.is-success {
  background: #eaf9ef;
  color: #0b6b31;
  border: 1px solid #bfe9cc;
}

.mail-form-status.is-error {
  background: #fff0f0;
  color: #a01f1f;
  border: 1px solid #f1c5c5;
}
