/* ===========================
   SIRVI AMBULANCE SERVICE CSS
   =========================== */

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

:root {
  --primary: #0B5ED7;
  --primary-dark: #084298;
  --primary-light: #DCEBFF;
  --primary-xlight: #EEF5FF;
  --white: #FFFFFF;
  --light: #F5F9FF;
  --gray: #6C757D;
  --border: #E5E7EB;
  --accent: #E63946;
  --accent-dark: #C1121F;
  --text: #1F2937;
  --text-light: #6B7280;
  --whatsapp: #25D366;
  --whatsapp-dark: #1da851;
  --shadow: 0 10px 30px rgba(0,0,0,.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.12);
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===========================
   SCROLL PROGRESS BAR
   =========================== */
#progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ===========================
   PAGE LOADER
   =========================== */
#page-loader {
  position: fixed;
  inset: 0;
  background: #0B5ED7;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#page-loader.hide { opacity: 0; visibility: hidden; }
.loader-content { text-align: center; }
.loader-siren {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  animation: sirenPulse 0.8s ease-in-out infinite alternate;
}
.loader-text { color: white; font-size: 14px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; }
@keyframes sirenPulse { from { transform: scale(1); opacity: 0.8; } to { transform: scale(1.15); opacity: 1; } }

/* ===========================
   TYPOGRAPHY
   =========================== */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title span { color: var(--primary); }
.section-subtitle {
  font-size: 16px;
  color: var(--text-light);
  max-width: 580px;
  line-height: 1.7;
}
.section-header { margin-bottom: 50px; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
}
.btn-primary {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(11,94,215,.35);
  color: white;
}
.btn-accent {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}
.btn-accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(230,57,70,.35);
  color: white;
}
.btn-whatsapp {
  background: var(--whatsapp);
  color: white;
  border-color: var(--whatsapp);
}
.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  border-color: var(--whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,.35);
  color: white;
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}
.btn-white {
  background: white;
  color: var(--primary);
  border-color: white;
}
.btn-white:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
}
.btn-outline-white {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,.7);
}
.btn-outline-white:hover {
  background: white;
  color: var(--primary);
  border-color: white;
}
.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn-lg { padding: 16px 36px; font-size: 16px; }

/* ===========================
   SECTIONS
   =========================== */
section { padding: 80px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===========================
   HEADER / NAVIGATION
   =========================== */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all 0.4s ease;
  padding: 0;
}
.header-top {
  background: var(--primary-dark);
  padding: 7px 0;
}
.header-top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.header-top-left { display: flex; align-items: center; gap: 20px; }
.header-top-link {
  color: rgba(255,255,255,.85);
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.header-top-link:hover { color: white; }
.header-top-right { display: flex; align-items: center; gap: 10px; }
.social-icon {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  color: white;
  font-size: 12px;
  transition: all 0.2s;
}
.social-icon:hover { background: var(--primary); }

.header-main {
  background: white;
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo-wrap { display: flex; align-items: center; gap: 12px; }
.logo-img { height: 52px; width: auto; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.3px;
}
.logo-tagline { font-size: 10px; color: var(--text-light); font-weight: 500; }

.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  border-radius: 8px;
  transition: all 0.2s;
  position: relative;
}
.nav-link:hover, .nav-link.active {
  color: var(--primary);
  background: var(--primary-xlight);
}
.nav-actions { display: flex; align-items: center; gap: 8px; }
.nav-emergency {
  background: var(--accent);
  color: white;
  padding: 9px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s;
  animation: pulse-red 2s infinite;
}
.nav-emergency:hover {
  background: var(--accent-dark);
  transform: scale(1.03);
  color: white;
}
@keyframes pulse-red {
  0%, 100% { box-shadow: 0 0 0 0 rgba(230,57,70,.4); }
  50% { box-shadow: 0 0 0 8px rgba(230,57,70,0); }
}
.nav-whatsapp {
  background: var(--whatsapp);
  color: white;
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  font-size: 18px;
  transition: all 0.3s;
}
.nav-whatsapp:hover { background: var(--whatsapp-dark); transform: scale(1.1); color: white; }

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

#header.scrolled .header-top { display: none; }

/* ===========================
   HERO SECTION
   =========================== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../img/sirvi-hero-958-470.jpg') center/cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,30,63,.92) 0%, rgba(11,94,215,.75) 60%, rgba(8,30,63,.85) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding-top: 120px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  color: white;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 24px;
}
.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: blink 1s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

.hero-title {
  font-size: clamp(32px, 5.5vw, 62px);
  font-weight: 900;
  color: white;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.hero-title span { color: #FFD166; }

.hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,.85);
  margin-bottom: 36px;
  line-height: 1.7;
  font-weight: 400;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 50px; }

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.hero-stat {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.15);
  padding: 12px 18px;
  border-radius: 12px;
}
.hero-stat-icon {
  width: 36px; height: 36px;
  background: var(--primary);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 16px;
  flex-shrink: 0;
}
.hero-stat-text { display: flex; flex-direction: column; line-height: 1.2; }
.hero-stat-val { font-size: 14px; font-weight: 700; color: white; }
.hero-stat-lbl { font-size: 11px; color: rgba(255,255,255,.7); }

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.6);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}
.hero-scroll i { font-size: 20px; }
@keyframes scrollBounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* ===========================
   QUICK CONTACT BAR
   =========================== */
#quick-bar {
  background: var(--primary);
  padding: 0;
}
.quick-bar-inner {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}
.quick-bar-item {
  flex: 1;
  min-width: 200px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 28px;
  color: white;
  border-right: 1px solid rgba(255,255,255,.15);
  transition: background 0.3s;
  cursor: pointer;
}
.quick-bar-item:last-child { border-right: none; }
.quick-bar-item:hover { background: var(--primary-dark); }
.quick-bar-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.quick-bar-text strong { display: block; font-size: 15px; font-weight: 700; }
.quick-bar-text span { font-size: 12px; opacity: .8; }

