/* =============================================
   RemTra — House, Property & Waste Clearance
   Premium Redesign — Brand: Green & White
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700;800;900&family=Inter:wght@400;500;600&display=swap');

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; color: #1a2e1e; background: #fff; line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---- Tokens ---- */
:root {
  --g900: #093b17;
  --g800: #0f5724;
  --g700: #1a7a38;
  --g600: #21963f; /* primary brand green */
  --g500: #2eb352;
  --g400: #4ec96e;
  --g100: #eaf7ee;
  --g050: #f4fbf6;
  --white:   #ffffff;
  --cream:   #f8faf8;
  --slate:   #f1f5f1;
  --border:  #ddeae0;
  --text:    #0f1e13;
  --mid:     #4a6050;
  --muted:   #7a9880;
  --shadow:  0 2px 12px rgba(0,0,0,.08);
  --shadow-md: 0 6px 28px rgba(0,0,0,.12);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.16);
  --r: 12px;
  --r-lg: 20px;
  --ease: cubic-bezier(.25,.46,.45,.94);
}

/* =============================================
   UTILITY
   ============================================= */
.container   { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }
.section     { padding: 96px 0; }
.section-sm  { padding: 64px 0; }
.bg-slate    { background: var(--slate); }
.bg-green    { background: var(--g600); }
.bg-dark     { background: var(--g900); }
.bg-cream    { background: var(--cream); }

.overline {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--g600); margin-bottom: .75rem;
}
.overline::before { content: ''; width: 24px; height: 2px; background: var(--g600); border-radius: 2px; flex-shrink: 0; }
.overline.white { color: rgba(255,255,255,.7); }
.overline.white::before { background: rgba(255,255,255,.5); }

h1,h2,h3,h4 { font-family: 'Poppins', sans-serif; line-height: 1.15; color: var(--text); }
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); font-weight: 800; letter-spacing: -.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.75rem); font-weight: 800; letter-spacing: -.02em; }
h3 { font-size: 1.25rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 600; }

.section-header { max-width: 640px; margin-bottom: 3.5rem; }
.section-header.centered { text-align: center; margin-left: auto; margin-right: auto; }
.section-header p { font-size: 1.05rem; color: var(--mid); margin-top: .75rem; line-height: 1.75; }
.section-header.white h2, .section-header.white p, .section-header.white .overline { color: var(--white); }
.section-header.white .overline::before { background: rgba(255,255,255,.5); }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .9rem 2rem; border-radius: 8px;
  font-family: 'Inter', sans-serif; font-size: .95rem; font-weight: 600;
  transition: all .2s var(--ease); white-space: nowrap; cursor: pointer;
  border: 2px solid transparent;
}
.btn-green {
  background: var(--g600); color: var(--white); border-color: var(--g600);
  box-shadow: 0 4px 16px rgba(33,150,63,.3);
}
.btn-green:hover { background: var(--g700); border-color: var(--g700); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(33,150,63,.4); }

.btn-white { background: var(--white); color: var(--g700); border-color: var(--white); }
.btn-white:hover { background: var(--g100); transform: translateY(-2px); }

.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,.55); }
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: var(--white); }

.btn-outline-green { background: transparent; color: var(--g700); border-color: var(--g600); }
.btn-outline-green:hover { background: var(--g600); color: var(--white); }

.btn-lg { padding: 1.05rem 2.4rem; font-size: 1rem; border-radius: 10px; }
.btn-xl { padding: 1.2rem 2.8rem; font-size: 1.05rem; border-radius: 10px; }
.btn-full { width: 100%; }

/* =============================================
   TOP BAR
   ============================================= */
.topbar {
  background: var(--g800); color: rgba(255,255,255,.8);
  font-size: .8rem; padding: .45rem 0;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 1.5rem; }
.topbar a { color: rgba(255,255,255,.8); display: flex; align-items: center; gap: .35rem; transition: color .15s; }
.topbar a:hover { color: var(--white); }
.topbar-sep { opacity: .3; }

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  background: var(--white); position: sticky; top: 0; z-index: 900;
  border-bottom: 1px solid var(--border);
  transition: box-shadow .2s;
}
.navbar.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,.1); border-color: transparent; }

