﻿/* ============================================================
   ZAFER OTO KURTARMA — PREMIUM DESIGN SYSTEM
   Dark Luxury Automotive — Awwwards Level
   ============================================================ */

/* ── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  --primary:       #FFB000;
  --primary-dark:  #E09800;
  --primary-glow:  rgba(255,176,0,0.25);
  --primary-glow2: rgba(255,176,0,0.08);
  --bg:            #05070B;
  --surface:       #0D1117;
  --surface2:      #121821;
  --surface3:      #1A2233;
  --border:        rgba(255,255,255,0.07);
  --border-gold:   rgba(255,176,0,0.3);
  --text:          #FFFFFF;
  --text-muted:    #9CA3AF;
  --text-dim:      #6B7280;
  --success:       #10B981;
  --danger:        #EF4444;
  --radius:        12px;
  --radius-lg:     20px;
  --radius-xl:     32px;
  --shadow-gold:   0 0 40px rgba(255,176,0,0.15);
  --shadow-card:   0 8px 32px rgba(0,0,0,0.4);
  --transition:    all 0.3s cubic-bezier(0.4,0,0.2,1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: clip;
  max-width: 100%;
  width: 100%;
}

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: clip;
  max-width: 100%;
  width: 100%;
  padding-top: 80px;
  position: relative;
}

.site-root {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }

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

::selection { background: var(--primary); color: #000; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--surface); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ── TOP BAR ────────────────────────────────────────────────── */
.top-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.8rem;
  padding: 0.5rem 0;
  position: relative;
  z-index: 1060;
}
.top-bar .top-bar-left span { margin-right: 1.5rem; }
.top-bar .top-bar-left i { color: var(--primary); margin-right: 0.35rem; }
.top-bar .top-bar-right a {
  color: var(--text-muted);
  margin-left: 0.75rem;
  font-size: 0.85rem;
  transition: var(--transition);
}
.top-bar .top-bar-right a:hover { color: var(--primary); }

/* ── NAVBAR ─────────────────────────────────────────────────── */
#mainNavbar {
  background: rgba(5,7,11,0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
  transition: var(--transition);
  z-index: 1100;
}
#mainNavbar.navbar-scrolled {
  background: rgba(5,7,11,0.97);
  border-bottom-color: var(--border-gold);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.navbar-brand {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--text) !important;
  letter-spacing: -0.5px;
}
.navbar-brand .brand-accent { color: var(--primary); }
.navbar-brand .brand-icon {
  width: 36px; height: 36px;
  background: var(--primary);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  color: #000;
  font-size: 1rem;
}

/* Navbar Links */
.navbar-nav .nav-link {
  color: rgba(255,255,255,0.8) !important;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  position: relative;
  transition: var(--transition);
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 1rem; right: 1rem;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  border-radius: 2px;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--primary) !important; }
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { transform: scaleX(1); }

/* Dropdown */
.dropdown-menu {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  padding: 0.5rem;
  min-width: 220px;
  margin-top: 0.5rem !important;
}
.dropdown-item {
  color: var(--text-muted);
  border-radius: 8px;
  padding: 0.6rem 1rem;
  font-size: 0.875rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.dropdown-item i { color: var(--primary); width: 18px; text-align: center; }
.dropdown-item:hover { background: var(--surface3); color: var(--text); }
.dropdown-divider { border-color: var(--border); margin: 0.25rem 0; }

/* Mega Dropdown */
.mega-dropdown { position: static !important; }
.mega-dropdown .dropdown-menu {
  width: 100%;
  left: 0; right: 0;
  padding: 1.5rem;
}
.mega-service-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  color: var(--text-muted);
}
.mega-service-item:hover { background: var(--surface3); color: var(--text); }
.mega-service-icon {
  width: 40px; height: 40px;
  background: var(--primary-glow2);
  border: 1px solid var(--border-gold);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
}
.mega-service-title { font-weight: 600; font-size: 0.875rem; color: var(--text); }
.mega-service-desc { font-size: 0.75rem; color: var(--text-dim); margin-top: 0.15rem; }

