/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; outline: none; }

/* ===== TYPOGRAPHY ===== */
h1,h2,h3,h4,h5 { font-family:'Outfit','Inter',sans-serif; font-weight:700; line-height:1.2; color:var(--navy); }
h1 { font-size: clamp(2rem,5vw,3.5rem); }
h2 { font-size: clamp(1.6rem,3.5vw,2.6rem); }
h3 { font-size: clamp(1.1rem,2.5vw,1.5rem); }
h4 { font-size: 1.1rem; }
p  { color: var(--text-muted); line-height: 1.75; }

/* ===== CONTAINER ===== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ===== SECTION ===== */
section { padding: var(--section-pad); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px;
  font-weight: 600; font-size: 1rem;
  transition: all var(--trans); white-space: nowrap;
}
.btn-primary { background: var(--grad-accent); color: var(--white); box-shadow: 0 4px 20px rgba(21,101,192,.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(21,101,192,.45); }
.btn-secondary { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.6); }
.btn-secondary:hover { background: rgba(255,255,255,.15); border-color: var(--white); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--blue); border: 2px solid var(--blue); }
.btn-outline:hover { background: var(--blue); color: var(--white); transform: translateY(-2px); }
.btn-green { background: var(--grad-green); color: var(--white); box-shadow: 0 4px 20px rgba(46,125,50,.35); }
.btn-green:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(46,125,50,.45); }

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .label {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg,rgba(46,125,50,.08),rgba(67,160,71,.12));
  color: var(--green); font-size: .82rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 18px; border-radius: 50px; margin-bottom: 18px;
  border: 1px solid rgba(46,125,50,.2);
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { max-width: 600px; margin: 0 auto; font-size: 1.08rem; }
.highlight {
  background: linear-gradient(135deg, var(--green) 0%, var(--blue-light) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== BADGE ===== */
.badge {
  display: inline-block; padding: 4px 14px;
  background: rgba(46,125,50,.1); color: var(--green);
  font-size: .78rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; border-radius: 50px;
  border: 1px solid rgba(46,125,50,.2);
}

/* ===== TOP BAR ===== */
.call-banner {
  background: var(--navy-dark);
  padding: 9px 0;
  border-bottom: 2px solid var(--green);
}
.call-banner .container {
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 8px;
}
.call-banner .cb-left { display: flex; align-items: center; gap: 6px; }
.call-banner .cb-left span { color: rgba(255,255,255,.55); font-size: .75rem; }
.call-banner .cb-left strong { color: var(--green-light); font-size: .78rem; font-weight: 700; letter-spacing: .5px; }
.call-banner .cb-right { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.call-banner a {
  color: rgba(255,255,255,.88); font-size: .8rem;
  display: flex; align-items: center; gap: 6px;
  transition: color var(--trans);
}
.call-banner a:hover { color: var(--green-light); }
.call-banner .cb-phone { color: #fff !important; font-weight: 700; font-size: .85rem !important; }
.call-banner .sep { color: rgba(255,255,255,.2); }

/* ===== NAVBAR ===== */
#navbar {
  transition: all var(--trans);
  padding: 10px 0;
  background: transparent;
  width: 100%;
}
#navbar.scrolled {
  background: rgba(8,26,61,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0,0,0,.35);
  padding: 7px 0;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 46px; width: auto; filter: drop-shadow(0 2px 8px rgba(0,0,0,.3)); }
.nav-logo-text strong {
  display: block; color: var(--white); font-size: 1rem;
  font-family: 'Outfit',sans-serif; font-weight: 800; line-height: 1.1;
}
.nav-logo-text span { color: var(--green-light); font-size: .7rem; letter-spacing: 1px; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links > li > a {
  color: rgba(255,255,255,.88); font-size: .88rem; font-weight: 500;
  padding: 8px 12px; border-radius: var(--radius-sm);
  transition: all var(--trans);
}
.nav-links > li > a:hover, .nav-links > li > a.active {
  color: var(--white); background: rgba(255,255,255,.1);
}
.nav-links .has-dropdown { position: relative; }
.nav-links .has-dropdown > a::after { content: ' ▾'; font-size: .7rem; }

.nav-dropdown {
  position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-60%) translateY(10px);
  background: var(--navy-dark);
  border: 1px solid rgba(255,255,255,.08);
  border-top: 2px solid var(--green);
  border-radius: var(--radius-md);
  padding: 16px;
  min-width: 640px;
  opacity: 0; pointer-events: none;
  transition: all var(--trans);
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2px;
}
.nav-dropdown-footer {
  grid-column: 1/-1;
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 8px;
  padding-top: 10px;
  text-align: center;
}
.nav-dropdown-footer a {
  color: var(--green-light) !important;
  font-size: .82rem !important; font-weight: 700 !important;
  background: none !important;
}
.has-dropdown:hover .nav-dropdown {
  opacity: 1; pointer-events: all;
  transform: translateX(-60%) translateY(0);
}
.nav-dropdown a {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 12px; border-radius: var(--radius-sm);
  color: rgba(255,255,255,.78) !important;
  font-size: .82rem !important; font-weight: 500 !important;
  transition: all var(--trans); white-space: nowrap;
}
.nav-dropdown a:hover {
  background: rgba(46,125,50,.15) !important;
  color: var(--white) !important;
}

.nav-cta {
  background: var(--grad-green) !important;
  color: var(--white) !important;
  border-radius: 50px !important;
  padding: 9px 20px !important;
  box-shadow: 0 4px 16px rgba(46,125,50,.4);
  font-weight: 700 !important;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(46,125,50,.55) !important;
  background: var(--green) !important;
}

/* hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; padding: 6px; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--trans); }
.hamburger-close { position: absolute; top: 20px; right: 24px; font-size: 1.8rem; color: white; cursor: pointer; background: none; border: none; }

/* ===== MOBILE NAV ===== */
.mobile-nav {
  display: none; position: fixed; inset: 0;
  background: var(--navy-dark); z-index: 1100;
  flex-direction: column; padding: 70px 28px 40px;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block; color: rgba(255,255,255,.85);
  font-size: 1rem; font-weight: 500;
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color var(--trans);
}
.mobile-nav a:hover { color: var(--green-light); }
.mobile-submenu-label {
  color: var(--green-light); font-size: .72rem;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 18px 0 6px; font-weight: 700;
}
.mobile-nav-contacts { margin-top: 28px; display: flex; flex-direction: column; gap: 10px; }
.mobile-nav-contacts a {
  background: rgba(46,125,50,.15) !important;
  border-radius: var(--radius-md);
  padding: 12px 18px !important;
  border: 1px solid rgba(46,125,50,.3) !important;
  color: var(--white) !important; font-size: .9rem !important;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: var(--grad-hero);
  padding: 150px 0 80px;
  text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='rgba(255,255,255,0.05)' stroke-width='1'%3E%3Cpath d='M0 30h60M30 0v60'/%3E%3C/g%3E%3C/svg%3E") repeat;
}
.page-hero::after {
  content: ''; position: absolute;
  bottom: -2px; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--green), var(--blue-light), var(--green));
}
.page-hero .container { position: relative; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
.page-hero p { color: rgba(255,255,255,.9); font-size: 1.08rem; max-width: 580px; margin: 0 auto 24px; text-shadow: 0 1px 4px rgba(0,0,0,0.5); }
.breadcrumb {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.55); font-size: .84rem;
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--green-light); }
.breadcrumb span { color: rgba(255,255,255,.35); }