.nav-inner {
  display: flex; align-items: center; gap: 1rem;
  height: 70px;
}

/* Logo */
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo > img {
  height: 44px; width: auto;
  mix-blend-mode: multiply;
}

/* Crop tagline — image 2000x704px.
   Letters: rows 125–496. Tagline: rows 519–590.
   At img=70px: letters end at 49.3px, tagline starts at 51.6px → container=50px is the safe window. */
.logo-crop {
  position: relative;
  overflow: hidden;
  height: 52px;
  width: 199px;
  display: block;
  flex-shrink: 0;
}
.logo-crop img {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  height: 70px !important;
  width: auto !important;
  margin: 0 !important;
  mix-blend-mode: normal !important;
}
.fl-logo .logo-crop {
  height: 37px;
  width: 148px;
}
.fl-logo .logo-crop img {
  height: 52px !important;
  filter: brightness(0) invert(1);
}

.logo-text {
  font-family: 'Poppins', sans-serif;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--g600);
  letter-spacing: 0.12em;
  line-height: 1;
  display: block;
  text-decoration: none;
}
.logo-text-white {
  color: rgba(255,255,255,0.95);
}

/* Links */
.nav-links { display: flex; align-items: center; gap: .15rem; margin-left: auto; }
.nav-links > a, .nav-links > .dropdown > .dropbtn {
  padding: .5rem .9rem; border-radius: 7px;
  font-size: .9rem; font-weight: 500; color: var(--text);
  transition: all .15s; display: flex; align-items: center; gap: .3rem;
}
.nav-links > a:hover, .nav-links > .dropdown > .dropbtn:hover,
.nav-links > a.active, .nav-links > .dropdown.active > .dropbtn {
  color: var(--g700); background: var(--g100);
}
.dropbtn::after { content: '▾'; font-size: .65rem; opacity: .55; margin-left: .1rem; }

/* Dropdown — visual mega menu */
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(-6px) scale(.97);
  background: var(--white); border: 1px solid var(--border);
  border-radius: 16px; box-shadow: 0 20px 60px rgba(0,0,0,.14);
  width: 580px; padding: .75rem; z-index: 999;
  opacity: 0; visibility: hidden;
  transition: all .2s var(--ease); pointer-events: none;
}
.dropdown.open .dropdown-menu,
.dropdown:hover .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0) scale(1); pointer-events: all;
}
.dropdown-menu-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: .5rem; }
.dropdown-menu a {
  display: flex; flex-direction: column; gap: 0;
  border-radius: 12px; overflow: hidden;
  border: 1.5px solid var(--border);
  transition: all .18s; text-decoration: none;
}
.dropdown-menu a:hover { border-color: var(--g500); box-shadow: 0 4px 16px rgba(33,150,63,.12); transform: translateY(-2px); }
.dm-thumb {
  height: 80px; overflow: hidden; background: var(--g100);
}
.dm-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.dropdown-menu a:hover .dm-thumb img { transform: scale(1.06); }
.dm-info { padding: .65rem .8rem .75rem; }
.dm-title { font-size: .85rem; font-weight: 700; color: var(--text); display: block; }
.dm-desc { font-size: .75rem; color: var(--muted); margin-top: .15rem; display: block; line-height: 1.4; }
/* arrow indicator on hover */
.dropdown-menu a .dm-arrow { display: none; }

/* Small dropdown caret arrow */
.dropdown-menu::before {
  content: '';
  position: absolute; top: -7px; left: 50%; transform: translateX(-50%);
  border: 7px solid transparent; border-top: none;
  border-bottom-color: var(--border);
  width: 0; height: 0;
}
.dropdown-menu::after {
  content: '';
  position: absolute; top: -5px; left: 50%; transform: translateX(-50%);
  border: 6px solid transparent; border-top: none;
  border-bottom-color: var(--white);
  width: 0; height: 0;
}

