:root {
  --blue: #1a5fa8;
  --blue-dark: #134d8a;
  --gold: #e6a817;
  --gold-dark: #c8920e;
  --light-blue: #eef4fb;
  --dark: #1e1e2e;
  --gray: #6b7280;
}

* { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  color: var(--dark);
}

.text-gold { color: var(--gold); }

/* ── NAV ──────────────────────────────────── */
.navbar {
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  padding: 14px 0;
}
.navbar-brand {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--blue) !important;
  letter-spacing: -0.5px;
}
.navbar-brand span { color: var(--gold); }
.nav-link {
  color: var(--dark) !important;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.15s;
}
.nav-link:hover { color: var(--blue) !important; }
.btn-nav {
  background: var(--gold);
  color: #fff;
  border-radius: 25px;
  padding: 9px 22px;
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  transition: background 0.2s;
}
.btn-nav:hover { background: var(--gold-dark); color: #fff; }

/* ── HERO ─────────────────────────────────── */
#hero {
  background: linear-gradient(135deg, #0f4c8a 0%, #1a6ecf 60%, #2580e0 100%);
  color: #fff;
  padding: 90px 0 80px;
  overflow: hidden;
  position: relative;
}
#hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
#hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
}
#hero p { font-size: 1.1rem; opacity: 0.88; max-width: 520px; }
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 0.85rem;
}
.hero-stats .stat-number {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.hero-stats .stat-label { font-size: 0.82rem; opacity: 0.8; margin-top: 2px; }

.btn-primary-cta {
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 13px 30px;
  font-size: 1rem;
  font-weight: 700;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary-cta:hover { background: var(--gold-dark); color: #fff; transform: translateY(-1px); }
.btn-outline-cta {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.55);
  border-radius: 30px;
  padding: 11px 28px;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.2s;
}
.btn-outline-cta:hover { background: rgba(255,255,255,0.15); color: #fff; }

/* Hero Visual Cards */
.hero-visual {
  position: relative;
  width: 380px;
  height: 340px;
}
.hero-blob {
  position: absolute;
  width: 320px; height: 320px;
  background: rgba(255,255,255,0.08);
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
  top: 10px; left: 20px;
}
.hero-card {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  z-index: 2;
}
.hc-icon { font-size: 2rem; line-height: 1; }
.hc-title { font-weight: 700; color: var(--dark); font-size: 0.95rem; }
.hc-sub { font-size: 0.8rem; color: var(--gray); }
.hc-main { bottom: 20px; left: 0; min-width: 220px; }
.hc-secondary { min-width: 180px; }
.hc-top { top: 20px; right: 0; }
.hc-bottom { top: 160px; right: -10px; }

/* ── STATS BANNER ──────────────────────────── */
#stats-banner {
  background: var(--blue);
  padding: 40px 0;
}
.stat-box { padding: 10px; }
.stat-box-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.stat-box-label {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  margin-top: 4px;
}

/* ── SECTION SHARED ────────────────────────── */
section { padding: 90px 0; }
.section-tag {
  display: inline-block;
  background: var(--light-blue);
  color: var(--blue);
  border-radius: 20px;
  padding: 5px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.section-tag-light {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  color: #fff;
  border-radius: 20px;
  padding: 5px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.section-title { font-size: 2rem; font-weight: 800; color: var(--blue); }
.section-sub { color: var(--gray); font-size: 1rem; }

/* ── HOW IT WORKS ──────────────────────────── */
#how-it-works { background: var(--light-blue); }
.step-card {
  background: #fff;
  border-radius: 18px;
  padding: 36px 28px;
  text-align: center;
  height: 100%;
  position: relative;
  border: 2px solid transparent;
  transition: transform 0.2s, box-shadow 0.2s;
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(26,95,168,0.12);
}
.step-card-featured {
  border-color: var(--blue);
  box-shadow: 0 12px 36px rgba(26,95,168,0.15);
}
.step-number {
  position: absolute;
  top: -16px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.step-icon {
  font-size: 2.4rem;
  color: var(--blue);
  margin: 12px 0 16px;
}
.step-card h4 { font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.step-card p { color: var(--gray); font-size: 0.95rem; margin: 0; }

/* ── SERVICES ──────────────────────────────── */
#services { background: #fff; }
.service-card {
  border-radius: 18px;
  padding: 32px 26px;
  background: var(--light-blue);
  border: 2px solid transparent;
  transition: transform 0.2s, box-shadow 0.2s;
  height: 100%;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(26,95,168,0.1);
}
.service-card-featured {
  background: var(--blue);
  color: #fff;
  position: relative;
}
.service-card-featured .text-muted { color: rgba(255,255,255,0.7) !important; }
.service-badge {
  position: absolute;
  top: -12px; left: 28px;
  background: var(--gold);
  color: #fff;
  border-radius: 20px;
  padding: 3px 14px;
  font-size: 0.75rem;
  font-weight: 700;
}
.service-icon {
  font-size: 2rem;
  color: var(--blue);
  margin-bottom: 16px;
  display: block;
}
.service-card-featured .service-icon { color: rgba(255,255,255,0.9); }
.service-card h4 { font-weight: 700; margin-bottom: 8px; }
.service-card-featured h4 { color: #fff; }
.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--gray);
}
.service-card-featured .service-list { color: rgba(255,255,255,0.85); }
.service-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 7px;
  font-size: 0.92rem;
}
.service-list li i { color: var(--blue); font-size: 0.85rem; flex-shrink: 0; }
.service-card-featured .service-list li i { color: var(--gold); }
.btn-service {
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 22px;
  padding: 10px 22px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s;
}
.btn-service:hover { background: var(--blue-dark); color: #fff; }
.btn-service-white {
  background: #fff;
  color: var(--blue);
  border: none;
  border-radius: 22px;
  padding: 10px 22px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s;
}
.btn-service-white:hover { background: var(--light-blue); color: var(--blue); }

/* ── PRICING ───────────────────────────────── */
#pricing { background: var(--light-blue); }
.pricing-card {
  background: #fff;
  border: 2px solid #e2eaf5;
  border-radius: 18px;
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  height: 100%;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(26,95,168,0.1);
}
.pricing-card.featured {
  border-color: var(--blue);
  transform: scale(1.04);
  box-shadow: 0 20px 50px rgba(26,95,168,0.18);
}
.pricing-card.featured:hover { transform: scale(1.04) translateY(-4px); }
.pricing-icon { font-size: 2rem; color: var(--blue); margin-bottom: 12px; }
.badge-featured {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.price-amount {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  margin: 10px 0 4px;
}
.price-amount sup { font-size: 1.2rem; vertical-align: super; }
.price-period { color: var(--gray); font-size: 0.88rem; }
.pricing-list {
  list-style: none;
  padding: 0;
  text-align: left;
  color: var(--gray);
  font-size: 0.92rem;
}
.pricing-list li {
  padding: 5px 0;
  border-bottom: 1px solid #f0f4f8;
}
.pricing-list li::before { content: "✓ "; color: var(--blue); font-weight: 700; }
.btn-price {
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 12px 28px;
  font-weight: 700;
  width: 100%;
  margin-top: 16px;
  transition: background 0.2s;
}
.btn-price:hover { background: var(--blue-dark); color: #fff; }
.btn-price-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
  border-radius: 25px;
  padding: 10px 28px;
  font-weight: 700;
  width: 100%;
  margin-top: 16px;
  transition: all 0.2s;
}
.btn-price-outline:hover { background: var(--blue); color: #fff; }

/* ── TESTIMONIALS ──────────────────────────── */
#testimonials { background: #fff; padding: 90px 0; }
.testimonial-card {
  background: var(--light-blue);
  border-radius: 20px;
  padding: 44px 44px 36px;
  text-align: center;
  margin: 0 auto;
}
.stars { font-size: 1.5rem; color: var(--gold); margin-bottom: 16px; }
.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--dark);
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.author-avatar {
  width: 46px; height: 46px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.author-name { font-weight: 700; color: var(--dark); font-size: 0.95rem; }
.author-location { font-size: 0.82rem; color: var(--gray); }
.testimonial-indicators {
  position: relative !important;
  margin-top: 24px !important;
}
.testimonial-indicators [data-bs-target] {
  background-color: #c5d6ec !important;
  width: 10px; height: 10px;
  border-radius: 50%;
  border: none;
}
.testimonial-indicators .active { background-color: var(--blue) !important; }

/* ── ABOUT ─────────────────────────────────── */
#about { background: var(--light-blue); }
#about h2 { font-size: 2rem; font-weight: 800; color: var(--blue); }
.about-feature { display: flex; gap: 14px; margin-bottom: 22px; align-items: flex-start; }
.about-feature-icon {
  width: 46px; height: 46px;
  background: var(--blue);
  color: #fff;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.about-feature h6 { font-weight: 700; margin-bottom: 3px; }
.about-feature p { color: var(--gray); font-size: 0.9rem; margin: 0; }

.about-visual {
  background: #fff;
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 8px 30px rgba(26,95,168,0.08);
}
.trust-badge-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.trust-badge {
  background: var(--light-blue);
  border-radius: 14px;
  padding: 20px 16px;
  text-align: center;
  transition: transform 0.2s;
}
.trust-badge:hover { transform: translateY(-2px); }
.trust-icon { font-size: 1.6rem; color: var(--blue); margin-bottom: 8px; }
.trust-text { font-size: 0.85rem; font-weight: 600; color: var(--dark); }

/* ── FAQ ───────────────────────────────────── */
#faq { background: #fff; }
.faq-item {
  border: none;
  border-bottom: 1px solid #e8eef6;
  margin-bottom: 0;
}
.faq-button {
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark);
  background: #fff;
  padding: 18px 0;
  box-shadow: none !important;
}
.faq-button:not(.collapsed) { color: var(--blue); }
.faq-button::after { filter: none; }
.faq-body {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
  padding: 0 0 18px 0;
  background: #fff;
}

/* ── CONTACT ───────────────────────────────── */
#contact {
  background: linear-gradient(135deg, #0f4c8a 0%, #1a6ecf 100%);
  color: #fff;
  padding: 90px 0;
}
#contact h2 { font-size: 2rem; font-weight: 800; }
.contact-form {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.form-label-custom { color: var(--dark); font-weight: 600; font-size: 0.9rem; margin-bottom: 6px; }
.contact-form .form-control {
  border-radius: 10px;
  border: 1.5px solid #e2eaf5;
  padding: 11px 14px;
  font-size: 0.95rem;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.contact-form .form-control:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,95,168,0.1);
}
.contact-info-item { display: flex; gap: 14px; margin-bottom: 22px; align-items: flex-start; }
.contact-info-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info-item h6 { font-weight: 700; margin-bottom: 2px; }
.contact-info-item p { opacity: 0.82; font-size: 0.92rem; margin: 0; }
.btn-submit {
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 13px 28px;
  font-size: 1rem;
  font-weight: 700;
  width: 100%;
  transition: background 0.2s, transform 0.15s;
}
.btn-submit:hover { background: var(--gold-dark); color: #fff; transform: translateY(-1px); }

/* ── FOOTER ────────────────────────────────── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.65);
  padding: 40px 0 24px;
  font-size: 0.9rem;
}
.footer-brand { font-size: 1.3rem; font-weight: 800; color: var(--blue); }
.footer-brand span { color: var(--gold); }
.footer-tagline { font-size: 0.82rem; margin-top: 4px; }
.footer-links { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.88rem; transition: color 0.15s; }
.footer-links a:hover { color: var(--gold); }
.footer-contact a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.88rem; transition: color 0.15s; }
.footer-contact a:hover { color: var(--gold); }
.footer-divider { border-color: rgba(255,255,255,0.1); margin: 24px 0 16px; }
.footer-copy { text-align: center; font-size: 0.82rem; margin: 0; }

/* ── FLOATING CALL BUTTON ──────────────────── */
.float-call {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px; height: 58px;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 6px 24px rgba(230,168,23,0.45);
  z-index: 999;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  animation: pulse-ring 2s ease-out infinite;
}
.float-call:hover { background: var(--gold-dark); color: #fff; transform: scale(1.08); }

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(230,168,23,0.45); }
  70% { box-shadow: 0 0 0 14px rgba(230,168,23,0); }
  100% { box-shadow: 0 0 0 0 rgba(230,168,23,0); }
}

/* ── BACK TO TOP ───────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 28px;
  width: 44px; height: 44px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 16px rgba(26,95,168,0.3);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s, transform 0.15s;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--blue-dark); transform: translateY(-2px); }

/* ── RESPONSIVE ────────────────────────────── */
@media (max-width: 991px) {
  #hero h1 { font-size: 2.1rem; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-4px); }
}
@media (max-width: 576px) {
  section { padding: 60px 0; }
  #hero { padding: 60px 0; }
  #hero h1 { font-size: 1.8rem; }
  .testimonial-card { padding: 28px 20px; }
  .contact-form { padding: 24px 20px; }
  .float-call { bottom: 20px; right: 20px; }
  .back-to-top { bottom: 88px; right: 20px; }
}