/* ===========================
   ABOUT SECTION
   =========================== */
#about { background: var(--light); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.about-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-xl);
}
.about-badge-float {
  position: absolute;
  bottom: 24px; left: 24px;
  background: white;
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
}
.about-badge-float .icon {
  width: 48px; height: 48px;
  background: var(--primary);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 22px;
}
.about-badge-float strong { font-size: 22px; font-weight: 800; color: var(--primary); display: block; }
.about-badge-float span { font-size: 12px; color: var(--text-light); }

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--primary-xlight);
  border-radius: var(--radius);
  border-left: 3px solid var(--primary);
}
.about-feature i { color: var(--primary); font-size: 20px; margin-top: 2px; flex-shrink: 0; }
.about-feature h4 { font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.about-feature p { font-size: 12px; color: var(--text-light); line-height: 1.5; }

/* ===========================
   STATS COUNTER
   =========================== */
#stats {
  background: var(--primary);
  padding: 0 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 40px 20px;
  border-right: 1px solid rgba(255,255,255,.15);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-icon {
  width: 60px; height: 60px;
  background: rgba(255,255,255,.15);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  color: white;
  margin: 0 auto 16px;
}
.stat-num {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  color: white;
  line-height: 1;
  margin-bottom: 6px;
  font-variant-numeric: tabular-nums;
}
.stat-label { font-size: 13px; color: rgba(255,255,255,.75); font-weight: 500; }

/* ===========================
   SERVICES SECTION
   =========================== */
#services { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  border: 1px solid var(--border);
  transition: all 0.4s cubic-bezier(.25,.8,.25,1);
  position: relative;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(11,94,215,.15);
  border-color: var(--primary-light);
}
.service-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.service-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-img img { transform: scale(1.08); }
.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,30,63,.7) 0%, transparent 60%);
}
.service-icon-badge {
  position: absolute;
  top: 14px; left: 14px;
  width: 44px; height: 44px;
  background: var(--primary);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(11,94,215,.4);
}
.service-body { padding: 20px; }
.service-name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.service-desc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}
.service-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.service-actions .btn { flex: 1; min-width: 100px; justify-content: center; font-size: 12px; padding: 8px 12px; }

/* ===========================
   WHY CHOOSE US
   =========================== */