/* Navbar CTA */
.navbar-cta { gap: 0.5rem; }
.btn-nav-call {
  background: var(--primary);
  color: #000 !important;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-nav-call:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: var(--shadow-gold); }
.btn-nav-wa {
  background: transparent;
  border: 1px solid rgba(37,211,102,0.4);
  color: #25d366 !important;
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  transition: var(--transition);
}
.btn-nav-wa:hover { background: rgba(37,211,102,0.1); }

/* Mobil menü butonu — header sağ */
.btn-mobile-menu {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 2px solid var(--primary);
  background: rgba(255,176,0,0.15);
  border-radius: 10px;
  color: var(--primary);
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: var(--transition);
  cursor: pointer;
}
.btn-mobile-menu:hover,
.btn-mobile-menu:focus {
  background: var(--primary);
  color: #000;
  box-shadow: 0 0 0 0.2rem rgba(255,176,0,0.3);
}

/* Mobil yan menü (offcanvas) */
.mobile-nav-offcanvas {
  width: min(320px, 88vw);
  background: var(--bg);
  border-left: 1px solid var(--border-gold);
  z-index: 1110;
}
.mobile-nav-offcanvas .offcanvas-header {
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 1.25rem 1rem;
}
.mobile-nav-offcanvas .offcanvas-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
}
.mobile-nav-offcanvas .offcanvas-body {
  padding: 1rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.mobile-nav-offcanvas.show .mobile-nav-link {
  animation: mobileNavIn 0.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  opacity: 0;
  transform: translateX(16px);
}
.mobile-nav-offcanvas.show .mobile-nav-link:nth-child(1) { animation-delay: 0.04s; }
.mobile-nav-offcanvas.show .mobile-nav-link:nth-child(2) { animation-delay: 0.07s; }
.mobile-nav-offcanvas.show .mobile-nav-link:nth-child(3) { animation-delay: 0.1s; }
.mobile-nav-offcanvas.show .mobile-nav-link:nth-child(4) { animation-delay: 0.13s; }
.mobile-nav-offcanvas.show .mobile-nav-link:nth-child(5) { animation-delay: 0.16s; }
.mobile-nav-offcanvas.show .mobile-nav-link:nth-child(n+6) { animation-delay: 0.19s; }
@keyframes mobileNavIn {
  to { transform: translateX(0); opacity: 1; }
}
.mobile-nav-link i {
  width: 20px;
  text-align: center;
  color: var(--primary);
}
.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: var(--primary-glow2);
  color: var(--primary);
}
.mobile-nav-link-sub {
  padding-left: 1.75rem;
  font-size: 0.88rem;
}
.mobile-nav-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.mobile-nav-actions .btn-emergency-call,
.mobile-nav-actions .btn-emergency-wa {
  padding: 0.75rem 0.5rem;
  font-size: 0.82rem;
}
.offcanvas-backdrop.show {
  opacity: 0.75;
}
body.mobile-menu-open {
  overflow: hidden;
}

/* ── HERO SLIDER ──────────────────────────────────────────── */
.hero-slider-section {
  position: relative;
  margin-top: -80px;
  padding-top: 80px;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.hero-swiper {
  width: 100%;
  max-width: 100%;
  height: min(88vh, 820px);
  min-height: 520px;
  overflow: hidden !important;
}
.hero-swiper .swiper-wrapper,
.hero-swiper .swiper-slide {
  max-width: 100%;
}
.hero-swiper .swiper-slide {
  position: relative;
  overflow: hidden;
  width: 100% !important;
}
.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-color: #05070B;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.03);
  transition: transform 8s ease;
}
.hero-swiper .swiper-slide-active .hero-slide-bg {
  transform: scale(1);
}
.hero-slide-inner.container {
  width: 100%;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: auto;
  margin-right: auto;
}
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(5,7,11,0.78) 0%, rgba(5,7,11,0.4) 55%, rgba(5,7,11,0.6) 100%);
  z-index: 1;
}
.hero-slide-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 4rem 0 5rem;
}
.hero-slide-content {
  max-width: 720px;
}
.hero-slide-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.12;
  color: #fff;
  margin-bottom: 1.25rem;
  letter-spacing: -0.5px;
}
.hero-slide-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 560px;
}
.hero-slide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}
.hero-swiper-pagination {
  bottom: 28px !important;
}
.hero-swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,0.35);
  opacity: 1;
}
.hero-swiper-pagination .swiper-pagination-bullet-active {
  background: var(--primary);
  width: 28px;
  border-radius: 5px;
}
.hero-swiper-prev,
.hero-swiper-next {
  color: var(--primary) !important;
  width: 44px;
  height: 44px;
  background: rgba(0,0,0,0.45);
  border-radius: 50%;
  border: 1px solid var(--border-gold);
  backdrop-filter: blur(8px);
  top: auto;
  bottom: 72px;
  margin-top: 0;
}
.hero-swiper-prev { left: 12px; right: auto; }
.hero-swiper-next { right: 12px; left: auto; }
.hero-swiper-prev::after,
.hero-swiper-next::after {
  font-size: 1rem !important;
  font-weight: 700;
}
.hero-trust-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}
.hero-trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
}
.hero-trust-strip-inner span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 500;
}
.hero-trust-strip-inner i {
  color: var(--primary);
}