/* ===== CARDS ===== */
.card {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); overflow: hidden;
  transition: all var(--trans); border: 1px solid rgba(21,101,192,.07);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: rgba(21,101,192,.15); }

/* ===== GRID ===== */
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }

/* ===== WHATSAPP FAB ===== */
.whatsapp-fab {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  display: flex; align-items: center; gap: 12px;
  background: #25d366; color: var(--white);
  padding: 14px 22px; border-radius: 50px;
  font-weight: 700; font-size: .95rem;
  box-shadow: 0 6px 30px rgba(37,211,102,.45);
  transition: all var(--trans);
  animation: fabPulse 2.5s ease-in-out infinite;
}
.whatsapp-fab:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 10px 40px rgba(37,211,102,.6); animation: none; }
.whatsapp-fab svg { width: 24px; height: 24px; fill: white; }
@keyframes fabPulse { 0%,100% { box-shadow: 0 6px 30px rgba(37,211,102,.4); } 50% { box-shadow: 0 6px 44px rgba(37,211,102,.7); } }

/* ===== FOOTER ===== */
footer { background: var(--grad-navy); color: rgba(255,255,255,.75); padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 60px; }
.footer-brand img { height: 68px; margin-bottom: 18px; }
.footer-brand p { font-size: .9rem; line-height: 1.8; max-width: 280px; }
.footer-brand .footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.07);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: all var(--trans);
}
.footer-social a:hover { background: var(--green); transform: translateY(-3px); }
.footer-col h4 {
  color: var(--white); font-size: 1rem; margin-bottom: 20px;
  position: relative; padding-bottom: 12px;
}
.footer-col h4::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 32px; height: 3px;
  background: var(--grad-green); border-radius: 2px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul a {
  color: rgba(255,255,255,.6); font-size: .88rem;
  transition: color var(--trans); display: flex; align-items: center; gap: 7px;
}
.footer-col ul a::before { content: '›'; color: var(--green-light); }
.footer-col ul a:hover { color: var(--white); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; font-size: .88rem; }
.footer-contact-item .icon {
  width: 34px; height: 34px; background: rgba(46,125,50,.15);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; flex-shrink: 0;
  border: 1px solid rgba(46,125,50,.3);
}
.footer-contact-item a { color: rgba(255,255,255,.72); transition: color var(--trans); }
.footer-contact-item a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding: 20px 0; }
.footer-bottom .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.4); }
.footer-bottom a { color: var(--green-light); font-weight: 600; transition: color var(--trans); }
.footer-bottom a:hover { color: var(--white); }
.footer-credit { font-size: .8rem; color: rgba(255,255,255,.35); }
.footer-credit a { color: var(--green-light); font-weight: 700; }

