:root {
  --primary: #1a3a5c;
  --primary-dark: #102740;
  --accent: #e8630a;
  --accent-dark: #c4520a;
  --green: #1e7d4b;
  --light-bg: #f7f9fc;
  --border: #dde3ec;
  --text: #1e2a38;
  --text-muted: #5a6a7e;
  --white: #ffffff;
  --section-pad: 72px 0;
}

*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: 'Source Sans 3', 'Open Sans', sans-serif;
  font-size: 17px;
  line-height: 1.75;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5 {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.25;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.2rem; }

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-dark); }

p { margin-bottom: 1rem; color: var(--text); }

.section-pad { padding: var(--section-pad); }
.bg-light-blue { background: var(--light-bg); }
.bg-primary-dark { background: var(--primary-dark); }

.btn-accent {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 13px 28px;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 4px;
  transition: background .2s;
}
.btn-accent:hover { background: var(--accent-dark); color: #fff; }

.btn-primary-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
  padding: 11px 26px;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 4px;
  transition: all .2s;
}
.btn-primary-outline:hover { background: var(--primary); color: #fff; }

.btn-white-outline {
  border: 2px solid rgba(255,255,255,0.7);
  color: #fff;
  background: transparent;
  padding: 11px 26px;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 4px;
  transition: all .2s;
}
.btn-white-outline:hover { background: #fff; color: var(--primary-dark); }

.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
  display: block;
}

.divider-accent {
  width: 50px;
  height: 4px;
  background: var(--accent);
  margin: 1rem 0 1.75rem;
}

/* ── NAVBAR ── */
.navbar {
  background: var(--primary-dark);
  padding: 0;
  border-bottom: 3px solid var(--accent);
}
.navbar-top-bar {
  background: var(--accent);
  padding: 6px 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
}
.navbar-top-bar a { color: #fff; }
.navbar-brand {
  font-weight: 800;
  font-size: 1.25rem;
  color: #fff !important;
  padding: 14px 0;
  line-height: 1.2;
}
.navbar-brand span { color: var(--accent); }
.navbar-nav .nav-link {
  color: rgba(255,255,255,0.85) !important;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 18px 14px !important;
  transition: color .2s;
}
.navbar-nav .nav-link:hover { color: var(--accent) !important; }
.navbar-toggler { border-color: rgba(255,255,255,0.3); }
.navbar-toggler-icon { filter: invert(1); }

/* ── HERO ── */
#hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  padding: 80px 0 70px;
  overflow: hidden;
  isolation: isolate;
}
#hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero.jpg');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  z-index: -2;
}
#hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,28,46,0.93) 0%,
    rgba(16,39,64,0.88) 45%,
    rgba(16,39,64,0.60) 75%,
    rgba(16,39,64,0.35) 100%
  );
  z-index: -1;
}
#hero .hero-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 3px;
  margin-bottom: 1.2rem;
}
#hero h1 { color: #fff; margin-bottom: 1rem; text-shadow: 0 2px 8px rgba(0,0,0,0.35); }
#hero .lead { color: rgba(255,255,255,0.92); font-size: 1.15rem; margin-bottom: 1.75rem; text-shadow: 0 1px 4px rgba(0,0,0,0.3); }
.hero-highlights { list-style: none; padding: 0; margin: 0 0 2rem; }
.hero-highlights li {
  color: rgba(255,255,255,0.92);
  font-weight: 600;
  font-size: 0.97rem;
  margin-bottom: 0.5rem;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.hero-highlights li i { color: var(--accent); margin-right: 10px; }
.hero-stats {
  position: absolute;
  bottom: 32px;
  right: 32px;
  display: flex;
  gap: 12px;
  z-index: 1;
}
.hero-stat {
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  padding: 12px 18px;
  text-align: center;
  color: #fff;
}
.hero-stat strong { display: block; font-size: 1.4rem; font-weight: 800; color: var(--accent); line-height: 1; }
.hero-stat span { font-size: 0.75rem; opacity: 0.8; }
@media (max-width: 991px) {
  .hero-stats { display: none; }
  #hero { padding: 52px 0 48px; min-height: auto; }
}

/* ── TRUST SIGNALS ── */
#trust { padding: 0; }
.trust-bar {
  background: var(--primary);
  padding: 0;
}
.trust-item {
  padding: 22px 20px;
  border-right: 1px solid rgba(255,255,255,0.12);
  text-align: center;
  display: flex;
  align-items: center;
  gap: 14px;
}
.trust-item:last-child { border-right: none; }
.trust-item i {
  font-size: 1.75rem;
  color: var(--accent);
  flex-shrink: 0;
}
.trust-item .trust-text strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
}
.trust-item .trust-text span {
  color: rgba(255,255,255,0.65);
  font-size: 0.8rem;
}

/* ── ABOUT ── */
.about-icon-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 1.5rem;
}
.about-chip {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 8px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
}
.about-chip i { color: var(--accent); margin-right: 6px; }

/* ── SERVICES ── */
.service-section { padding: 56px 0; border-bottom: 1px solid var(--border); }
.service-section:last-child { border-bottom: none; }
.service-section.bg-alt { background: var(--light-bg); }
.service-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
.service-img-fallback {
  width: 100%;
  height: 280px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--light-bg) 0%, #dce6f0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--primary);
  font-size: 1rem;
  font-weight: 700;
}

.service-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
.service-img-fallback i { font-size: 3rem; color: var(--accent); margin-bottom: 0.75rem; }
.fault-list { list-style: none; padding: 0; margin: 0; }
.fault-list li {
  padding: 6px 0 6px 26px;
  position: relative;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border);
}
.fault-list li:last-child { border-bottom: none; }
.fault-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--green);
  font-size: 0.75rem;
  top: 9px;
}
.fault-box {
  background: var(--light-bg);
  border-left: 4px solid var(--accent);
  padding: 18px 20px;
  border-radius: 0 6px 6px 0;
  margin: 1.25rem 0;
}
.fault-box h5 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--primary); }