/* Right side */
.nav-right { display: flex; align-items: center; gap: .75rem; margin-left: 1rem; }
.nav-phone-link {
  display: flex; align-items: center; gap: .4rem;
  font-weight: 700; font-size: .9rem; color: var(--g700);
  padding: .5rem .75rem; border-radius: 7px;
  transition: all .15s;
}
.nav-phone-link:hover { background: var(--g100); }

/* Burger */
.burger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; border-radius: 8px; padding: .5rem;
  border: 1px solid var(--border); transition: background .15s;
}
.burger:hover { background: var(--slate); }
.burger span { display: block; width: 100%; height: 2px; background: var(--text); border-radius: 2px; transition: all .25s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-nav {
  display: none; position: fixed; top: 70px; left: 0; right: 0; bottom: 0; z-index: 850;
  background: var(--white); overflow-y: auto; padding: 1.5rem;
  border-top: 1px solid var(--border);
  flex-direction: column; gap: .25rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block; padding: .9rem 1rem; border-radius: 8px;
  font-weight: 500; color: var(--text); transition: all .12s;
}
.mobile-nav a:hover { background: var(--g100); color: var(--g700); }
.mobile-nav .mob-section { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); padding: 1rem 1rem .35rem; }
.mobile-nav .mob-cta { margin-top: 1rem; }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative; min-height: 92vh;
  display: flex; align-items: center;
  overflow: hidden; background: var(--g900);
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover; background-position: center;
  opacity: .28;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(9,59,23,.95) 0%, rgba(9,59,23,.7) 55%, rgba(9,59,23,.4) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 720px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.12); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2); border-radius: 100px;
  padding: .35rem .9rem .35rem .5rem; margin-bottom: 1.5rem;
}
.hero-badge-dot { width: 8px; height: 8px; background: #4ade80; border-radius: 50%; animation: blink 2s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.8)} }
.hero-badge span { font-size: .78rem; font-weight: 500; color: rgba(255,255,255,.85); }

.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 .accent { color: #6ee89a; }
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,.78); max-width: 540px; margin-bottom: 2rem; line-height: 1.75; }

.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 2.5rem; }

.hero-trust { display: flex; flex-wrap: wrap; gap: 1.25rem 2rem; }
.htrust-item { display: flex; align-items: center; gap: .5rem; color: rgba(255,255,255,.7); font-size: .85rem; }
.htrust-item svg, .htrust-item .ic { flex-shrink: 0; }

.hero-rating {
  position: absolute; right: 0; bottom: 3rem; z-index: 2;
  background: var(--white); border-radius: var(--r);
  box-shadow: var(--shadow-lg); padding: 1.1rem 1.5rem;
  display: flex; align-items: center; gap: .85rem;
  min-width: 220px;
}
.rating-stars { color: #f59e0b; font-size: 1rem; letter-spacing: .05em; }
.rating-copy strong { display: block; font-size: 1.2rem; font-family: 'Poppins', sans-serif; color: var(--text); }
.rating-copy span { font-size: .78rem; color: var(--mid); }

/* =============================================
   TRUST BAR
   ============================================= */
.trust-bar { background: var(--g600); padding: 1rem 0; }
.trust-bar .container { display: flex; justify-content: center; flex-wrap: wrap; gap: .5rem 2.5rem; }
.tb-item { display: flex; align-items: center; gap: .5rem; color: rgba(255,255,255,.9); font-size: .84rem; font-weight: 500; }
.tb-item .dot { width: 6px; height: 6px; background: rgba(255,255,255,.4); border-radius: 50%; }

/* =============================================
   SERVICES
   ============================================= */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.75rem; }

.svc-card {
  border-radius: var(--r-lg); overflow: hidden;
  background: var(--white); border: 1px solid var(--border);
  box-shadow: var(--shadow); display: flex; flex-direction: column;
  transition: transform .25s var(--ease), box-shadow .25s;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.svc-card-img {
  height: 200px; overflow: hidden; position: relative;
  background: var(--g100);
}
.svc-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease);
}
.svc-card:hover .svc-card-img img { transform: scale(1.05); }
.svc-card-img::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(14, 68, 30, 0.38);
  pointer-events: none; z-index: 1;
}
.svc-card-tag {
  position: absolute; top: .85rem; left: .85rem; z-index: 2;
  background: var(--g600); color: var(--white);
  font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: .25rem .65rem; border-radius: 4px;
}