/* ===== UTILS ===== */
.text-center { text-align: center; }
.text-white  { color: var(--white) !important; }
.bg-light    { background: var(--off-white); }
.bg-navy     { background: var(--grad-navy); }
.mt-8  { margin-top: 8px; } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; } .mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; } .mb-16 { margin-bottom: 16px; } .mb-24 { margin-bottom: 24px; } .mb-32 { margin-bottom: 32px; }
.gap-16 { gap: 16px; } .gap-24 { gap: 24px; }
.flex   { display: flex; }
.flex-center  { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.align-center { align-items: center; }
.wrap { flex-wrap: wrap; }

/* ===== STATS STRIP ===== */
.stats-strip { background: var(--grad-hero); padding: 48px 0; border-top: 3px solid var(--green); border-bottom: 3px solid var(--green); }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.stat-item { text-align: center; padding: 24px; border-right: 1px solid rgba(255,255,255,.12); }
.stat-item:last-child { border-right: none; }
.stat-number { font-family:'Outfit',sans-serif; font-size: 2.8rem; font-weight: 800; color: var(--green-light); line-height: 1; margin-bottom: 8px; }
.stat-label { color: rgba(255,255,255,.75); font-size: .9rem; font-weight: 500; }

/* ===== PROCESS STEPS ===== */
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; position: relative; }
.steps-grid::before {
  content: ''; position: absolute;
  top: 36px; left: 12%; right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--green) 0%, var(--blue-light) 100%);
  z-index: 0;
}
.step-item { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 72px; height: 72px;
  background: var(--grad-green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem; font-weight: 800;
  color: var(--white); font-family: 'Outfit',sans-serif;
  box-shadow: 0 6px 24px rgba(46,125,50,.4);
  position: relative;
}
.step-num::after { content: ''; position: absolute; inset: -4px; border-radius: 50%; border: 2px dashed rgba(46,125,50,.4); }
.step-item h4 { margin-bottom: 8px; }
.step-item p  { font-size: .9rem; }

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow-md);
  border: 1px solid rgba(21,101,192,.07);
  border-top: 3px solid var(--green);
  position: relative;
}
.testimonial-card::before { content: '"'; position: absolute; top: 16px; left: 24px; font-size: 5rem; color: rgba(46,125,50,.1); font-family:'Outfit',sans-serif; line-height: 1; }
.testimonial-stars { color: #f59e0b; font-size: 1rem; margin-bottom: 14px; }
.testimonial-text { font-style: italic; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--grad-green); display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 1.1rem; flex-shrink: 0; }
.author-name { font-weight: 700; color: var(--navy); font-size: .95rem; }
.author-loc  { font-size: .8rem; color: var(--text-muted); }