/* ── HERO SECTION (legacy) ─────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: -80px;
  padding-top: 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #05070B 0%, #0D1117 40%, #121821 100%);
  z-index: 0;
}
.hero-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  z-index: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5,7,11,0.95) 0%, rgba(5,7,11,0.7) 50%, rgba(5,7,11,0.85) 100%);
  z-index: 2;
}
.hero-glow {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,176,0,0.12) 0%, transparent 70%);
  top: -100px; left: -100px;
  z-index: 2;
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,176,0,0.06) 0%, transparent 70%);
  bottom: 0; right: 10%;
  z-index: 2;
  pointer-events: none;
}
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}
.hero-particle {
  position: absolute;
  width: 2px; height: 2px;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0.4;
  animation: floatParticle linear infinite;
}
@keyframes floatParticle {
  0% { transform: translateY(100vh) translateX(0); opacity: 0; }
  10% { opacity: 0.4; }
  90% { opacity: 0.4; }
  100% { transform: translateY(-100px) translateX(30px); opacity: 0; }
}
.hero-content { position: relative; z-index: 5; padding: 6rem 0 4rem; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,176,0,0.1);
  border: 1px solid var(--border-gold);
  color: var(--primary);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-badge i { font-size: 0.75rem; }
.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}
.hero-title .highlight {
  color: var(--primary);
  position: relative;
  display: inline-block;
}
.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  opacity: 0.5;
}
.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

/* Hero Buttons */
.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--primary);
  color: #000;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-hero-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: var(--transition);
}
.btn-hero-primary:hover { color: #000; transform: translateY(-3px); box-shadow: 0 12px 40px rgba(255,176,0,0.4); }
.btn-hero-primary:hover::before { opacity: 1; }
.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  color: var(--text);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: var(--transition);
}
.btn-hero-secondary:hover { color: var(--text); border-color: var(--primary); background: rgba(255,176,0,0.08); }
.btn-hero-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(37,211,102,0.1);
  color: #25d366;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  border: 1px solid rgba(37,211,102,0.3);
  transition: var(--transition);
}
.btn-hero-wa:hover { color: #25d366; background: rgba(37,211,102,0.2); transform: translateY(-2px); }

/* Hero Trust Badges */
.hero-trust { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.hero-trust-item i { color: var(--primary); }

/* Hero Right Cards */
.hero-cards { position: relative; }
.hero-card {
  background: rgba(18,24,33,0.8);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  backdrop-filter: blur(20px);
  transition: var(--transition);
  margin-bottom: 1rem;
}
.hero-card:hover { border-color: var(--border-gold); transform: translateX(-4px); box-shadow: var(--shadow-gold); }
.hero-card-icon {
  width: 44px; height: 44px;
  background: var(--primary-glow2);
  border: 1px solid var(--border-gold);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}
.hero-card-value { font-size: 1.5rem; font-weight: 800; color: var(--primary); }
.hero-card-label { font-size: 0.8rem; color: var(--text-muted); }

/* Hero Stats */
.hero-stats {
  position: relative;
  z-index: 5;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
}
.hero-stat-item { text-align: center; padding: 0.5rem 1rem; }
.hero-stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  font-family: 'Poppins', sans-serif;
  line-height: 1;
}
.hero-stat-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.25rem; }
.hero-stat-divider { width: 1px; background: var(--border); align-self: stretch; }

/* ── SECTION COMMONS ────────────────────────────────────────── */
.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }
.section-dark { background: var(--surface); }
.section-darker { background: var(--bg); }
.section-surface2 { background: var(--surface2); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary-glow2);
  border: 1px solid var(--border-gold);
  color: var(--primary);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}