/* ── PROCESS ── */
#process { background: var(--primary-dark); padding: 72px 0; }
#process h2, #process .section-label { color: #fff; }
#process .section-label { color: #f0a06a; }
#process p { color: rgba(255,255,255,0.7); }
.process-steps { position: relative; }
.process-step {
  display: flex;
  gap: 20px;
  margin-bottom: 2rem;
  position: relative;
}
.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.step-connector {
  position: absolute;
  left: 24px;
  top: 48px;
  bottom: -32px;
  width: 2px;
  background: rgba(255,255,255,0.15);
}
.process-step:last-child .step-connector { display: none; }
.step-content h4 { color: #fff; font-size: 1.05rem; margin-bottom: 0.3rem; margin-top: 10px; }
.step-content p { font-size: 0.92rem; color: rgba(255,255,255,0.65); margin: 0; }

.process-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 32px 24px;
  text-align: center;
  height: 100%;
}
.process-card .step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.process-card h4 { color: #fff; font-size: 1.05rem; margin-bottom: 0.6rem; }
.process-card p { color: rgba(255,255,255,0.65); font-size: 0.92rem; margin: 0; }
/* ── WHY CHOOSE US ── */
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px 20px;
  height: 100%;
  transition: box-shadow .2s;
}
.why-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.08); }
.why-icon {
  width: 52px;
  height: 52px;
  background: #fff3e9;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.why-icon i { font-size: 1.4rem; color: var(--accent); }
.why-card h4 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.why-card p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

/* ── AREAS ── */
#areas { background: var(--light-bg); }
.area-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px 22px;
  height: 100%;
}
.area-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent);
  margin-bottom: 12px;
}
.area-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 2;
  column-gap: 10px;
}
.area-card ul li {
  font-size: 0.87rem;
  padding: 3px 0;
  color: var(--text-muted);
  break-inside: avoid;
}
.area-card ul li::before {
  content: '·';
  color: var(--accent);
  font-weight: 700;
  margin-right: 5px;
}

/* ── FAQ ── */
.accordion-button {
  font-weight: 700;
  font-size: 0.97rem;
  color: var(--primary-dark);
  background: #fff;
}
.accordion-button:not(.collapsed) {
  color: var(--accent);
  background: #fff8f3;
  box-shadow: none;
}
.accordion-button::after {
  filter: none;
}
.accordion-button:focus { box-shadow: none; }
.accordion-body { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; }

/* ── MAP ── */
#map-section { padding: 72px 0; }
.map-wrap { border-radius: 10px; overflow: hidden; border: 1px solid var(--border); }
.map-wrap iframe { display: block; width: 100%; height: 420px; border: none; }
.local-info-box {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 24px;
  height: 100%;
}
.local-info-box .info-row {
  display: flex;
  gap: 14px;
  margin-bottom: 1.2rem;
  align-items: flex-start;
}
.local-info-box .info-row i {
  color: var(--accent);
  font-size: 1.1rem;
  margin-top: 3px;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}
.local-info-box .info-row div strong { display: block; font-size: 0.88rem; font-weight: 700; color: var(--primary); }
.local-info-box .info-row div span { font-size: 0.88rem; color: var(--text-muted); }

/* ── CONTACT ── */
#contact { background: var(--light-bg); }
.contact-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 36px 32px;
}
.form-label { font-weight: 600; font-size: 0.9rem; color: var(--primary); }
.form-control, .form-select {
  font-size: 0.95rem;
  border-color: var(--border);
  border-radius: 4px;
  padding: 10px 14px;
}
.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,58,92,0.12);
}

/* ── FINAL CTA ── */
#final-cta {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #1e4976 100%);
  padding: 72px 0;
  text-align: center;
}
#final-cta h2 { color: #fff; margin-bottom: 1rem; }
#final-cta p { color: rgba(255,255,255,0.8); font-size: 1.05rem; margin-bottom: 2rem; }
.cta-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 1.5rem 0 2.5rem;
}
.cta-badge {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 30px;
}
.cta-badge i { color: #f0a06a; margin-right: 6px; }

/* ── FLOATING BUTTONS ── */
.floating-btns {
  position: fixed;
  bottom: 24px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}
.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  text-decoration: none;
  transition: transform .2s;
}
.float-btn:hover { transform: scale(1.08); color: #fff; }
.float-btn.call { background: var(--primary); }
.float-btn.whatsapp { background: #25d366; }
.float-btn.email { background: var(--accent); }

/* ── FOOTER ── */
footer {
  background: #0a1c2e;
  color: rgba(255,255,255,0.75);
  padding: 60px 0 0;
}
footer h5 {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}
footer a { color: rgba(255,255,255,0.65); font-size: 0.9rem; display: block; margin-bottom: 6px; }
footer a:hover { color: var(--accent); }
footer p { font-size: 0.9rem; }
.footer-bottom {
  background: #060f19;
  padding: 16px 0;
  margin-top: 40px;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.5); display: inline; margin: 0 8px; font-size: 0.83rem; }

/* ── UTILITIES ── */
.text-accent { color: var(--accent); }
.bg-accent { background: var(--accent); }
.brand-logo-icon { color: var(--accent); font-size: 1.5rem; vertical-align: middle; margin-right: 8px; }

@media (max-width: 767px) {
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .trust-item:last-child { border-bottom: none; }
  .contact-form { padding: 24px 18px; }
  #hero { padding: 50px 0 40px; }
  .hero-image-wrap { margin-top: 2rem; }
  .area-card ul { columns: 1; }
}