/* ===== SERVICE ICON CARD ===== */
.service-icon-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px 24px; box-shadow: var(--shadow-md);
  border: 1px solid rgba(21,101,192,.07);
  transition: all var(--trans); text-align: center;
  border-bottom: 3px solid transparent;
}
.service-icon-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); border-bottom-color: var(--green); }
.service-icon-card .s-icon {
  width: 68px; height: 68px;
  background: linear-gradient(135deg,rgba(46,125,50,.1),rgba(67,160,71,.18));
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; margin: 0 auto 18px;
  transition: all var(--trans); border: 1px solid rgba(46,125,50,.2);
}
.service-icon-card:hover .s-icon { background: var(--grad-green); transform: scale(1.08) rotate(-4deg); border-color: transparent; }
.service-icon-card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.service-icon-card p  { font-size: .88rem; margin-bottom: 18px; }
.service-icon-card a.read-more { color: var(--green); font-weight: 600; font-size: .88rem; display: inline-flex; align-items: center; gap: 6px; transition: gap var(--trans); }
.service-icon-card a.read-more:hover { gap: 10px; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, #0d2a5e 40%, #1a4a1a 100%);
  padding: 80px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before { content: ''; position: absolute; top: -60px; right: -60px; width: 320px; height: 320px; border-radius: 50%; background: rgba(46,125,50,.08); }
.cta-section::after  { content: ''; position: absolute; bottom: -80px; left: -40px; width: 240px; height: 240px; border-radius: 50%; background: rgba(46,125,50,.06); }
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p  { color: rgba(255,255,255,.8); max-width: 560px; margin: 0 auto 36px; font-size: 1.05rem; }
.cta-btns { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ===== LOCATIONS ===== */
.location-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px 28px; box-shadow: var(--shadow-md);
  border: 1px solid rgba(21,101,192,.07);
  text-align: center; transition: all var(--trans);
  border-top: 3px solid var(--green);
}
.location-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.location-card .loc-icon { font-size: 2.4rem; margin-bottom: 14px; }
.location-card h3 { margin-bottom: 8px; }
.location-card p  { font-size: .88rem; }

/* ===== INNER SERVICE PAGE ===== */
.service-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.service-detail-img { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-xl); position: relative; }
.service-detail-img img { width: 100%; height: 420px; object-fit: cover; }
.service-detail-img::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: var(--grad-green); }

.feature-list { display: flex; flex-direction: column; gap: 14px; margin: 20px 0; }
.feature-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 18px; background: var(--off-white);
  border-radius: var(--radius-md); border-left: 3px solid var(--green);
}
.feature-item .f-icon {
  width: 34px; height: 34px; background: var(--grad-green);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: .95rem; flex-shrink: 0;
}
.feature-item h4 { margin-bottom: 4px; font-size: .92rem; }
.feature-item p  { font-size: .84rem; margin: 0; }

/* ===== FAQ ===== */
.faq-item { border: 1px solid rgba(21,101,192,.1); border-radius: var(--radius-md); margin-bottom: 12px; overflow: hidden; }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; cursor: pointer; background: var(--white);
  transition: background var(--trans); font-weight: 600;
  color: var(--navy); font-size: .95rem; user-select: none;
}
.faq-question:hover { background: var(--off-white); }
.faq-item.open .faq-question { background: rgba(46,125,50,.05); color: var(--green); }
.faq-icon { font-size: 1.2rem; color: var(--green); transition: transform var(--trans); flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner { padding: 0 22px 20px; color: var(--text-muted); font-size: .92rem; line-height: 1.8; }

/* ===== HERO SLIDER ===== */
.hero-slider {
  position: relative; min-height: 100vh;
  overflow: hidden; display: flex; align-items: center;
  padding-top: 90px; /* top-bar + navbar height */
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(8,26,61,.88) 0%, rgba(13,42,94,.75) 40%, rgba(15,60,15,.6) 100%);
}
/* Slide-specific colour tints */
.hero-slide:nth-child(2)::before { background: linear-gradient(120deg, rgba(8,26,61,.88) 0%, rgba(0,77,64,.7) 100%); }
.hero-slide:nth-child(3)::before { background: linear-gradient(120deg, rgba(46,30,100,.88) 0%, rgba(8,26,61,.8) 100%); }
.hero-slide:nth-child(4)::before { background: linear-gradient(120deg, rgba(8,26,61,.88) 0%, rgba(100,30,30,.7) 100%); }
.hero-slide:nth-child(5)::before { background: linear-gradient(120deg, rgba(20,60,20,.9) 0%, rgba(8,26,61,.85) 100%); }