.svc-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.svc-card-body h3 { margin-bottom: .5rem; font-size: 1.2rem; }
.svc-card-body p { font-size: .9rem; color: var(--mid); flex: 1; line-height: 1.7; }

.svc-features { margin: 1.1rem 0; display: flex; flex-direction: column; gap: .45rem; }
.svc-features li {
  display: flex; align-items: flex-start; gap: .5rem;
  font-size: .85rem; color: var(--mid);
}
.svc-features li::before { content: '✓'; color: var(--g600); font-weight: 700; flex-shrink: 0; line-height: 1.65; }

.svc-card-foot {
  padding: 1rem 1.5rem; border-top: 1px solid var(--border);
  background: var(--cream);
}

/* =============================================
   QUOTE CTA (full-width green band)
   ============================================= */
.quote-band { background: var(--g700); padding: 72px 0; }
.quote-band-inner { display: grid; grid-template-columns: 1fr 440px; gap: 4rem; align-items: center; }
.quote-band h2 { color: var(--white); }
.quote-band p { color: rgba(255,255,255,.78); margin-top: .75rem; font-size: 1.05rem; line-height: 1.75; }
.quote-checks { display: flex; flex-direction: column; gap: .65rem; margin-top: 1.5rem; }
.quote-checks li { display: flex; align-items: center; gap: .6rem; color: rgba(255,255,255,.8); font-size: .9rem; }
.quote-checks li::before { content: '✓'; color: #6ee89a; font-weight: 700; flex-shrink: 0; }

.quote-card {
  background: var(--white); border-radius: var(--r-lg);
  padding: 2rem; box-shadow: 0 20px 60px rgba(0,0,0,.2);
}
.quote-card h3 { margin-bottom: .2rem; }
.quote-card .sub { font-size: .85rem; color: var(--mid); margin-bottom: 1.5rem; }

.fld { display: flex; flex-direction: column; gap: .35rem; margin-bottom: 1rem; }
.fld label { font-size: .8rem; font-weight: 600; color: var(--text); }
.fld input, .fld select, .fld textarea {
  padding: .75rem 1rem; border: 1.5px solid var(--border); border-radius: 8px;
  font-size: .9rem; font-family: inherit; color: var(--text);
  background: var(--cream); transition: border-color .15s;
}
.fld input:focus, .fld select:focus, .fld textarea:focus {
  outline: none; border-color: var(--g600); background: var(--white);
}
.fld textarea { resize: vertical; min-height: 90px; }
.fld-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* =============================================
   WHY SECTION
   ============================================= */
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.why-card {
  padding: 1.75rem; border-radius: var(--r-lg);
  background: var(--white); border: 1px solid var(--border);
  transition: all .2s;
}
.why-card:hover { border-color: var(--g500); box-shadow: var(--shadow-md); }
.why-icon {
  width: 52px; height: 52px; background: var(--g100); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1rem;
}
.why-card h4 { margin-bottom: .4rem; color: var(--text); }
.why-card p { font-size: .88rem; color: var(--mid); line-height: 1.7; }

/* =============================================
   HOW IT WORKS
   ============================================= */
.how-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; position: relative; }
.how-grid::before {
  content: ''; position: absolute;
  top: 36px; left: calc(50% / 3 + 36px); right: calc(50% / 3 + 36px);
  height: 2px; background: var(--border); z-index: 0;
}
.how-step { text-align: center; position: relative; z-index: 1; }
.how-num {
  width: 72px; height: 72px; margin: 0 auto 1.25rem;
  background: var(--g600); color: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif; font-size: 1.6rem; font-weight: 800;
  box-shadow: 0 0 0 8px var(--white), 0 0 0 10px var(--border);
}
.how-step h3 { margin-bottom: .5rem; font-size: 1.1rem; }
.how-step p { font-size: .9rem; color: var(--mid); line-height: 1.7; }

