:root {
  --bg: #f7f7f6; /* off-white page background */
  --bg-soft: #ffffff;
  --charcoal: #111217; /* near-black sections/footer */
  --text: #1f2933; /* dark body text */
  --text-muted: #6b7280; /* muted greys */
  --gold: #F6B84B; /* primary accent */
  --gold-2: #E59A2C;
  --surface: #ffffff; /* white cards */
  --surface-soft: #fbfbfb; /* subtle alternate surfaces */
  --border: rgba(16,24,40,0.06);
  --shadow: 0 14px 40px rgba(16,24,40,0.06);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}
a { text-decoration: none; color: inherit; }
a:hover { color: var(--gold); }
img { max-width: 100%; display: block; }
section { scroll-margin-top: 90px; }

.navbar {
  background: var(--bg-soft); /* white header */
  border-bottom: 1px solid rgba(16,24,40,0.06);
  box-shadow: 0 6px 18px rgba(16,24,40,0.04);
}
.navbar-brand {
  display: inline-flex;
  align-items: center;
  padding: 0.125rem 0;
  margin-right: 1.25rem;
  flex: 0 0 auto;
}
.navbar-brand-logo {
  width: clamp(260px, 20vw, 300px);
  max-width: 35vw;
  height: auto;
  object-fit: contain;
  display: block;
  padding: 0 8px 0 0;
}
@media (max-width: 991px) {
  .navbar-brand-logo {
    width: clamp(170px, 24vw, 220px);
    max-width: 220px;
  }
}
@media (max-width: 576px) {
  .navbar-brand {
    margin-right: 0.5rem;
  }
  .navbar-brand-logo {
    width: clamp(130px, 40vw, 170px);
    max-width: 170px;
  }
}
.navbar-nav .nav-link { color: var(--charcoal); font-weight: 600; }
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active { color: var(--gold); }

/* subtle active underline for desktop */
.navbar-nav .nav-link.active { position: relative; }
.navbar-nav .nav-link.active::after { content: ''; position: absolute; left: 0; right: 0; bottom: -8px; height: 3px; background: linear-gradient(90deg,var(--gold),var(--gold-2)); border-radius: 3px; width: 40%; margin: 0 auto; }

/* Toggler icon color for white navbar (Bootstrap uses this for navbar-light) */
.navbar-light .navbar-toggler-icon { background-image: none; }
.navbar-light .navbar-toggler { color: var(--charcoal); border-color: rgba(16,24,40,0.08); }
.navbar-light .navbar-toggler .navbar-toggler-icon::before { content: '\2630'; font-size: 20px; color: var(--charcoal); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #ffffff;
  border: none;
  font-weight: 700;
  border-radius: 12px;
  padding: 0.7rem 1.2rem;
  box-shadow: var(--shadow);
}
.btn-gold:hover { transform: translateY(-2px); }
.btn-outline-light { border-radius: 10rem; }
.hero .btn-outline-light {
  color: var(--charcoal);
  background: rgba(255,255,255,0.96);
  border-color: rgba(17,18,23,0.26);
  font-weight: 700;
}
.hero .btn-outline-light:hover,
.hero .btn-outline-light:focus {
  color: var(--charcoal);
  background: #ffffff;
  border-color: rgba(17,18,23,0.38);
}