.section-title .accent { color: var(--primary); }
.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.8;
}
.section-header { margin-bottom: 3.5rem; }
.section-header.center { text-align: center; }
.section-header.center .section-desc { margin: 0 auto; }

/* Divider */
.gold-divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--primary), transparent);
  border-radius: 2px;
  margin: 1rem 0;
}
.gold-divider.center { margin: 1rem auto; }

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary);
  color: #000;
  font-weight: 700;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  border: none;
  font-size: 0.9rem;
  transition: var(--transition);
  cursor: pointer;
}
.btn-gold:hover { color: #000; background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,176,0,0.35); }
.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--primary);
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  border: 1px solid var(--border-gold);
  font-size: 0.9rem;
  transition: var(--transition);
}
.btn-outline-gold:hover { background: var(--primary-glow2); color: var(--primary); transform: translateY(-2px); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--text-muted);
  font-weight: 500;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  border: 1px solid var(--border);
  font-size: 0.9rem;
  transition: var(--transition);
}
.btn-ghost:hover { color: var(--text); border-color: rgba(255,255,255,0.2); }

/* ── SERVICE CARDS ──────────────────────────────────────────── */
.service-card-premium {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.service-card-premium::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0;
  transition: var(--transition);
}
.service-card-premium::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255,176,0,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
}
.service-card-premium:hover {
  border-color: var(--border-gold);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), var(--shadow-gold);
}
.service-card-premium:hover::before { opacity: 1; }
.service-card-premium:hover::after { opacity: 1; }
.service-card-premium:hover .service-icon-wrap { background: var(--primary); border-color: var(--primary); }
.service-card-premium:hover .service-icon-wrap i { color: #000; }

.service-icon-wrap {
  width: 60px; height: 60px;
  background: var(--primary-glow2);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}
.service-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}
.service-card-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
  position: relative;
  z-index: 1;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 1.5rem;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}
.service-card-link i { transition: transform 0.3s ease; }
.service-card-link:hover { color: var(--primary-dark); }
.service-card-link:hover i { transform: translateX(4px); }

/* Service card number */
.service-card-num {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255,255,255,0.03);
  font-family: 'Poppins', sans-serif;
  line-height: 1;
  z-index: 0;
}

/* ── WHY US SECTION ─────────────────────────────────────────── */
.why-feature {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.why-feature:hover { border-color: var(--border-gold); background: var(--surface3); }
.why-feature-icon {
  width: 52px; height: 52px;
  background: var(--primary-glow2);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.why-feature-title { font-size: 1rem; font-weight: 700; margin-bottom: 0.35rem; }
.why-feature-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* ── PROCESS TIMELINE ───────────────────────────────────────── */
.process-timeline { position: relative; }
.process-timeline::before {
  content: '';
  position: absolute;
  top: 40px; left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: calc(100% - 80px);
  background: linear-gradient(180deg, var(--primary), transparent);
  opacity: 0.3;
}
.process-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  margin-bottom: 2rem;
  position: relative;
}
.process-step-num {
  width: 48px; height: 48px;
  background: var(--primary);
  color: #000;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 20px rgba(255,176,0,0.3);
}
.process-step-content { padding-top: 0.5rem; }
.process-step-title { font-size: 1rem; font-weight: 700; margin-bottom: 0.35rem; }
.process-step-desc { font-size: 0.875rem; color: var(--text-muted); }

/* ── EMERGENCY CTA STRIP ────────────────────────────────────── */
.emergency-strip {
  background: linear-gradient(135deg, #1A0A00 0%, #2D1500 50%, #1A0A00 100%);
  border-top: 1px solid rgba(255,176,0,0.2);
  border-bottom: 1px solid rgba(255,176,0,0.2);
  padding: 2.5rem 0;
  position: relative;
  overflow: hidden;
}
.emergency-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,176,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.emergency-strip .container {
  position: relative;
  z-index: 2;
}
.emergency-actions {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 1rem;
  flex-wrap: nowrap;
}
.emergency-actions a {
  flex: 1 1 0;
  min-width: 0;
  pointer-events: auto;
  position: relative;
  z-index: 3;
}
.btn-emergency-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--primary);
  color: #000;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.95rem 1.25rem;
  border-radius: 50px;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-emergency-call:hover {
  color: #000;
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,176,0,0.35);
}
.btn-emergency-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: #25d366;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.95rem 1.25rem;
  border-radius: 50px;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-emergency-wa:hover {
  color: #fff;
  background: #1ebe57;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.35);
}
.emergency-phone {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--primary);
  font-family: 'Poppins', sans-serif;
  letter-spacing: -1px;
  line-height: 1;
}
.emergency-phone a { color: inherit; }
.emergency-phone a:hover { color: var(--primary-dark); }
.emergency-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}
.emergency-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,176,0,0.1);
  border: 1px solid var(--border-gold);
  color: var(--primary);
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  animation: pulse-gold 2s infinite;
}
@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,176,0,0.3); }
  50% { box-shadow: 0 0 0 8px rgba(255,176,0,0); }
}

