
:root {
  --turq: #00d1c5;
  --turq-soft: #a9f3ea;
  --gold: #ffcf5f;
  --text-main: #132238;
  --text-muted: #6b7280;
  --bg-main: #f3f6fb;
  --bg-soft: #ffffff;
  --border-soft: #e5e7eb;
  --shadow-soft: 0 20px 45px rgba(15, 23, 42, 0.12);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #ffffff 0, #f3f6ff 45%, #edf2ff 100%);
  color: var(--text-main);
}

a { color: var(--text-main); }
a:hover { color: var(--turq); }

/* Top strip */
.top-strip {
  background: linear-gradient(90deg, #ffffff 0, #fdfdf6 40%, #fff8e3 100%);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

/* Navbar */
.main-nav {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(226,232,240,0.9);
}

.logo-badge {
  width: 42px;
  height: 42px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: conic-gradient(from 150deg, var(--gold), var(--turq), #ffffff, var(--gold));
  color: #020617;
  box-shadow: 0 12px 30px rgba(15,23,42,0.18);
}

.brand-title {
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.1;
}
.brand-subtitle {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.nav-link {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-inline: 4px;
}
.nav-link.active,
.nav-link:hover {
  color: var(--text-main);
}

.nav-call-btn {
  border-radius: 999px;
  background: linear-gradient(135deg, var(--turq), var(--gold));
  border: none;
  font-weight: 700;
  color: #020617;
  box-shadow: 0 12px 30px rgba(15,23,42,0.25);
}

/* Hero */
.hero-section {
  padding: 48px 0 40px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--border-soft);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.badge-icon {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: radial-gradient(circle at 0 0, var(--turq-soft), var(--turq));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #020617;
  font-size: 0.7rem;
}

.hero-title {
  font-size: clamp(2.2rem, 3.4vw, 3rem);
  font-weight: 900;
  color: var(--text-main);
}
.hero-title span {
  background: linear-gradient(135deg, var(--turq), var(--gold));
  -webkit-background-clip: text;
  color: transparent;
}
.hero-text {
  color: var(--text-muted);
  font-size: 0.98rem;
}

.hero-bullets {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  font-size: 0.9rem;
  color: var(--text-main);
}
.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-bullets i {
  color: #16a34a;
}

.hero-call-btn {
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--turq), var(--gold));
  color: #020617;
  font-weight: 800;
  padding-inline: 30px;
  box-shadow: 0 18px 44px rgba(15,23,42,0.25);
}
.hero-call-btn:hover {
  color: #020617;
}

.hero-info {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Hero carousel */
.hero-carousel {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 22px 55px rgba(15,23,42,0.28);
  position: relative;
}

.hero-slide {
  position: relative;
}
.hero-slide img {
  object-fit: cover;
  height: 360px;
}
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, transparent 0, rgba(15,23,42,0.65) 55%);
}
.hero-slide-caption {
  position: absolute;
  left: 20px;
  bottom: 20px;
  right: 20px;
  color: #f9fafb;
}
.hero-slide-caption h2 {
  font-size: 1.3rem;
  font-weight: 800;
}
.hero-slide-caption p {
  font-size: 0.9rem;
  max-width: 360px;
}

.carousel-control-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(15,23,42,0.45);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f9fafb;
}

/* Sections */
.section {
  padding: 48px 0;
}
.bg-soft {
  background: #f9fafb;
}

.section-header h2 {
  font-weight: 800;
}
.section-header p {
  color: var(--text-muted);
}

/* Cards */
.service-card,
.detail-card,
.faq-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid var(--border-soft);
  padding: 18px 18px 16px;
  box-shadow: var(--shadow-soft);
}

.icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 0 0, var(--turq-soft), var(--turq));
  color: #020617;
  margin-bottom: 10px;
}

.mini-list {
  list-style: none;
  padding-left: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.mini-list li::before {
  content: "• ";
  color: var(--turq);
}

/* Process */
.process-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0,1fr));
  gap: 18px;
}
.process-step {
  text-align: center;
  padding: 18px 12px 14px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid var(--border-soft);
  box-shadow: 0 16px 38px rgba(15,23,42,0.14);
  font-size: 0.9rem;
}
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--turq), var(--gold));
  color: #020617;
  font-weight: 800;
  margin-bottom: 8px;
}

/* Brand & district cards */
.brand-card,
.district-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid var(--border-soft);
  background: #ffffff;
  text-decoration: none;
  color: var(--text-main);
  font-size: 0.9rem;
  box-shadow: 0 14px 30px rgba(15,23,42,0.14);
  transition: transform 0.14s ease, box-shadow 0.14s ease, border-color 0.14s ease;
}
.brand-card:hover,
.district-card:hover {
  transform: translateY(-2px);
  border-color: var(--turq);
  box-shadow: 0 18px 40px rgba(15,23,42,0.22);
}
.brand-pill,
.district-pill {
  font-size: 0.75rem;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.9);
  color: var(--text-muted);
}

/* Mini error table */
.mini-error-table table thead {
  background: #f1f5f9;
}
.mini-error-table td, .mini-error-table th {
  font-size: 0.85rem;
}

/* Price table */
.price-table table thead {
  background: #111827;
  color: #f9fafb;
}

/* FAQ card */
.faq-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
}
.faq-card {
  padding: 18px 18px;
}

/* Floating call button */
.fixed-call-btn {
  position: fixed;
  right: 18px;
  bottom: 22px;
  z-index: 999;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--turq), var(--gold));
  color: #020617;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 20px 45px rgba(15,23,42,0.35);
}
.fixed-call-btn:hover {
  color: #020617;
  transform: translateY(-1px);
}

/* Footer */
.footer {
  background: #f9fafb;
  border-top: 1px solid var(--border-soft);
}

/* Responsive */
@media (max-width: 991.98px) {
  .hero-section {
    padding-top: 32px;
  }
  .hero-carousel img {
    height: 260px;
  }
  .process-row {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
}

@media (max-width: 575.98px) {
  .fixed-call-btn {
    left: 16px;
    right: 16px;
    text-align: center;
    justify-content: center;
    display: flex;
  }
  .process-row {
    grid-template-columns: 1fr;
  }
}