#why { background: var(--light); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.why-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.why-card:hover::before { transform: scaleX(1); }
.why-icon {
  width: 60px; height: 60px;
  background: var(--primary-xlight);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  color: var(--primary);
  margin: 0 auto 16px;
  transition: all 0.3s;
}
.why-card:hover .why-icon {
  background: var(--primary);
  color: white;
  transform: scale(1.1);
}
.why-title { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.why-text { font-size: 12px; color: var(--text-light); line-height: 1.6; }

/* ===========================
   PROCESS SECTION
   =========================== */
#process { background: var(--white); }
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
  flex-wrap: wrap;
}
.process-line {
  position: absolute;
  top: 36px; left: 0; right: 0;
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.process-line-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  width: 0%;
  transition: width 1.5s ease;
}
.step {
  flex: 1;
  min-width: 120px;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 10px;
}
.step-circle {
  width: 72px; height: 72px;
  background: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 24px;
  margin: 0 auto 16px;
  border: 4px solid white;
  box-shadow: 0 4px 20px rgba(11,94,215,.3);
  position: relative;
  transition: all 0.3s;
}
.step-num {
  position: absolute;
  top: -4px; right: -4px;
  width: 22px; height: 22px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: white;
  border: 2px solid white;
}
.step:hover .step-circle { transform: scale(1.1); background: var(--accent); }
.step-label { font-size: 13px; font-weight: 600; color: var(--text); }
.step-sub { font-size: 11px; color: var(--text-light); margin-top: 4px; }

/* ===========================
   GALLERY
   =========================== */
#gallery { background: var(--light); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-grid .gallery-item:first-child {
  grid-row: span 2;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  min-height: 200px;
  transition: transform 0.5s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11,94,215,.7);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { color: white; font-size: 32px; }

/* ===========================
   TESTIMONIALS
   =========================== */
#testimonials { background: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0,0,0,.04);
  position: relative;
  transition: all 0.3s;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px; right: 24px;
  font-size: 72px;
  color: var(--primary-light);
  font-family: Georgia, serif;
  line-height: 1;
}
.stars { display: flex; gap: 3px; margin-bottom: 14px; }
.stars i { color: #FFC107; font-size: 14px; }
.testimonial-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.author-avatar {
  width: 44px; height: 44px;
  background: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}
.author-info strong { display: block; font-size: 14px; font-weight: 600; }
.author-info span { font-size: 12px; color: var(--text-light); }
.google-badge {
  margin-left: auto;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
}
.google-badge img { width: 24px; }

/* ===========================
   FAQ SECTION
   =========================== */
#faq { background: var(--light); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.faq-item {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.faq-item.open { border-color: var(--primary-light); box-shadow: 0 4px 20px rgba(11,94,215,.08); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  transition: color 0.2s;
}
.faq-item.open .faq-question { color: var(--primary); }
.faq-toggle {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--primary-xlight);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: 12px;
  flex-shrink: 0;
  transition: all 0.3s;
}
.faq-item.open .faq-toggle { background: var(--primary); color: white; transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 20px;
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 20px 18px; }

/* ===========================
   CTA SECTION
   =========================== */
#cta {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #1a6fe8 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
#cta .container { position: relative; z-index: 1; }
.cta-title {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  color: white;
  margin-bottom: 16px;
}
.cta-sub { font-size: 16px; color: rgba(255,255,255,.8); margin-bottom: 40px; }
.cta-numbers {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.cta-num {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  padding: 16px 28px;
  color: white;
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 12px;
}
.cta-num i { font-size: 24px; color: #FFD166; }
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ===========================
   CONTACT SECTION
   =========================== */
#contact { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 50px;
  align-items: start;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--light);
  border-radius: var(--radius);
  margin-bottom: 16px;
}
.contact-icon {
  width: 48px; height: 48px;
  background: var(--primary);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 20px;
  flex-shrink: 0;
}
.contact-info-item strong { display: block; font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.contact-info-item p, .contact-info-item a {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}
.contact-info-item a:hover { color: var(--primary); }
.contact-map {
  margin-top: 20px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.contact-map iframe { display: block; }

.contact-form-wrap {
  background: var(--light);
  border-radius: var(--radius-xl);
  padding: 36px;
}
.contact-form-wrap h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text);
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: white;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(11,94,215,.1);
}
textarea.form-control { resize: vertical; min-height: 110px; }