/* ── GALLERY ────────────────────────────────────────────────── */
.gallery-grid { columns: 3; gap: 1rem; }
.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img { width: 100%; display: block; transition: transform 0.5s ease; }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5,7,11,0.7);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item-overlay i { font-size: 2rem; color: var(--primary); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

/* Lightbox */
.lightbox-modal .modal-content {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.lightbox-modal .modal-body { padding: 0; }
.lightbox-modal img { border-radius: var(--radius-lg); width: 100%; }
.lightbox-modal .btn-close { filter: invert(1); }

/* ── TESTIMONIALS ───────────────────────────────────────────── */
.testimonial-card-premium {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  height: 100%;
  position: relative;
}
.testimonial-card-premium::before {
  content: '\201C';
  position: absolute;
  top: 1rem; right: 1.5rem;
  font-size: 5rem;
  color: var(--primary);
  opacity: 0.1;
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-card-premium:hover { border-color: var(--border-gold); }
.testimonial-stars { color: var(--primary); font-size: 0.85rem; margin-bottom: 1rem; }
.testimonial-text { font-size: 0.9rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
  width: 44px; height: 44px;
  background: var(--primary-glow2);
  border: 2px solid var(--border-gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 0.9rem; }
.testimonial-position { font-size: 0.75rem; color: var(--text-dim); }

/* ── BLOG CARDS ─────────────────────────────────────────────── */
.blog-card-premium {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.blog-card-premium:hover { border-color: var(--border-gold); transform: translateY(-4px); box-shadow: var(--shadow-card); }
.blog-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--surface3);
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card-premium:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-category {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--primary);
  color: #000;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-bottom: 0.75rem;
}
.blog-card-meta i { color: var(--primary); }
.blog-card-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.4;
  flex: 1;
}
.blog-card-title a { color: var(--text); }
.blog-card-title a:hover { color: var(--primary); }
.blog-card-excerpt { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }
.blog-card-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.blog-read-more {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.blog-read-more i { transition: transform 0.3s; }
.blog-read-more:hover i { transform: translateX(3px); }

/* ── FAQ ACCORDION ──────────────────────────────────────────── */
.faq-accordion .accordion-item {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius) !important;
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.faq-accordion .accordion-button {
  background: var(--surface2);
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 1.25rem 1.5rem;
  border: none;
  box-shadow: none !important;
}
.faq-accordion .accordion-button:not(.collapsed) {
  background: var(--surface3);
  color: var(--primary);
}
.faq-accordion .accordion-button::after {
  filter: invert(1);
  opacity: 0.5;
}
.faq-accordion .accordion-button:not(.collapsed)::after {
  filter: none;
  opacity: 1;
}
.faq-accordion .accordion-body {
  background: var(--surface3);
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid var(--border);
}

/* ── SERVICE AREAS ──────────────────────────────────────────── */
.area-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 0.6rem 1.25rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: var(--transition);
  text-decoration: none;
}
.area-badge i { color: var(--primary); font-size: 0.75rem; }
.area-badge:hover { border-color: var(--border-gold); color: var(--text); background: var(--surface3); }

/* ── CONTACT SECTION ────────────────────────────────────────── */
.contact-form-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.contact-info-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  height: 100%;
}
.contact-info-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
  width: 44px; height: 44px;
  background: var(--primary-glow2);
  border: 1px solid var(--border-gold);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-info-label { font-size: 0.75rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.5px; }
.contact-info-value { font-size: 0.95rem; font-weight: 600; color: var(--text); }
.contact-info-value a { color: var(--text); }
.contact-info-value a:hover { color: var(--primary); }

/* Form Inputs */
.form-control-dark {
  background: var(--surface3);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  transition: var(--transition);
}
.form-control-dark:focus {
  background: var(--surface3);
  border-color: var(--border-gold);
  color: var(--text);
  box-shadow: 0 0 0 3px rgba(255,176,0,0.1);
  outline: none;
}
.form-control-dark::placeholder { color: var(--text-dim); }
.form-label-dark { color: var(--text-muted); font-size: 0.85rem; font-weight: 500; margin-bottom: 0.5rem; }

/* ── FOOTER ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 5rem 0 0;
}
.footer-brand-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 1rem 0 1.5rem;
}
.footer-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.5rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
  color: var(--text-muted);
  font-size: 0.875rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-links a::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--primary); padding-left: 0.5rem; }
.footer-links a:hover::before { opacity: 1; }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.footer-contact li i { color: var(--primary); margin-top: 0.2rem; width: 16px; flex-shrink: 0; }
.footer-contact li a { color: var(--text-muted); }
.footer-contact li a:hover { color: var(--primary); }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.footer-social a {
  width: 38px; height: 38px;
  background: var(--surface3);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--primary); border-color: var(--primary); color: #000; transform: translateY(-2px); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  margin-top: 4rem;
}
.footer-bottom p { margin: 0; font-size: 0.85rem; color: var(--text-dim); }
.footer-bottom-social { display: flex; gap: 0.5rem; justify-content: flex-end; }
.footer-bottom-social a {
  width: 32px; height: 32px;
  background: var(--surface3);
  border: 1px solid var(--border);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dim);
  font-size: 0.8rem;
  transition: var(--transition);
}
.footer-bottom-social a:hover { color: var(--primary); border-color: var(--border-gold); }

/* ── WHATSAPP & MOBILE BAR ──────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 58px; height: 58px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem;
  z-index: 1055;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: wa-pulse 3s infinite;
}
.whatsapp-float:hover { color: #fff; transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.1); }
}

.mobile-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  z-index: 1040;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.4);
  box-sizing: border-box;
  padding-bottom: env(safe-area-inset-bottom, 0);
  padding-left: env(safe-area-inset-left, 0);
  padding-right: env(safe-area-inset-right, 0);
}
.mobile-bar-btn {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 0.5rem;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: var(--transition);
  border: none;
  background: transparent;
  cursor: pointer;
}
.mobile-bar-label {
  font-size: clamp(0.7rem, 3.2vw, 0.85rem);
  line-height: 1.1;
  white-space: nowrap;
}
.mobile-bar-btn i { font-size: 1.15rem; flex-shrink: 0; }
.call-btn { background: var(--primary); color: #000 !important; }
.call-btn:hover { background: var(--primary-dark); color: #000 !important; }
.whatsapp-btn { background: #25d366; }
.whatsapp-btn:hover { background: #1da851; color: #fff; }

/* ── PAGE HERO (inner pages) ────────────────────────────────── */
.page-hero {
  position: relative;
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface2) 100%);
  padding: 5rem 0 3rem;
  margin-top: -80px;
  padding-top: calc(80px + 4rem);
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(255,176,0,0.06) 0%, transparent 60%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary-glow2);
  border: 1px solid var(--border-gold);
  color: var(--primary);
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.page-hero-title {
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
  letter-spacing: -0.5px;
}
.page-hero-desc { font-size: 1rem; color: var(--text-muted); max-width: 600px; }

