/* ===== 4-COLOR CORPORATE PALETTE ===== */
:root {
  --c-navy: #1e293b;     /* Primary: Deep Navy */
  --c-gold: #facc15;     /* Accent: Gold/Yellow */
  --c-white: #ffffff;    /* Background/Text: White */
  --c-grey: #64748b;     /* Muted/Borders: Slate Grey */
  
  --font: 'Inter', sans-serif;
  --radius: 12px;
  --shadow: 0 10px 25px -5px rgba(30, 41, 59, 0.15);
}

/* ===== BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--c-navy);
  background: var(--c-white);
  padding-bottom: 70px;
}

/* ===== NAVBAR ===== */
.navbar {
  background: var(--c-navy);
  padding: 16px 0;
  border-bottom: 2px solid var(--c-gold);
}
.navbar-brand { font-size: 1.4rem; font-weight: 800; color: var(--c-white) !important; }
.navbar-brand span { color: var(--c-gold); }
.nav-link { 
  color: rgba(255,255,255,0.85) !important; 
  font-weight: 500; 
  font-size: 0.95rem;
  transition: color 0.2s;
}
.nav-link:hover, .nav-link.active { color: var(--c-gold) !important; }
.dropdown-menu { border: 1px solid rgba(100,116,139,0.2); border-radius: 8px; box-shadow: var(--shadow); }
.dropdown-item { font-weight: 500; color: var(--c-navy); padding: 10px 20px; transition: background 0.2s; }
.dropdown-item:hover { background: rgba(250,204,21,0.15); color: var(--c-navy); }

/* Buttons */
.btn-gold {
  background: var(--c-gold);
  color: var(--c-navy) !important;
  font-weight: 800;
  border-radius: 50px;
  padding: 10px 24px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
  box-shadow: 0 4px 15px rgba(250,204,21,0.3);
}
.btn-gold.pulse {
  animation: pulse-gold 2s infinite;
}
@keyframes pulse-gold {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(250,204,21, 0.7); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(250,204,21, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(250,204,21, 0); }
}

.btn-wa {
  background: #25D366;
  color: var(--c-white) !important;
  font-weight: 800;
  border-radius: 50px;
  padding: 10px 24px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
  box-shadow: 0 4px 15px rgba(37,211,102,0.3);
}
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(37,211,102,0.4); }

/* ===== SECTION COMMONS ===== */
section { padding: 64px 0; }
.section-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--c-navy);
  margin-bottom: 12px;
}
.section-title span { color: var(--c-gold); }
.section-sub {
  color: var(--c-grey);
  font-size: 1.05rem;
  margin-bottom: 40px;
  line-height: 1.7;
}

/* ===== CARDS ===== */
.trust-card, .service-card {
  background: var(--c-white);
  border-radius: var(--radius);
  padding: 30px 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(100,116,139,0.1);
  transition: transform 0.25s, box-shadow 0.25s;
  height: 100%;
}
.service-card { display: block; text-decoration: none; color: inherit; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 15px 35px rgba(30,41,59,0.12); color: inherit; }

.card-icon {
  width: 60px; height: 60px;
  background: rgba(30,41,59,0.05);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; margin-bottom: 18px;
}

.service-card h3, .trust-card h3 { font-size: 1.15rem; font-weight: 800; color: var(--c-navy); margin-bottom: 10px; }
.service-card p, .trust-card p { font-size: 0.92rem; color: var(--c-grey); line-height: 1.6; margin: 0; }
.service-card .arrow { display: inline-flex; align-items: center; gap: 4px; color: var(--c-gold); font-weight: 700; font-size: 0.85rem; margin-top: 16px; }

/* ===== REGION BADGES ===== */
.region-badge {
  background: var(--c-white);
  border: 1px solid rgba(100,116,139,0.1);
  color: var(--c-navy);
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}
.region-badge:hover {
  background: var(--c-navy);
  color: var(--c-white) !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(30, 41, 59, 0.1);
}

/* ===== REVIEW CARDS ===== */
.review-card {
  background: rgba(100,116,139,0.04);
  border-radius: var(--radius);
  padding: 28px 24px;
  border-left: 4px solid var(--c-gold);
  height: 100%;
}
.stars { color: var(--c-gold); font-size: 1.1rem; margin-bottom: 12px; }
.review-card p { font-size: 0.95rem; color: var(--c-navy); line-height: 1.7; font-style: italic; margin-bottom: 16px; }
.reviewer { font-weight: 800; font-size: 0.9rem; color: var(--c-grey); }

/* ===== FAQ ===== */
.faq-item { border: 1px solid rgba(100,116,139,0.2); border-radius: 10px; margin-bottom: 12px; overflow: hidden; }
.faq-q {
  background: rgba(100,116,139,0.03); padding: 18px 22px;
  font-weight: 700; font-size: 0.98rem; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  color: var(--c-navy); transition: background 0.2s;
}
.faq-q:hover { background: rgba(100,116,139,0.08); }
.faq-q .chevron { transition: transform 0.3s; font-style: normal; }
.faq-item.open .faq-q .chevron { transform: rotate(180deg); }
.faq-a { display: none; padding: 16px 22px; font-size: 0.92rem; color: var(--c-grey); line-height: 1.7; background: var(--c-white); }
.faq-item.open .faq-a { display: block; }

/* ===== FOOTER ===== */
footer {
  background: var(--c-navy);
  color: var(--c-white);
  padding: 48px 20px 24px;
  text-align: center;
}
footer .footer-logo { color: var(--c-gold); font-size: 1.4rem; font-weight: 800; margin-bottom: 12px; }
footer a { color: rgba(255,255,255,0.7); text-decoration: none; font-weight: 500; transition: color 0.2s; }
footer a:hover { color: var(--c-gold); }
footer .footer-links { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin: 24px 0; }
footer .divider { margin: 24px 0; border-color: rgba(255,255,255,0.1); }

/* ===== STICKY BOTTOM BAR (mobile) ===== */
.bottom-cta-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1050;
  display: flex; background: var(--c-navy); border-top: 2px solid var(--c-gold);
}
.bottom-cta-bar a {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px; font-weight: 800; font-size: 0.95rem; text-decoration: none; transition: opacity 0.2s;
}
.bottom-cta-bar a:hover { opacity: 0.9; }
.bottom-cta-bar .bcb-call { background: var(--c-gold); color: var(--c-navy); border-right: 1px solid rgba(30,41,59,0.1); }
.bottom-cta-bar .bcb-wa { background: #25D366; color: var(--c-white); }

@media (min-width: 992px) {
  .bottom-cta-bar { display: none; }
  body { padding-bottom: 0; }
}