/* =============================================
   AREAS
   ============================================= */
.areas-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
.area-pill {
  background: var(--white); border: 1.5px solid var(--border); border-radius: var(--r);
  padding: 1.1rem; text-align: center; transition: all .18s;
}
.area-pill:hover { border-color: var(--g600); background: var(--g050); }
.area-pill .ap-icon { font-size: 1.4rem; margin-bottom: .4rem; }
.area-pill .ap-name { font-weight: 700; font-size: .9rem; color: var(--text); }
.area-pill .ap-towns { font-size: .75rem; color: var(--muted); margin-top: .2rem; }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testi-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 2.5rem; }
.g-badge {
  display: flex; align-items: center; gap: .75rem;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r);
  padding: .75rem 1.1rem; box-shadow: var(--shadow);
}
.g-badge .g-icon { font-size: 1.4rem; }
.g-badge-text strong { display: block; font-size: 1rem; font-family: 'Poppins', sans-serif; color: var(--text); }
.g-badge-text span { font-size: .78rem; color: var(--mid); }
.g-stars { color: #f59e0b; font-size: .9rem; }

.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.review-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 1.5rem; box-shadow: var(--shadow); transition: box-shadow .2s;
}
.review-card:hover { box-shadow: var(--shadow-md); }
.rc-stars { color: #f59e0b; font-size: .95rem; margin-bottom: .85rem; }
.rc-text { font-size: .9rem; color: var(--mid); line-height: 1.75; margin-bottom: 1.1rem; font-style: italic; }
.rc-author { display: flex; align-items: center; gap: .75rem; }
.rc-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--g600); color: var(--white);
  font-family: 'Poppins', sans-serif; font-weight: 800; font-size: .9rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.rc-name { font-weight: 600; font-size: .88rem; }
.rc-loc { font-size: .78rem; color: var(--muted); }

/* =============================================
   FAQ
   ============================================= */
.faq-wrap { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: .75rem; }
.faq-item {
  background: var(--white); border: 1.5px solid var(--border); border-radius: var(--r);
  overflow: hidden; transition: border-color .15s;
}
.faq-item.open { border-color: var(--g500); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.1rem 1.5rem; cursor: pointer; user-select: none;
  font-weight: 600; font-size: .95rem; color: var(--text);
  gap: 1rem;
}
.faq-q:hover { color: var(--g700); }
.faq-toggle {
  width: 28px; height: 28px; border-radius: 6px; background: var(--slate);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-size: 1.2rem; font-weight: 300; transition: all .2s; color: var(--mid);
  line-height: 1;
}
.faq-item.open .faq-toggle { background: var(--g100); color: var(--g600); transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .2s;
}
.faq-a p { padding: 0 1.5rem 1.1rem; font-size: .9rem; color: var(--mid); line-height: 1.75; }
.faq-item.open .faq-a { max-height: 300px; }

/* =============================================
   WHATSAPP SECTION
   ============================================= */
.whatsapp-section {
  background: #075e54;
  padding: 52px 0;
}
.wa-inner {
  display: flex; align-items: center; gap: 2.5rem;
  flex-wrap: wrap;
}
.wa-icon-wrap {
  width: 80px; height: 80px; border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 8px rgba(37,211,102,.2);
}
.wa-text { flex: 1; min-width: 220px; }
.wa-text h2 { color: #fff; margin-bottom: .4rem; font-size: clamp(1.4rem,2.5vw,2rem); }
.wa-text p  { color: rgba(255,255,255,.75); font-size: 1rem; margin: 0; }
.wa-actions {
  display: flex; flex-direction: column; align-items: flex-end; gap: .75rem;
  flex-shrink: 0;
}
.wa-number {
  display: flex; align-items: center; gap: .5rem;
  color: rgba(255,255,255,.85); font-size: 1.1rem; font-weight: 600;
}
.wa-btn {
  background: #25d366; color: #fff;
  border-color: #25d366;
  font-size: 1rem; font-weight: 700;
  padding: .85rem 2rem;
  box-shadow: 0 4px 16px rgba(37,211,102,.35);
}
.wa-btn:hover {
  background: #1da851; border-color: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,.45);
}
@media (max-width: 640px) {
  .wa-inner { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .wa-actions { align-items: flex-start; }
}

/* =============================================
   CTA STRIP
   ============================================= */
.cta-strip {
  background: var(--g900); padding: 72px 0;
  text-align: center; position: relative; overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(33,150,63,.3) 0%, transparent 70%);
}
.cta-strip h2 { color: var(--white); position: relative; }
.cta-strip p { color: rgba(255,255,255,.7); margin: .75rem auto 2rem; max-width: 520px; font-size: 1.05rem; position: relative; }
.cta-strip .cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; position: relative; }