/* Breadcrumb */
.breadcrumb-wrap {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.breadcrumb { margin: 0; font-size: 0.85rem; }
.breadcrumb-item a { color: var(--text-muted); }
.breadcrumb-item a:hover { color: var(--primary); }
.breadcrumb-item.active { color: var(--text-dim); }
.breadcrumb-item + .breadcrumb-item::before { color: var(--text-dim); }

/* ── BLOG DETAIL ────────────────────────────────────────────── */
.blog-detail-cover {
  width: 100%;
  aspect-ratio: 16/7;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
}
.blog-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.blog-detail-meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.blog-detail-meta-item i { color: var(--primary); }
.blog-detail-content {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text-muted);
}
.blog-detail-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin: 2rem 0 1rem;
}
.blog-detail-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin: 1.5rem 0 0.75rem;
}
.blog-detail-content p { margin-bottom: 1.25rem; }
.blog-detail-content ul, .blog-detail-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}
.blog-detail-content li { margin-bottom: 0.4rem; }
.blog-detail-content strong { color: var(--text); }
.blog-detail-content a { color: var(--primary); }
.blog-detail-content blockquote {
  border-left: 3px solid var(--primary);
  padding: 1rem 1.5rem;
  background: var(--surface2);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--text-muted);
}

/* Tags */
.tag-list { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tag-item {
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  font-size: 0.8rem;
  transition: var(--transition);
  text-decoration: none;
}
.tag-item:hover { border-color: var(--border-gold); color: var(--primary); }

/* Sidebar */
.sidebar-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.sidebar-card-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}
.sidebar-cta-card {
  background: linear-gradient(135deg, var(--surface2), var(--surface3));
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  position: sticky;
  top: 100px;
}
.sidebar-cta-phone {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  font-family: 'Poppins', sans-serif;
  margin: 1rem 0;
}
.sidebar-cta-phone a { color: inherit; }