.hero-slider-inner { position: relative; z-index: 2; width: 100%; }
.hero-slider-content { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center; }

/* slider controls */
.slider-dots { display: flex; gap: 8px; margin-top: 32px; }
.slider-dot {
  width: 32px; height: 4px; border-radius: 2px;
  background: rgba(255,255,255,.3); cursor: pointer;
  transition: all var(--trans);
}
.slider-dot.active { background: var(--green-light); width: 48px; }

.slider-arrows {
  position: absolute; bottom: 40px; right: 0;
  z-index: 3; display: flex; gap: 10px;
}
.slider-arrow {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  color: white; font-size: 1.2rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--trans);
}
.slider-arrow:hover { background: var(--green); border-color: var(--green); }

/* progress bar */
.slider-progress {
  position: absolute; bottom: 0; left: 0;
  height: 3px; background: var(--green);
  animation: slideProgress 5s linear infinite;
  z-index: 3;
}
@keyframes slideProgress { from { width: 0; } to { width: 100%; } }

/* hero text */
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(46,125,50,.2); border: 1px solid rgba(46,125,50,.4);
  color: var(--white); padding: 7px 18px; border-radius: 50px;
  font-size: .84rem; font-weight: 600; letter-spacing: .5px;
  margin-bottom: 22px; backdrop-filter: blur(10px);
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green-light); animation: heroBadgePop .8s ease both; }
.hero h1 { color: var(--white); font-size: clamp(2.1rem,5vw,3.5rem); margin-bottom: 20px; text-shadow: 0 4px 15px rgba(0,0,0,0.6); }
.hero h1 em { font-style: normal; color: #4ade80; text-shadow: 0 2px 10px rgba(0,0,0,0.8); }
.hero-desc { color: rgba(255,255,255,.95); font-size: 1.1rem; max-width: 520px; margin-bottom: 32px; text-shadow: 0 2px 8px rgba(0,0,0,0.6); font-weight: 500; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust { display: flex; gap: 22px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; }
.trust-item .t-icon { width: 38px; height: 38px; background: rgba(46,125,50,.25); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; border: 1px solid rgba(46,125,50,.4); }
.trust-item .t-text strong { display: block; color: var(--white); font-size: .92rem; }
.trust-item .t-text span  { color: rgba(255,255,255,.6); font-size: .76rem; }

/* hero card (service list) */
.hero-card {
  background: rgba(255,255,255,.1); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.15);
  border-top: 3px solid var(--green);
  border-radius: var(--radius-xl); padding: 28px 24px;
}
.hero-card-title { color: var(--green-light); font-size: 1rem; font-weight: 800; margin-bottom: 18px; letter-spacing: .5px; }
.hero-service-list { display: flex; flex-direction: column; gap: 8px; }
.hsl-item {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md); padding: 10px 14px;
  color: rgba(255,255,255,.88); font-size: .88rem; font-weight: 500;
  transition: all var(--trans); cursor: default;
}
.hsl-item:hover { background: rgba(46,125,50,.2); transform: translateX(4px); }
.hsl-item .hsl-icon { font-size: 1.1rem; }
.hsl-item .hsl-check { margin-left: auto; width: 20px; height: 20px; background: var(--green-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .7rem; color: white; }
.hero-card-footer { margin-top: 16px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.1); text-align: center; }
.hero-card-footer a { color: var(--green-light); font-weight: 600; font-size: .88rem; }

/* ===== WHY CHOOSE CARDS ===== */
.why-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px 26px; box-shadow: var(--shadow-md);
  border: 1px solid rgba(21,101,192,.07);
  transition: all var(--trans); position: relative; overflow: hidden;
}
.why-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--grad-green); }
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.why-icon { font-size: 2.2rem; margin-bottom: 16px; }
.why-card h3 { margin-bottom: 10px; font-size: 1.05rem; }