/* =============================================
   STATS ROW
   ============================================= */
.stats-row { background: var(--g600); padding: 48px 0; }
.stats-inner { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; text-align: center; }
.stat-item {}
.stat-num {
  font-family: 'Poppins', sans-serif; font-size: 2.8rem; font-weight: 800;
  color: var(--white); display: block; line-height: 1;
}
.stat-label { font-size: .82rem; color: rgba(255,255,255,.7); margin-top: .4rem; text-transform: uppercase; letter-spacing: .08em; }

/* =============================================
   FOOTER
   ============================================= */
.footer { background: var(--g900); color: rgba(255,255,255,.7); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.1); }

.footer-brand .fl-logo { margin-bottom: 1rem; }
.footer-brand .fl-logo img { filter: brightness(0) invert(1); }
.footer-brand p { font-size: .88rem; line-height: 1.75; max-width: 290px; margin-bottom: 1.5rem; }
.footer-socials { display: flex; gap: .6rem; }
.fsocial {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 700; color: rgba(255,255,255,.6);
  transition: all .15s;
}
.fsocial:hover { background: rgba(255,255,255,.18); color: var(--white); }

.footer-col h5 {
  font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.4); margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col ul li a { font-size: .88rem; transition: color .15s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-col ul li .fc-contact { display: flex; align-items: center; gap: .4rem; font-size: .88rem; }
.footer-col ul li .fc-contact:hover { color: var(--white); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: .5rem; padding: 1.25rem 0;
  font-size: .78rem; color: rgba(255,255,255,.35);
}
.footer-bottom a { color: rgba(255,255,255,.35); }
.footer-bottom a:hover { color: rgba(255,255,255,.6); }

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  background-color: var(--g900); padding: 56px 0 64px;
  position: relative; overflow: hidden;
  background-size: cover; background-position: center;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(110deg, rgba(9,59,23,.93) 0%, rgba(9,59,23,.78) 55%, rgba(9,59,23,.6) 100%);
}
.breadcrumb {
  display: flex; align-items: center; gap: .4rem;
  font-size: .8rem; color: rgba(255,255,255,.5); margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,.5); }
.breadcrumb a:hover { color: rgba(255,255,255,.8); }
.breadcrumb .sep { opacity: .35; }
.page-hero h1 { color: var(--white); }
.page-hero .ph-sub { color: rgba(255,255,255,.75); font-size: 1.05rem; max-width: 560px; margin: .75rem 0 1.75rem; }
.page-hero .ph-actions { display: flex; flex-wrap: wrap; gap: .75rem; }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-layout { display: grid; grid-template-columns: 1fr 480px; gap: 4rem; align-items: start; }
.contact-details { display: flex; flex-direction: column; gap: 1.5rem; }
.cd-item { display: flex; gap: 1rem; }
.cd-icon {
  width: 48px; height: 48px; background: var(--g100); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0;
}
.cd-item h4 { font-size: .78rem; text-transform: uppercase; letter-spacing: .09em; color: var(--muted); margin-bottom: .25rem; }
.cd-item a, .cd-item p { font-size: .95rem; font-weight: 600; color: var(--text); }
.cd-item a:hover { color: var(--g700); }
.cd-item small { display: block; font-size: .8rem; color: var(--muted); font-weight: 400; margin-top: .1rem; }