/* ── SERVICE DETAIL ─────────────────────────────────────────── */
.service-detail-content {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text-muted);
}
.service-detail-content h2 { font-size: 1.5rem; font-weight: 700; color: var(--text); margin: 2rem 0 1rem; }
.service-detail-content h3 { font-size: 1.2rem; font-weight: 700; color: var(--text); margin: 1.5rem 0 0.75rem; }
.service-detail-content p { margin-bottom: 1.25rem; }
.service-detail-content ul { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.service-detail-content li { margin-bottom: 0.4rem; }
.service-detail-content strong { color: var(--text); }

/* Advantage list */
.advantage-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}
.advantage-item:last-child { border-bottom: none; }
.advantage-item i { color: var(--primary); margin-top: 0.2rem; flex-shrink: 0; }
.advantage-item-text { font-size: 0.9rem; color: var(--text-muted); }

/* ── 404 PAGE ───────────────────────────────────────────────── */
.error-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.error-code {
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 900;
  color: var(--primary);
  font-family: 'Poppins', sans-serif;
  line-height: 1;
  opacity: 0.15;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.error-content { position: relative; z-index: 1; }

/* ── AOS OVERRIDES ──────────────────────────────────────────── */
[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }
[data-aos] a,
[data-aos] button,
[data-aos] .emergency-actions,
[data-aos] .emergency-actions a {
  pointer-events: auto;
}

/* ── SWIPER OVERRIDES ───────────────────────────────────────── */
.swiper-pagination-bullet { background: var(--text-muted); opacity: 0.5; }
.swiper-pagination-bullet-active { background: var(--primary); opacity: 1; }
.swiper-button-next, .swiper-button-prev {
  color: var(--primary);
  background: var(--surface2);
  border: 1px solid var(--border);
  width: 44px; height: 44px;
  border-radius: 50%;
}
.swiper-button-next::after, .swiper-button-prev::after { font-size: 0.9rem; }

/* ── STATS COUNTER ──────────────────────────────────────────── */
.stat-counter-wrap {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}
.stat-counter-wrap:hover { border-color: var(--border-gold); }
.stat-counter-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary);
  font-family: 'Poppins', sans-serif;
  line-height: 1;
}
.stat-counter-label { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.5rem; }