/* ===== FEATURED IMAGE CARDS ===== */
.featured-card {
  border-radius: var(--radius-xl); overflow: hidden;
  position: relative; min-height: 360px;
  display: flex; align-items: flex-end; cursor: pointer;
}
.featured-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.featured-card:hover img { transform: scale(1.05); }
.featured-card-overlay {
  position: relative; z-index: 2; width: 100%;
  background: linear-gradient(0deg, rgba(8,26,61,.92) 0%, rgba(8,26,61,.4) 60%, transparent 100%);
  padding: 32px 28px 28px;
}
.featured-card-overlay .label-tag {
  display: inline-block; background: var(--green); color: white;
  font-size: .72rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; padding: 4px 12px; border-radius: 50px; margin-bottom: 10px;
}
.featured-card-overlay h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 8px; }
.featured-card-overlay p  { color: rgba(255,255,255,.75); font-size: .88rem; margin-bottom: 16px; }
.featured-card-overlay .btn { padding: 9px 20px; font-size: .84rem; }

/* ===== GALLERY STRIP ===== */
.gallery-strip { display: grid; grid-template-columns: repeat(5,1fr); gap: 14px; }
.gallery-item { border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 4/3; position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.gallery-item:hover img { transform: scale(1.07); }

/* ===== RESPONSIVE ===== */
@media(max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .nav-dropdown { min-width: 500px; grid-template-columns: repeat(2,1fr); }
}
@media(max-width: 900px) {
  .hero-slider-content { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .grid-2,.grid-3,.grid-4 { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .steps-grid { grid-template-columns: repeat(2,1fr); }
  .steps-grid::before { display: none; }
  .service-detail-grid { grid-template-columns: 1fr; gap: 32px; }
  .gallery-strip { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-dropdown { display: none !important; }
  .call-banner .cb-right { display: none; }
}
@media(max-width: 640px) {
  .grid-2,.grid-3,.grid-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-strip { grid-template-columns: 1fr; gap: 20px; }
  .cta-btns { flex-direction: column; align-items: center; }
  .hero-btns { flex-direction: column; }
  .hero h1 { font-size: 2rem; }
  .hero-trust { gap: 12px; }
  .call-banner .cb-left { display: none; }
  .call-banner { text-align: center; }
  .call-banner .container { justify-content: center; }
  .call-banner .cb-right { display: flex; justify-content: center; }
}
@media(max-width: 400px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ===== SERVICES GRID ===== */
.cat-label {
  display: flex; align-items: center; gap: 12px;
  margin: 48px 0 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--gray-light);
}
.cat-label h3 { font-size: 1.25rem; color: var(--navy); }
.cat-label .cat-badge {
  background: var(--grad-accent); color: white;
  padding: 4px 14px; border-radius: 50px;
  font-size: 0.78rem; font-weight: 700;
}
.cat-label:first-of-type { margin-top: 0; }
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.svc-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(21,101,192,0.07);
  transition: all var(--trans);
  display: flex; flex-direction: column;
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(21,101,192,0.18);
}
.svc-card-img {
  height: 160px; overflow: hidden; position: relative;
  flex-shrink: 0;
}
.svc-card-img img { width:100%;height:100%;object-fit:cover;transition:transform 0.5s var(--ease); }
.svc-card:hover .svc-card-img img { transform:scale(1.07); }
.svc-card-body { padding: 20px 18px; flex: 1; display:flex; flex-direction:column; }
.svc-card-icon { font-size: 1.6rem; margin-bottom: 8px; }
.svc-card-body h3 { margin-bottom: 8px; font-size: 1rem; line-height:1.3; }
.svc-card-body p  { font-size: 0.84rem; margin-bottom: 14px; flex:1; }
.svc-card-footer { display: flex; gap: 8px; flex-wrap: wrap; }
.svc-card-footer .btn { font-size: 0.8rem; padding: 8px 14px; }
@media(max-width:1100px) { .services-full-grid { grid-template-columns: repeat(3,1fr); } }
@media(max-width:768px)  { .services-full-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:480px)  { .services-full-grid { grid-template-columns: 1fr; } }