/* ===========================
   FOOTER
   =========================== */
#footer {
  background: #0a1628;
  color: rgba(255,255,255,.75);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-logo-wrap { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo-img { height: 60px; }
.footer-logo-name { font-size: 18px; font-weight: 800; color: white; }
.footer-about {
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: 14px;
  transition: all 0.2s;
}
.footer-social-link:hover { background: var(--primary); color: white; transform: translateY(-2px); }
.footer-heading {
  font-size: 15px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px; height: 2px;
  background: var(--primary);
  border-radius: 2px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,.65);
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a i { font-size: 10px; color: var(--primary); }
.footer-links a:hover { color: white; padding-left: 4px; }
.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 14px;
}
.footer-contact-item i { color: var(--primary); font-size: 14px; margin-top: 2px; flex-shrink: 0; }
.footer-contact-item span { font-size: 13px; color: rgba(255,255,255,.65); line-height: 1.6; }
.footer-contact-item a { color: rgba(255,255,255,.65); }
.footer-contact-item a:hover { color: white; }

.footer-bottom {
  background: rgba(0,0,0,.2);
  padding: 20px 0;
  margin-top: 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.5); }
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  font-size: 12px;
  color: rgba(255,255,255,.5);
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: white; }

/* ===========================
   FLOATING BUTTONS
   =========================== */
#float-btns {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.float-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 50px;
  color: white;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
  transition: all 0.3s;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}
.float-btn:hover { transform: translateX(-4px) scale(1.03); color: white; }
.float-btn-call { background: var(--accent); animation: pulse-red 2s infinite; }
.float-btn-wa { background: var(--whatsapp); }
.float-btn-top {
  background: var(--primary);
  width: 46px; height: 46px;
  padding: 0;
  justify-content: center;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
}
.float-btn-top.show { opacity: 1; pointer-events: auto; }
.float-btn i { font-size: 16px; }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-bottom: 1px solid rgba(255,255,255,.15); }
  .stat-item:nth-child(2n) { border-right: none; }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }
  .hamburger { display: flex; }
  .nav-menu{
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height .35s ease;
        box-shadow: 0 10px 25px rgba(0,0,0,.12);
        z-index: 9999;
    }

    .nav-menu.active{
        max-height: 600px;
    }

    .nav-menu li{
        width:100%;
        list-style:none;
    }

    .nav-menu li a{
        display:block;
        width:100%;
        padding:15px 20px;
        text-decoration:none;
        color:#222;
        border-bottom:1px solid #eee;
        font-size:16px;
    }

    .nav-menu li:last-child a{
        border-bottom:none;
    }

  .nav-menu.open { max-height: 500px; }
  .nav-link { padding: 12px 16px; border-radius: 10px; }
  .nav-actions { display: none; }
  .header-top { display: none; }
  .header-main .nav-inner { position: relative; }
  .hero-content { max-width: 100%; padding-top: 100px; }
  .hero-actions { flex-direction: column; }
  .hero-stats { gap: 10px; }
  .hero-stat { flex: 1; min-width: calc(50% - 5px); }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid .gallery-item:first-child { grid-row: span 1; }
  .faq-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; align-items: center; gap: 24px; }
  .process-line { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .quick-bar-inner { flex-direction: column; }
  .quick-bar-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.15); }
  .cta-numbers { flex-direction: column; align-items: center; }
  .testimonials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .float-btn-call span, .float-btn-wa span { display: none; }
  .float-btn-call, .float-btn-wa {
    width: 52px; height: 52px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
  .hero-stat { min-width: 100%; }
}

/* AOS fallback */
[data-aos] { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-aos].aos-animate { opacity: 1; transform: translateY(0); }
[data-aos="fade-right"] { transform: translateX(-20px); }
[data-aos="fade-right"].aos-animate { transform: translateX(0); }
[data-aos="fade-left"] { transform: translateX(20px); }
[data-aos="fade-left"].aos-animate { transform: translateX(0); }
[data-aos="zoom-in"] { transform: scale(0.9); }
[data-aos="zoom-in"].aos-animate { transform: scale(1); }