.hero {
  min-height: 80vh;
  background: radial-gradient(circle at 10% 20%, rgba(246,184,75,0.06), transparent 25%), linear-gradient(180deg, transparent, transparent 60%);
  position: relative;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(246,184,75,0.06) 0 200px, transparent 200px);
  opacity: 0.9;
  pointer-events: none;
}
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.hero h1 { max-width: 720px; color: var(--charcoal); }
.text-light-70 { color: rgba(31,41,51,0.75); }
.hero-card, .info-card, .service-card, .benefit-card, .contact-form, .highlights-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1.2rem;
  padding: 1.6rem;
  box-shadow: var(--shadow);
}
.mini-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.9rem;
  padding: 1rem;
  min-height: 100px;
  display: flex; flex-direction: column; justify-content: center; gap: 0.5rem;
}
.mini-card i, .icon-wrap i, .benefit-card i { color: var(--gold); font-size: 1.3rem; }
.section { padding: 6rem 0; background: transparent; }
.section-alt { background: var(--bg-soft); }
.section-heading { margin-bottom: 2rem; }
.service-card:hover, .benefit-card:hover, .info-card:hover { transform: translateY(-5px); border-color: rgba(246,184,75,0.35); transition: all 0.25s ease; }
.icon-wrap {
  width: 3rem; height: 3rem; display: inline-flex; align-items: center; justify-content: center; border-radius: 0.6rem; background: rgba(246,184,75,0.12); margin-bottom: 1rem; color: var(--gold);
}
.benefit-card { min-height: 220px; }
.highlight-pill {
  background: rgba(246,184,75,0.08);
  border: 1px solid rgba(246,184,75,0.18);
  border-radius: 999px;
  padding: 0.6rem 0.9rem;
  color: var(--gold);
  text-align: center;
  font-weight: 600;
}
.contact-list li { display: flex; gap: 0.8rem; margin-bottom: 0.9rem; align-items: flex-start; }
.contact-list a { color: var(--text); }
.form-control {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
}
.form-control::placeholder { color: var(--text-muted); }
.form-control:focus { background: var(--surface); color: var(--text); box-shadow: 0 0 0 0.18rem rgba(246,184,75,0.12); border-color: rgba(246,184,75,0.18); }
.footer { background: var(--charcoal); border-top: 1px solid rgba(255,255,255,0.02); color: #e6e9ee; }
.footer-links li { margin-bottom: 0.5rem; color: rgba(230,233,238,0.85); }
.footer h3,
.footer h4,
.footer h5,
.footer h6 {
  color: #f5f7fa;
}
.footer .text-muted {
  color: #cfd6df !important;
}
.footer .footer-links,
.footer .footer-links li,
.footer .footer-links a {
  color: #e6e9ee;
}
.footer .border-top {
  border-top-color: rgba(255,255,255,0.15) !important;
}
.whatsapp-float {
  position: fixed; right: 24px; bottom: 24px; width: 56px; height: 56px; display: grid; place-items: center;
  border-radius: 50%; background: linear-gradient(135deg, #25D366, #128C7E); color: white; box-shadow: 0 12px 30px rgba(18,140,126,0.12); z-index: 99;
}
.page-shell { padding: 6rem 0 3rem; }
.page-card { background: var(--surface); border: 1px solid var(--border); border-radius: 1rem; padding: 1.6rem; }
.nav-link-cta { color: var(--gold) !important; font-weight: 700; }
.text-gold { color: var(--gold) !important; }
.text-bg-gold {
  background: rgba(246,184,75,0.08) !important;
  color: var(--gold) !important;
  border: 1px solid rgba(246,184,75,0.12);
}
.hero-pill { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.55rem 0.85rem; border-radius: 999px; background: rgba(246,184,75,0.08); color: var(--gold); border: 1px solid rgba(246,184,75,0.12); font-weight: 600; }
.quote-hero { background: linear-gradient(135deg, rgba(246,184,75,0.06), rgba(255,255,255,0.02)); }
.quote-rate-card { position: sticky; top: 100px; }
.quote-stats { display: grid; gap: 0.85rem; }
.quote-stats li { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 0.8rem 0; border-bottom: 1px solid var(--border); }
.quote-stats li:last-child { border-bottom: 0; }
.quote-stats span { color: var(--text-muted); }
.section-card { background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: 1.2rem; padding: 1.5rem; }
.step-card { min-height: 100%; }
.step-card .step-number { width: 2.4rem; height: 2.4rem; display: inline-grid; place-items: center; border-radius: 50%; background: rgba(246,184,75,0.18); color: var(--gold); font-weight: 700; margin-bottom: 0.95rem; }
.faq-card { border: 1px solid var(--border); border-radius: 1rem; padding: 1.2rem; background: rgba(255,255,255,0.04); }
.order-status { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1rem; }
.order-status .status-pill { padding: 0.45rem 0.7rem; border-radius: 999px; background: rgba(255,255,255,0.05); border: 1px solid var(--border); color: var(--text-muted); font-size: 0.82rem; }
.order-status .status-pill.active { color: var(--gold); border-color: rgba(246,184,75,0.3); background: rgba(246,184,75,0.12); }
.quote-timer { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.55rem 0.8rem; border-radius: 999px; background: rgba(246,184,75,0.12); border: 1px solid rgba(246,184,75,0.24); color: var(--gold); font-weight: 700; }
.reveal { opacity: 0; transform: translateY(24px); transition: all 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (max-width: 991px) { .hero { min-height: auto; padding-top: 6rem; } .quote-rate-card { position: static; } }
@media (max-width: 576px) { .section { padding: 4.5rem 0; } .hero h1 { font-size: 2.3rem; } .hero-card, .info-card, .service-card, .benefit-card, .contact-form, .highlights-card, .page-card, .section-card { padding: 1.2rem; } .quote-stats li { flex-direction: column; align-items: flex-start; } }