.contact-form-card {
  background: var(--white); border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg); padding: 2rem;
  border: 1px solid var(--border);
}
.contact-form-card h3 { margin-bottom: .25rem; }
.contact-form-card .cfc-sub { font-size: .88rem; color: var(--mid); margin-bottom: 1.5rem; }

/* =============================================
   STICKY PHONE (mobile only)
   ============================================= */
.sticky-phone {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 800;
  background: var(--g700); padding: .9rem 1.5rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,.2);
}
.sticky-phone a {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  color: var(--white); font-weight: 700; font-size: .95rem;
}

/* =============================================
   WHATSAPP STICKY BUTTON
   ============================================= */
.wa-sticky {
  position: fixed;
  bottom: 28px;
  left: 24px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: .6rem;
  background: #25d366;
  color: #fff;
  border-radius: 50px;
  padding: .75rem 1.4rem .75rem .85rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  text-decoration: none;
  font-weight: 700;
  font-size: .88rem;
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease;
}
.wa-sticky-label {
  display: block;
}
.wa-sticky:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37,211,102,.55);
}

/* Pulse ring animation */
.wa-sticky::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50px;
  background: #25d366;
  animation: wa-pulse 2.5s ease-out infinite;
  z-index: -1;
}
@keyframes wa-pulse {
  0%   { transform: scale(1); opacity: .6; }
  70%  { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1.35); opacity: 0; }
}

@media (max-width: 768px) {
  .wa-sticky { bottom: 80px; } /* clear the sticky phone bar */
}

/* =============================================
   SERVICE DETAIL (services.html)
   ============================================= */
.svc-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.svc-detail-reverse { direction: rtl; }
.svc-detail-reverse > * { direction: ltr; }
.svc-detail-img img {
  width: 100%; height: 420px;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
}
.svc-detail-body h2 { margin: .5rem 0 1rem; }
.svc-detail-body p { color: var(--mid); line-height: 1.8; }

@media (max-width: 768px) {
  .svc-detail-grid { grid-template-columns: 1fr; gap: 2rem; direction: ltr; }
  .svc-detail-reverse { direction: ltr; }
  .svc-detail-img img { height: 260px; }
}

/* =============================================
   TRUSTED LOGOS CAROUSEL
   ============================================= */
.trusted-logos-section {
  padding: 48px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.tl-heading {
  text-align: center;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.75rem;
}
.tl-outer {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}
.tl-track {
  display: flex;
  align-items: center;
  gap: 3rem;
  width: max-content;
  animation: logo-scroll 30s linear infinite;
}
.tl-track:hover { animation-play-state: paused; }
@keyframes logo-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.tl-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tl-logo img {
  height: 48px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  opacity: .85;
  transition: opacity .25s;
}
.tl-logo img:hover { opacity: 1; }

/* =============================================
   SAFARI / CROSS-BROWSER FIXES
   ============================================= */

/* Safari: backdrop-filter needs -webkit prefix */
.hero-badge { -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }

/* Safari: gap in flex needs fallback for older versions */
.hero-actions { gap: .75rem; }
.hero-trust { row-gap: .75rem; column-gap: 2rem; }

/* Safari: ensure position:sticky works */
.navbar { position: -webkit-sticky; position: sticky; }

/* Safari: smooth transforms need translateZ */
.svc-card:hover { transform: translateY(-6px) translateZ(0); }

/* Safari: form inputs default appearance */
.fld input, .fld select, .fld textarea {
  -webkit-appearance: none; appearance: none;
}

/* Safari: button resets */
.btn, .burger, .dropbtn { -webkit-appearance: none; appearance: none; }

/* All browsers: prevent text size adjust on mobile */
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .quote-band-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-rating { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .topbar { display: none; }
  .nav-links, .nav-right { display: none; }
  .burger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .how-grid::before { display: none; }
  .areas-grid { grid-template-columns: repeat(2,1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .testi-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .sticky-phone { display: block; }
  body { padding-bottom: 62px; }
}

@media (max-width: 520px) {
  h1 { font-size: 2.1rem; }
  .hero { min-height: auto; padding: 80px 0 100px; }
  .areas-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .fld-row { grid-template-columns: 1fr; }
}