/* ── REGIONS SECTION ────────────────────────────────────────── */
.regions-wrap { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* ── UTILITY ────────────────────────────────────────────────── */
.text-primary-gold { color: var(--primary) !important; }
.bg-surface { background: var(--surface) !important; }
.bg-surface2 { background: var(--surface2) !important; }
.border-gold { border-color: var(--border-gold) !important; }
.rounded-premium { border-radius: var(--radius-lg) !important; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 991.98px) {
  html, body, .site-root {
    overflow-x: clip !important;
    max-width: 100% !important;
  }

  .container,
  .container-fluid {
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  section,
  footer,
  .hero-trust-strip {
    max-width: 100%;
    overflow-x: clip;
  }

  body { padding-bottom: calc(52px + env(safe-area-inset-bottom, 0px)); }
  .hero-content { padding: 4rem 0 3rem; }
  .hero-cards { margin-top: 2rem; }
  .gallery-grid { columns: 2; }
  .page-hero { padding-top: calc(80px + 2.5rem); }
  .whatsapp-float { display: none; }

  .btn-mobile-menu { display: flex; }

  #mainNavbar {
    padding: 0.6rem 0;
  }
  #mainNavbar .container {
    flex-wrap: nowrap;
    align-items: center;
  }
  #mainNavbar .navbar-brand {
    font-size: 0.95rem;
    flex: 1 1 auto;
    min-width: 0;
    max-width: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-right: 0.5rem;
  }
  #mainNavbar .navbar-brand .brand-icon {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }

  .hero-slider-section {
    margin-top: -64px;
    padding-top: 64px;
    overflow: hidden;
  }
  .hero-swiper {
    height: auto;
    min-height: 0;
    overflow: hidden !important;
  }
  .hero-swiper .swiper-slide {
    min-height: 72vh;
    max-height: 82vh;
    overflow: hidden;
  }
  .hero-slide-bg {
    transform: none !important;
  }
  .hero-slide-overlay {
    background: linear-gradient(180deg, rgba(5,7,11,0.5) 0%, rgba(5,7,11,0.82) 55%, rgba(5,7,11,0.94) 100%);
  }
  .hero-slide-inner {
    padding: 5rem 1rem 5.5rem;
    align-items: center;
    justify-content: center;
  }
  .hero-slide-content {
    max-width: 100%;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
  }
  .hero-slide-content .hero-badge {
    margin-left: auto;
    margin-right: auto;
    font-size: 0.65rem;
    padding: 0.35rem 0.7rem;
    max-width: 100%;
    text-align: center;
    line-height: 1.3;
  }
  .hero-slide-title {
    font-size: clamp(1.45rem, 6vw, 2rem);
    margin-bottom: 0.65rem;
    text-shadow: 0 2px 12px rgba(0,0,0,0.6);
    text-align: center;
  }
  .hero-slide-desc {
    font-size: 0.88rem;
    margin-bottom: 1.25rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 1px 8px rgba(0,0,0,0.5);
    text-align: center;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-slide-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 0.5rem;
    width: 100%;
    max-width: min(100%, 360px);
    margin: 0 auto;
    padding: 0 0.15rem;
    box-sizing: border-box;
  }
  .hero-slide-actions .btn-hero-primary,
  .hero-slide-actions .btn-hero-wa {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    justify-content: center;
    padding: 0.65rem 0.35rem;
    font-size: clamp(0.68rem, 2.8vw, 0.8rem);
    border-radius: 50px;
    margin: 0;
    gap: 0.35rem;
    white-space: nowrap;
    box-sizing: border-box;
  }
  .hero-slide-actions .btn-hero-primary i,
  .hero-slide-actions .btn-hero-wa i {
    font-size: 0.9rem;
    flex-shrink: 0;
  }
  .hero-slide-actions .btn-hero-wa {
    background: #25d366;
    color: #fff;
    border-color: #25d366;
  }
  .hero-slide-actions .btn-hero-secondary {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: center;
    padding: 0.65rem 1rem;
    font-size: 0.82rem;
  }
  .hero-swiper-prev,
  .hero-swiper-next {
    display: none;
  }
  .hero-swiper-pagination {
    bottom: 14px !important;
  }
  .hero-trust-strip {
    overflow: hidden;
  }
  .hero-trust-strip-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 0.65rem 0.75rem;
    justify-items: stretch;
    width: 100%;
  }
  .hero-trust-strip-inner span {
    font-size: 0.72rem;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-bottom-bar {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}
@media (max-width: 767.98px) {
  .section { padding: 4rem 0; }
  .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
  .gallery-grid { columns: 1; }
  .hero-stat-divider { display: none; }
  .hero-stats .row { gap: 0.5rem; }
  .emergency-phone { font-size: clamp(1.5rem, 6vw, 2.5rem); }
  .emergency-actions { flex-direction: column; }
  .emergency-actions a { flex: 1 1 auto; width: 100%; }
  .contact-form-card { padding: 1.5rem; }
  .footer-bottom-social { justify-content: flex-start; margin-top: 0.5rem; }
}
@media (max-width: 575.98px) {
  .hero-buttons { flex-direction: column; }
  .navbar-brand { font-size: 0.95rem; }
  .hero-swiper .swiper-slide {
    min-height: 68vh;
  }
}
