﻿/* ================================================================
   style.css â€“ Unique Invisible Safety Grill
   Theme: Forest Green #1B4332 | Amber Gold #F59E0B | White #FFFFFF
   Fonts: Montserrat (heading) + Nunito (body)
   ================================================================ */

/* â”€â”€ 1. CSS Variables â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
:root {
  --green:        #1B4332;
  --green-dark:   #0D2418;
  --green-mid:    #2D6A4F;
  --green-light:  #52B788;
  --green-pale:   #D8F3DC;
  --amber:        #F59E0B;
  --amber-dark:   #D97706;
  --amber-light:  #FDE68A;
  --bg:           #FFFFFF;
  --bg-alt:       #F6FDF9;
  --white:        #FFFFFF;
  --text:         #111827;
  --text-muted:   #4B5563;
  --text-light:   #9CA3AF;
  --border:       #E5E7EB;
  --border-green: rgba(82,183,136,0.25);
  --card-bg:      #FFFFFF;
  --shadow-sm:    0 2px 10px rgba(27,67,50,0.06);
  --shadow-md:    0 8px 32px rgba(27,67,50,0.10);
  --shadow-lg:    0 20px 60px rgba(27,67,50,0.14);
  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    18px;
  --radius-xl:    24px;
  --radius-pill:  999px;
  --transition:   0.3s ease;
  --font-body:    'Nunito', system-ui, sans-serif;
  --font-heading: 'Montserrat', system-ui, sans-serif;
}

/* â”€â”€ 2. Reset & Base â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
::selection { background: rgba(245,158,11,0.2); color: var(--green-dark); }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-alt); }
::-webkit-scrollbar-thumb { background: var(--green-mid); border-radius: var(--radius-pill); }
::-webkit-scrollbar-thumb:hover { background: var(--amber); }

/* â”€â”€ 3. Typography â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--green-dark);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.05rem, 2vw, 1.3rem); }
h4 { font-size: 1.05rem; }
p { margin-bottom: 0; }

/* â”€â”€ 4. Layout Utilities â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }
[id] { scroll-margin-top: 115px; }
.section-alt { background: var(--bg-alt); }
.section-green { background: var(--green); color: var(--white); }
.section-dark { background: var(--green-dark); color: var(--white); }
.section-green h2, .section-green h3 { color: var(--white); }
.section-green p { color: rgba(255,255,255,0.85); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.75); }
.text-center { text-align: center; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* â”€â”€ 5. Section Header â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  display: inline-block;
  padding: 0.35rem 1.1rem;
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.35);
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--amber-dark);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.section-green .section-tag,
.section-dark .section-tag {
  background: rgba(245,158,11,0.15);
  border-color: rgba(245,158,11,0.4);
  color: var(--amber-light);
}
.section-header h2 { margin-bottom: 1rem; }
.section-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.75;
}

/* â”€â”€ 6. Buttons â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-cta { background: var(--amber); color: #111827; border-color: var(--amber); box-shadow: 0 4px 20px rgba(245,158,11,0.35); }
.btn-cta:hover { background: var(--amber-dark); border-color: var(--amber-dark); box-shadow: 0 6px 30px rgba(245,158,11,0.5); transform: translateY(-2px); color: #111827; }
.btn-navy { background: var(--green); color: var(--white); border-color: var(--green); box-shadow: 0 4px 20px rgba(27,67,50,0.25); }
.btn-navy:hover { background: var(--green-dark); border-color: var(--green-dark); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.7); }
.btn-outline:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }
.btn-outline-navy { background: transparent; color: var(--green); border-color: var(--green); }
.btn-outline-navy:hover { background: var(--green); color: var(--white); }

/* â”€â”€ 7. Cards â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.card { background: var(--card-bg); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-sm); transition: all var(--transition); }
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
@media (max-width:768px) { .card:hover { transform: none; box-shadow: var(--shadow-sm); } }

/* â”€â”€ 8. Preloader (color override) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#nbcPreloader { background: var(--green) !important; }

/* â”€â”€ 9. Topbar â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.nbc-topbar { background: var(--green-dark); color: rgba(255,255,255,0.9); font-size: 0.78rem; font-weight: 500; position: relative; z-index: 1001; height: 38px; }
.nbc-topbar-inner { display: flex; align-items: center; justify-content: space-between; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; height: 100%; gap: 1rem; }
.nbc-topbar-left { display: flex; align-items: center; gap: 1.25rem; flex-shrink: 0; }
.nbc-topbar-right { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }
.nbc-topbar-link { display: flex; align-items: center; gap: 0.35rem; color: rgba(255,255,255,0.85); transition: color var(--transition); font-size: 0.78rem; }
.nbc-topbar-link:hover { color: var(--amber-light); }
.nbc-topbar-phone-plain { font-weight: 700; color: var(--white); }
.nbc-topbar-email { display: none; }
@media (min-width:640px) { .nbc-topbar-email { display: flex; } }
.nbc-topbar-social { color: rgba(255,255,255,0.75); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.04em; transition: color var(--transition); }
.nbc-topbar-social:hover { color: var(--amber-light); }

/* â”€â”€ 10. Nav â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.nbc-nav { position: sticky; top: 0; z-index: 1000; background: var(--white); box-shadow: 0 2px 20px rgba(27,67,50,0.08); transition: all var(--transition); height: 72px; }
.nbc-nav-inner { display: flex; align-items: center; justify-content: space-between; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; height: 100%; gap: 1.5rem; }
.nbc-logo { display: flex; align-items: center; gap: 0.6rem; font-family: var(--font-heading); font-weight: 800; font-size: 1rem; color: var(--green); white-space: nowrap; flex-shrink: 0; text-decoration: none; }
.nbc-logo img { height: 44px; width: auto; object-fit: contain; }
.nbc-logo span { color: var(--green); }
.nav-links { display: flex; align-items: center; gap: 0.25rem; flex: 1; justify-content: center; }
.nav-link { display: flex; align-items: center; padding: 0.5rem 0.9rem; font-family: var(--font-heading); font-weight: 600; font-size: 0.88rem; color: var(--text-muted); border-radius: var(--radius-pill); transition: all var(--transition); text-decoration: none; }
.nav-link:hover, .nav-active { color: var(--green); background: var(--bg-alt); }
.nav-active { color: var(--green) !important; font-weight: 700; }
.nav-cta-wrap { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }
.nav-cta { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.55rem 1.25rem; border-radius: var(--radius-pill); font-family: var(--font-heading); font-weight: 700; font-size: 0.82rem; cursor: pointer; transition: all var(--transition); text-decoration: none; white-space: nowrap; }
.nav-cta-outline { color: var(--green); border: 2px solid var(--green); background: transparent; }
.nav-cta-outline:hover { background: var(--green); color: var(--white); }
.nav-cta-fill { background: var(--amber); color: #111827; border: 2px solid var(--amber); }
.nav-cta-fill:hover { background: var(--amber-dark); border-color: var(--amber-dark); }
.hamburger { display: none; flex-direction: column; gap: 5px; width: 32px; padding: 4px; flex-shrink: 0; }
.hamburger span { display: block; height: 2.5px; background: var(--green); border-radius: var(--radius-pill); transition: all var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* â”€â”€ 11. Mobile Menu â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.mobile-overlay { position: fixed; inset: 0; background: rgba(13,36,24,0.55); z-index: 990; opacity: 0; pointer-events: none; transition: opacity var(--transition); backdrop-filter: blur(2px); }
.mobile-overlay.open { opacity: 1; pointer-events: all; }
.mobile-menu { position: fixed; top: 0; right: -100%; width: min(340px,90vw); height: 100vh; background: var(--white); z-index: 995; padding: 6rem 2rem 2rem; transition: right 0.35s cubic-bezier(0.25,0.46,0.45,0.94); overflow-y: auto; display: flex; flex-direction: column; gap: 0.3rem; box-shadow: -10px 0 60px rgba(27,67,50,0.15); }
.mobile-menu.open { right: 0; }
.mobile-nav-link { display: block; padding: 0.8rem 1.25rem; font-family: var(--font-heading); font-weight: 600; font-size: 1rem; color: var(--text); border-radius: var(--radius-md); transition: all var(--transition); text-decoration: none; }
.mobile-nav-link:hover, .mobile-nav-active { background: var(--bg-alt); color: var(--green); }
.mobile-cta-wrap { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.mobile-cta { display: flex; align-items: center; justify-content: center; gap: 0.65rem; padding: 0.9rem 1.5rem; border-radius: var(--radius-pill); font-family: var(--font-heading); font-weight: 700; font-size: 0.95rem; transition: all var(--transition); text-decoration: none; text-align: center; }
.mobile-cta-call { background: var(--green); color: var(--white); }
.mobile-cta-call:hover { background: var(--green-dark); }
.mobile-cta-wa { background: #22c55e; color: var(--white); }
.mobile-cta-wa:hover { background: #16a34a; }

/* â”€â”€ 12. Hero Section (Split Layout) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.uig-hero { background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 60%, var(--green-mid) 100%); min-height: 100vh; display: flex; align-items: center; overflow: hidden; position: relative; padding: 100px 0 60px; }
.uig-hero::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 20% 80%, rgba(82,183,136,0.12) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(245,158,11,0.08) 0%, transparent 50%); pointer-events: none; }
.uig-hero .container { position: relative; z-index: 2; width: 100%; }
.uig-hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.uig-hero-text { color: var(--white); }
.uig-hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(245,158,11,0.15); border: 1px solid rgba(245,158,11,0.4); border-radius: var(--radius-pill); padding: 0.4rem 1.1rem; font-size: 0.75rem; font-weight: 700; color: var(--amber-light); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1.5rem; }
.uig-hero-text h1 { font-size: clamp(2.2rem,5vw,3.6rem); font-weight: 900; color: var(--white); line-height: 1.1; margin-bottom: 1.25rem; letter-spacing: -0.02em; }
.uig-hero-text h1 span { color: var(--amber-light); }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.82); line-height: 1.75; margin-bottom: 1.5rem; max-width: 520px; }
.hero-phone-h2 { font-size: 1.05rem; font-weight: 700; color: var(--amber-light); margin-bottom: 1.75rem; display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap; }
.hero-phone-h2 a { color: var(--white); font-weight: 800; }
.hero-ph-label { color: rgba(255,255,255,0.7); font-weight: 500; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 0.75rem 1.5rem; }
.hero-trust span { font-size: 0.82rem; color: rgba(255,255,255,0.75); font-weight: 600; display: flex; align-items: center; gap: 0.35rem; }
.hero-trust span::before { content: '\2713'; color: var(--amber-light); font-weight: 800; }

/* Hero visual */
.uig-hero-visual { position: relative; display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 0.75rem; }
.uig-hero-img-main { grid-column: 1 / -1; border-radius: var(--radius-xl); overflow: hidden; box-shadow: 0 24px 60px rgba(0,0,0,0.35); }
.uig-hero-img-main img { width: 100%; height: 280px; object-fit: cover; }
.uig-hero-img-sm { border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 12px 30px rgba(0,0,0,0.25); }
.uig-hero-img-sm img { width: 100%; height: 155px; object-fit: cover; }
.uig-hero-badge-float { position: absolute; background: var(--white); border-radius: var(--radius-md); padding: 0.6rem 1rem; box-shadow: 0 8px 24px rgba(0,0,0,0.18); font-family: var(--font-heading); font-weight: 700; font-size: 0.78rem; color: var(--green-dark); display: flex; align-items: center; gap: 0.4rem; white-space: nowrap; z-index: 3; }
.badge-icon { width: 28px; height: 28px; background: var(--amber); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; flex-shrink: 0; }
.uig-hero-badge-top { top: -14px; right: 16px; }
.uig-hero-badge-bot { bottom: 16px; left: -16px; }

/* Legacy hero-section (kept for fallback) */
.hero-section { position: relative; height: 100vh; min-height: 600px; overflow: hidden; background: var(--green-dark); }
.hero-carousel, .hero-slide { position: absolute; inset: 0; }
.hero-slide { opacity: 0; transition: opacity 1.2s ease; }
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay-bottom { position: absolute; bottom: 0; left: 0; right: 0; height: 60%; background: linear-gradient(to top, rgba(13,36,24,0.85), transparent); z-index: 2; pointer-events: none; }
.hero-overlay-top { position: absolute; top: 0; left: 0; right: 0; height: 30%; background: linear-gradient(to bottom, rgba(13,36,24,0.5), transparent); z-index: 2; pointer-events: none; }
.hero-content { position: absolute; bottom: 0; left: 0; right: 0; z-index: 5; padding: 0 1.5rem 4rem; max-width: 1200px; margin: 0 auto; }
.hero-tag { display: inline-block; background: rgba(245,158,11,0.18); border: 1px solid rgba(245,158,11,0.4); color: var(--amber-light); padding: 0.35rem 1rem; border-radius: var(--radius-pill); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1rem; }
.hero-content h1 { color: var(--white); margin-bottom: 1rem; }
.hero-content h1 span { color: var(--amber-light); }
.hero-sub { color: rgba(255,255,255,0.82); margin-bottom: 1rem; font-size: 1.05rem; max-width: 600px; }
.carousel-controls { position: absolute; bottom: 1.5rem; right: 1.5rem; z-index: 6; }
.carousel-dots { display: flex; gap: 0.5rem; }
.carousel-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.45); cursor: pointer; transition: all var(--transition); border: none; }
.carousel-dot.active { background: var(--amber); width: 24px; border-radius: var(--radius-pill); }
.hero-scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 6; display: flex; flex-direction: column; align-items: center; gap: 0.35rem; color: rgba(255,255,255,0.5); font-size: 0.7rem; letter-spacing: 0.1em; }
.hero-scroll-line { width: 1.5px; height: 32px; background: linear-gradient(to bottom,rgba(255,255,255,0.6),transparent); animation: heroScroll 2s ease infinite; }
@keyframes heroScroll { 0%,100%{transform:scaleY(1);opacity:.6}50%{transform:scaleY(.5);opacity:.3} }

/* â”€â”€ 13. Trust Bar â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.trust-bar { background: var(--white); border-top: 1px solid var(--border-green); border-bottom: 1px solid var(--border-green); padding: 1.1rem 0; }
.trust-bar-inner { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; display: flex; align-items: center; justify-content: space-around; flex-wrap: wrap; gap: 1rem 1.5rem; }
.trust-item { display: flex; align-items: center; gap: 0.6rem; }
.trust-item-icon { width: 36px; height: 36px; background: var(--bg-alt); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.trust-item-text strong { display: block; font-family: var(--font-heading); font-size: 0.82rem; font-weight: 700; color: var(--green-dark); line-height: 1.2; }
.trust-item-text span { font-size: 0.72rem; color: var(--text-muted); }
.trust-divider { width: 1px; height: 36px; background: var(--border); }
@media (max-width:640px) { .trust-divider { display: none; } }

/* â”€â”€ 14. Features Grid â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.features-section { background: var(--bg-alt); }
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.75rem; }
.feature-card { background: var(--white); border-radius: var(--radius-xl); padding: 2.25rem 2rem; box-shadow: var(--shadow-sm); transition: all var(--transition); position: relative; overflow: hidden; }
.feature-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--green-pale); transition: background var(--transition); }
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); }
.feature-card:hover::before { background: linear-gradient(90deg, var(--green-light), var(--amber)); }
.feature-icon { width: 60px; height: 60px; background: linear-gradient(135deg, var(--green), var(--green-mid)); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 1.5rem; flex-shrink: 0; }
.feature-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--green-dark); margin-bottom: 0.75rem; }
.feature-card p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.7; }

/* â”€â”€ 15. Gallery Section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.gallery-section { background: var(--white); }
.gallery-filters { display: flex; gap: 0.6rem; flex-wrap: wrap; justify-content: center; margin-bottom: 2.5rem; }
.gallery-filter-btn { padding: 0.5rem 1.2rem; border-radius: var(--radius-pill); font-family: var(--font-heading); font-weight: 600; font-size: 0.82rem; color: var(--text-muted); background: var(--bg-alt); border: 1.5px solid var(--border); cursor: pointer; transition: all var(--transition); }
.gallery-filter-btn:hover { border-color: var(--green-light); color: var(--green); }
.gallery-filter-btn.active { background: var(--green); color: var(--white); border-color: var(--green); }
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.gallery-item { transition: all var(--transition); }
.gallery-item.hidden { display: none; }
.gallery-card { position: relative; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-sm); cursor: pointer; aspect-ratio: 4/3; }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-card:hover img { transform: scale(1.08); }
.gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,36,24,0.88) 0%, transparent 55%); display: flex; flex-direction: column; justify-content: flex-end; padding: 1.25rem; opacity: 0; transition: opacity var(--transition); }
.gallery-card:hover .gallery-overlay, .gallery-card:focus .gallery-overlay { opacity: 1; }
.gallery-overlay h3 { color: var(--white); font-size: 0.95rem; margin-bottom: 0.2rem; }
.gallery-overlay p { color: rgba(255,255,255,0.75); font-size: 0.78rem; }
.gallery-badge { display: inline-block; background: var(--green); color: var(--white); font-size: 0.68rem; font-weight: 700; padding: 0.2rem 0.65rem; border-radius: var(--radius-pill); margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 0.06em; align-self: flex-start; }
.gallery-zoom { position: absolute; top: 0.75rem; right: 0.75rem; width: 34px; height: 34px; background: rgba(255,255,255,0.9); border: none; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--green-dark); opacity: 0; transition: all var(--transition); box-shadow: var(--shadow-sm); }
.gallery-card:hover .gallery-zoom, .gallery-card:focus .gallery-zoom { opacity: 1; }
.gallery-zoom:hover { background: var(--amber); color: #111; transform: scale(1.1); }

/* â”€â”€ 16. Gallery Lightbox â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.gallery-lightbox { position: fixed; inset: 0; background: rgba(13,36,24,0.95); z-index: 9999; display: none; align-items: center; justify-content: center; backdrop-filter: blur(6px); }
.gallery-lightbox.open { display: flex; }
.lb-close { position: absolute; top: 1.5rem; right: 1.5rem; color: var(--white); background: rgba(255,255,255,0.12); border-radius: 50%; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background var(--transition); z-index: 2; }
.lb-close:hover { background: rgba(245,158,11,0.3); }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); color: var(--white); background: rgba(255,255,255,0.12); border-radius: 50%; width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background var(--transition); z-index: 2; }
.lb-nav:hover { background: rgba(245,158,11,0.3); }
.lb-prev { left: 1.5rem; }
.lb-next { right: 1.5rem; }
.lb-content { max-width: min(90vw,960px); text-align: center; }
.lb-content img { border-radius: var(--radius-lg); max-height: 80vh; object-fit: contain; }
.lb-caption { color: rgba(255,255,255,0.75); margin-top: 1rem; font-size: 0.9rem; }

/* â”€â”€ 17. Services Section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.services-section { background: var(--bg-alt); }
.services-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; }
.service-card { background: var(--white); border-radius: var(--radius-xl); padding: 2.25rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 1.25rem; transition: all var(--transition); border: 1.5px solid transparent; }
.service-card:hover { box-shadow: var(--shadow-md); border-color: var(--green-pale); transform: translateY(-4px); }
.service-icon-box { width: 64px; height: 64px; background: linear-gradient(135deg, var(--green), var(--green-mid)); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; font-size: 1.9rem; flex-shrink: 0; }
.service-card-body { flex: 1; }
.service-card-body h3 { font-size: 1.15rem; font-weight: 700; color: var(--green-dark); margin-bottom: 0.65rem; }
.service-card-body p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.7; margin-bottom: 1rem; }
.service-tags { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.service-tag { font-size: 0.72rem; font-weight: 700; padding: 0.25rem 0.7rem; background: var(--bg-alt); color: var(--green-mid); border-radius: var(--radius-pill); border: 1px solid var(--border-green); }
.section-phone-strip { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 0.75rem; margin-top: 3rem; padding: 1.25rem 2rem; background: var(--green-pale); border-radius: var(--radius-xl); border: 1.5px solid var(--border-green); }
.sps-label { font-weight: 600; color: var(--green-mid); font-size: 0.95rem; }
.sps-number { font-family: var(--font-heading); font-weight: 800; font-size: 1.2rem; color: var(--green-dark); letter-spacing: -0.01em; }
.sps-number:hover { color: var(--amber-dark); }

/* â”€â”€ 18. Process Section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.process-section { background: var(--white); }
.process-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; position: relative; }
.process-grid::before { content: ''; position: absolute; top: 42px; left: calc(16.66% + 1rem); right: calc(16.66% + 1rem); height: 2px; background: repeating-linear-gradient(90deg, var(--green-pale) 0px, var(--green-pale) 8px, transparent 8px, transparent 16px); pointer-events: none; }
.process-step { text-align: center; padding: 2.5rem 1.5rem 2rem; background: var(--white); border-radius: var(--radius-xl); border: 1.5px solid var(--border); position: relative; transition: all var(--transition); }
.process-step:hover { border-color: var(--green-pale); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.process-number { width: 56px; height: 56px; background: var(--green); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-weight: 900; font-size: 1.3rem; margin: 0 auto 1.5rem; position: relative; z-index: 1; box-shadow: 0 6px 20px rgba(27,67,50,0.25); }
.process-step h3 { font-size: 1.05rem; color: var(--green-dark); margin-bottom: 0.65rem; }
.process-step p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }

/* â”€â”€ 19. Stats Section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.stats-section { background: var(--green-dark); padding: 70px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; text-align: center; }
.stat-item { padding: 1rem; }
.stat-number { font-family: var(--font-heading); font-size: clamp(2.5rem,5vw,3.5rem); font-weight: 900; color: var(--amber-light); line-height: 1; margin-bottom: 0.5rem; letter-spacing: -0.02em; }
.stat-label { font-size: 0.88rem; font-weight: 600; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.06em; }

/* â”€â”€ 20. Testimonials â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.testimonials-section { background: var(--bg-alt); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.75rem; }
.testimonial-card { background: var(--white); border-radius: var(--radius-xl); padding: 2rem; box-shadow: var(--shadow-sm); transition: all var(--transition); position: relative; border-top: 4px solid var(--amber); }
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.testimonial-card::before { content: '\201C'; font-size: 5rem; font-family: Georgia,serif; color: var(--green-pale); position: absolute; top: 0.5rem; right: 1.25rem; line-height: 1; pointer-events: none; }
.stars { display: flex; gap: 2px; margin-bottom: 1rem; }
.stars span { color: var(--amber); font-size: 1rem; }
.testimonial-text { color: var(--text-muted); font-size: 0.92rem; line-height: 1.75; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar { width: 44px; height: 44px; background: linear-gradient(135deg, var(--green), var(--green-mid)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem; color: var(--white); flex-shrink: 0; }
.author-name { font-weight: 700; font-size: 0.92rem; color: var(--text); }
.author-loc { font-size: 0.78rem; color: var(--text-light); margin-top: 0.1rem; }

/* â”€â”€ 21. About Section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.about-section { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3.5rem; align-items: center; }
.about-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.about-stat-card { background: var(--bg-alt); border-radius: var(--radius-xl); padding: 1.75rem 1.25rem; text-align: center; border: 1.5px solid var(--border-green); transition: all var(--transition); }
.about-stat-card:hover { background: var(--green); border-color: var(--green); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.about-stat-card:hover .about-stat-num, .about-stat-card:hover .about-stat-label { color: var(--white); }
.about-stat-num { font-family: var(--font-heading); font-size: clamp(1.8rem,3vw,2.4rem); font-weight: 900; color: var(--green); line-height: 1; margin-bottom: 0.4rem; transition: color var(--transition); }
.about-stat-label { font-size: 0.78rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; transition: color var(--transition); }
.about-text .section-tag { margin-bottom: 1rem; }
.about-text h2 { margin-bottom: 1.25rem; }
.about-text p { color: var(--text-muted); line-height: 1.8; margin-bottom: 1rem; font-size: 0.97rem; }

/* About story grid (services/about pages) */
.about-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.about-story-grid.reverse { direction: rtl; }
.about-story-grid.reverse > * { direction: ltr; }
.service-detail-list { list-style: none; margin: 1.25rem 0; display: flex; flex-direction: column; gap: 0.5rem; }
.service-detail-list li { color: var(--text-muted); font-size: 0.9rem; display: flex; align-items: flex-start; gap: 0.4rem; line-height: 1.5; }

/* â”€â”€ 22. Applications Section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.applications-section { background: var(--bg-alt); }
.apps-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 1.25rem; }
.app-card { background: var(--white); border-radius: var(--radius-xl); padding: 1.75rem 1rem; text-align: center; box-shadow: var(--shadow-sm); transition: all var(--transition); border: 1.5px solid transparent; }
.app-card:hover { border-color: var(--green-pale); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.app-icon { font-size: 2rem; margin-bottom: 0.75rem; display: block; }
.app-card h3 { font-size: 0.82rem; font-weight: 700; color: var(--green-dark); }

/* â”€â”€ 23. FAQ Section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.faq-section { background: var(--white); }
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.faq-item { background: var(--bg-alt); border-radius: var(--radius-lg); border: 1.5px solid var(--border); overflow: hidden; transition: all var(--transition); }
.faq-item:hover { border-color: var(--green-pale); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.25rem 1.5rem; font-family: var(--font-heading); font-weight: 600; font-size: 0.97rem; color: var(--green-dark); background: none; border: none; cursor: pointer; text-align: left; transition: color var(--transition); }
.faq-question:hover { color: var(--green); }
.faq-question[aria-expanded="true"] { color: var(--green); }
.faq-icon { flex-shrink: 0; width: 28px; height: 28px; background: var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); transition: all var(--transition); pointer-events: none; }
.faq-question[aria-expanded="true"] .faq-icon { background: var(--amber); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer p { padding: 0 1.5rem 1.5rem; color: var(--text-muted); font-size: 0.92rem; line-height: 1.8; }

/* â”€â”€ 24. CTA Banner â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.cta-banner { background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%); padding: 80px 0; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 30% 50%, rgba(82,183,136,0.2) 0%, transparent 60%); pointer-events: none; }
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,0.82); max-width: 620px; margin: 0 auto 2rem; font-size: 1.05rem; line-height: 1.75; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* â”€â”€ 25. Contact Section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.contact-section { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3.5rem; align-items: flex-start; }
.contact-info { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-card { background: var(--bg-alt); border-radius: var(--radius-xl); padding: 1.5rem; display: flex; align-items: flex-start; gap: 1rem; border: 1.5px solid var(--border); transition: all var(--transition); }
.contact-card:hover { border-color: var(--green-pale); box-shadow: var(--shadow-sm); }
.contact-card-icon { width: 48px; height: 48px; background: var(--green); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.contact-card h3 { font-size: 0.88rem; font-weight: 700; color: var(--green-dark); margin-bottom: 0.25rem; }
.contact-card p { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 0.35rem; }
.contact-card a { color: var(--green); font-weight: 700; font-size: 0.92rem; }
.contact-card a:hover { color: var(--amber-dark); }
.contact-hours { background: var(--bg-alt); border-radius: var(--radius-xl); padding: 1.5rem; border: 1.5px solid var(--border); }
.contact-hours h3 { font-size: 0.9rem; font-weight: 700; color: var(--green-dark); margin-bottom: 0.75rem; }
.hours-row { display: flex; justify-content: space-between; padding: 0.45rem 0; border-bottom: 1px solid var(--border); font-size: 0.85rem; }
.hours-row:last-of-type { border-bottom: none; }
.hours-row span:first-child { color: var(--text-muted); }
.hours-row span:last-child { font-weight: 700; color: var(--green-dark); }
.contact-form-wrap {}
.contact-form-box { background: var(--white); border-radius: var(--radius-xl); padding: 2.5rem; border: 1.5px solid var(--border); box-shadow: var(--shadow-md); }
.contact-form-box h2 { font-size: 1.5rem; color: var(--green-dark); margin-bottom: 0.5rem; }
.contact-form-box > p { color: var(--text-muted); margin-bottom: 2rem; font-size: 0.9rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.25rem; }
.form-group label { font-family: var(--font-heading); font-size: 0.82rem; font-weight: 600; color: var(--text); }
.form-group label span { color: var(--green); }
.form-group input, .form-group select, .form-group textarea { padding: 0.8rem 1.1rem; border: 1.5px solid var(--border); border-radius: var(--radius-md); font-family: var(--font-body); font-size: 0.93rem; color: var(--text); background: var(--bg-alt); transition: all var(--transition); width: 100%; outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--green-light); background: var(--white); box-shadow: 0 0 0 3px rgba(82,183,136,0.15); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-consent { display: flex; gap: 0.75rem; align-items: flex-start; margin-bottom: 1.75rem; font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }
.form-consent input[type="checkbox"] { flex-shrink: 0; margin-top: 3px; accent-color: var(--green); }
.form-consent a { color: var(--green); text-decoration: underline; }
.form-submit { width: 100%; padding: 1rem; font-size: 1rem; font-weight: 700; }
.submit-success { display: none; }

/* â”€â”€ 26. Blog â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.blog-card { background: var(--white); border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-sm); transition: all var(--transition); }
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.blog-card-img-link { position: relative; display: block; aspect-ratio: 16/9; overflow: hidden; }
.blog-card-img-link img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-card-img-link img { transform: scale(1.06); }
.blog-badge { position: absolute; bottom: 0.75rem; left: 0.75rem; background: var(--green); color: var(--white); font-size: 0.68rem; font-weight: 700; padding: 0.25rem 0.75rem; border-radius: var(--radius-pill); text-transform: uppercase; letter-spacing: 0.06em; }
.blog-card-body { padding: 1.5rem; }
.blog-meta { font-size: 0.78rem; color: var(--text-light); margin-bottom: 0.65rem; }
.blog-card-body h2 { font-size: 1rem; font-weight: 700; margin-bottom: 0.65rem; line-height: 1.45; }
.blog-card-body h2 a { color: var(--green-dark); }
.blog-card-body h2 a:hover { color: var(--green); }
.blog-card-body > p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1rem; }
.blog-read-more { font-family: var(--font-heading); font-size: 0.82rem; font-weight: 700; color: var(--green); display: inline-flex; align-items: center; gap: 0.25rem; transition: gap var(--transition); }
.blog-read-more:hover { gap: 0.5rem; }
.blog-content { max-width: 800px; margin: 0 auto; padding: 3rem 1.5rem; }
.blog-content h2 { font-size: 1.6rem; margin: 2rem 0 1rem; color: var(--green-dark); }
.blog-content h3 { font-size: 1.2rem; margin: 1.5rem 0 0.75rem; color: var(--green); }
.blog-content p { color: var(--text-muted); line-height: 1.85; margin-bottom: 1.25rem; font-size: 0.97rem; }
.blog-content ul, .blog-content ol { padding-left: 1.5rem; margin-bottom: 1.25rem; list-style: disc; }
.blog-content li { color: var(--text-muted); line-height: 1.7; margin-bottom: 0.4rem; font-size: 0.95rem; }
.blog-content img { border-radius: var(--radius-lg); margin: 2rem 0; }
.blog-content a { color: var(--green); text-decoration: underline; }
.blog-content strong { color: var(--green-dark); font-weight: 700; }
.blog-content blockquote { border-left: 4px solid var(--amber); padding: 1rem 1.5rem; background: var(--bg-alt); border-radius: 0 var(--radius-md) var(--radius-md) 0; margin: 1.5rem 0; font-style: italic; color: var(--green-dark); }

/* â”€â”€ 27. Page Hero (inner pages) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.page-hero { background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%); padding: 100px 0 70px; position: relative; overflow: hidden; }
.page-hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.04) 1px,transparent 1px), linear-gradient(90deg,rgba(255,255,255,0.04) 1px,transparent 1px); background-size: 50px 50px; pointer-events: none; }
.page-hero-content { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.page-hero-content h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero-content p { color: rgba(255,255,255,0.82); font-size: 1.05rem; max-width: 620px; margin-bottom: 0.5rem; }
.page-hero-phone a { color: var(--amber-light); font-weight: 700; }
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; color: rgba(255,255,255,0.65); margin-bottom: 1.25rem; }
.breadcrumb a { color: rgba(255,255,255,0.75); }
.breadcrumb a:hover { color: var(--amber-light); }
.breadcrumb span { color: rgba(255,255,255,0.4); }
.breadcrumb [aria-current="page"] { color: var(--white); font-weight: 600; }
.why-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; max-width: 860px; margin: 0 auto; }
.why-item { display: flex; gap: 1rem; align-items: flex-start; padding: 1.5rem; background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); border: 1.5px solid var(--border); }
.why-item-icon { width: 48px; height: 48px; background: linear-gradient(135deg, var(--green), var(--green-mid)); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }
.why-item h3 { font-size: 0.97rem; font-weight: 700; color: var(--green-dark); margin-bottom: 0.35rem; }
.why-item p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }

/* â”€â”€ 28. Footer â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.nbc-footer { background: var(--green-dark); color: rgba(255,255,255,0.8); padding: 0; }
.footer-main { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; max-width: 1200px; margin: 0 auto; padding: 4rem 1.5rem 3rem; }
.footer-brand-name { display: flex; align-items: center; gap: 0.5rem; font-family: var(--font-heading); font-weight: 800; font-size: 0.95rem; color: var(--white); margin-bottom: 1rem; text-decoration: none; }
.footer-brand-name img { height: 38px; width: auto; }
.footer-brand-name span { color: var(--white); }
.footer-desc { font-size: 0.85rem; color: rgba(255,255,255,0.65); line-height: 1.75; margin-bottom: 1.5rem; }
.footer-socials { display: flex; gap: 0.65rem; }
.footer-social { width: 36px; height: 36px; background: rgba(255,255,255,0.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.75); transition: all var(--transition); }
.footer-social:hover { background: var(--amber); color: #111; }
.footer-heading { font-family: var(--font-heading); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--white); margin-bottom: 1.25rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-link { font-size: 0.85rem; color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer-link:hover { color: var(--amber-light); }
.footer-contact-item { display: flex; gap: 0.7rem; align-items: flex-start; margin-bottom: 0.75rem; font-size: 0.85rem; }
.footer-contact-item span:first-child { flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.8); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--amber-light); }
.footer-areas-wrap { border-top: 1px solid rgba(255,255,255,0.08); padding: 1.5rem; max-width: 1200px; margin: 0 auto; text-align: center; }
.footer-areas-title { font-size: 0.75rem; font-weight: 700; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.75rem; }
.footer-areas { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; }
.footer-area { font-size: 0.74rem; color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.06); padding: 0.2rem 0.65rem; border-radius: var(--radius-pill); }
.footer-area:hover { color: var(--amber-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 1.25rem 1.5rem; max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; color: rgba(255,255,255,0.45); gap: 1rem; flex-wrap: wrap; }
.footer-bottom a { color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--amber-light); }

/* â”€â”€ 29. Floating WhatsApp button â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.wa-float { position: fixed; bottom: 1.75rem; right: 1.75rem; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); box-shadow: 0 6px 24px rgba(37,211,102,0.45); z-index: 800; transition: all var(--transition); text-decoration: none; }
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.6); }
.wa-float svg { width: 28px; height: 28px; }

/* â”€â”€ 30. Genie Widget â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#genieToggle { position: fixed; bottom: 5.5rem; right: 1.75rem; width: 60px; height: 60px; z-index: 799; cursor: pointer; background: none; border: none; transition: transform var(--transition); }
#genieToggle:hover { transform: scale(1.08) rotate(5deg); }
#geniePopup { position: fixed; bottom: 10rem; right: 1.75rem; width: min(300px,calc(100vw - 3.5rem)); background: var(--white); border-radius: var(--radius-xl); box-shadow: 0 20px 60px rgba(27,67,50,0.18); z-index: 900; overflow: hidden; display: none; border: 1.5px solid var(--border-green); }
#geniePopup.open { display: block; }
.genie-popup-header { background: var(--green); color: var(--white); padding: 1.25rem 1.25rem 1rem; }
.genie-popup-header p { font-size: 0.82rem; color: rgba(255,255,255,0.8); margin-top: 0.25rem; }
.genie-popup-body { padding: 1rem; display: flex; flex-direction: column; gap: 0.6rem; }
.genie-popup-link { display: flex; align-items: center; gap: 0.75rem; padding: 0.85rem 1rem; border-radius: var(--radius-md); font-weight: 600; font-size: 0.88rem; transition: all var(--transition); text-decoration: none; color: var(--text); background: var(--bg-alt); }
.genie-popup-link:hover { background: var(--green-pale); color: var(--green-dark); }
.genie-popup-link .genie-icon { width: 34px; height: 34px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* â”€â”€ 31. Scroll Reveal â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.reveal, .reveal-left, .reveal-right { opacity: 0; transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal { transform: translateY(28px); }
.reveal-left { transform: translateX(-32px); }
.reveal-right { transform: translateX(32px); }
.reveal.visible, .reveal-left.visible, .reveal-right.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* â”€â”€ 32. Error / 404 â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.error-section { min-height: calc(100vh - 80px); display: flex; align-items: center; justify-content: center; text-align: center; padding: 7rem 1.25rem 5rem; background: var(--bg-alt); }
.error-inner { max-width: 580px; margin: 0 auto; }
.error-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(245,158,11,0.1); color: var(--amber-dark); border: 1px solid rgba(245,158,11,0.25); border-radius: var(--radius-pill); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.35rem 0.9rem; margin-bottom: 1.5rem; }
.error-code { font-family: var(--font-heading); font-size: clamp(6rem,22vw,11rem); font-weight: 900; color: var(--green-dark); line-height: 1; opacity: 0.1; margin-bottom: 0.5rem; }
.error-inner h1 { font-size: clamp(1.5rem,4vw,2.2rem); color: var(--green-dark); margin-bottom: 0.75rem; }
.error-inner p { color: var(--text-muted); margin-bottom: 2rem; font-size: 1rem; }
.error-links { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* â”€â”€ 33. Privacy / Legal â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.legal-content { max-width: 820px; margin: 0 auto; padding: 3rem 1.5rem 5rem; }
.legal-content h2 { font-size: 1.3rem; color: var(--green-dark); margin: 2.5rem 0 0.75rem; }
.legal-content p { color: var(--text-muted); line-height: 1.85; margin-bottom: 1rem; font-size: 0.95rem; }
.legal-content ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-content li { color: var(--text-muted); margin-bottom: 0.4rem; line-height: 1.7; font-size: 0.93rem; }
.legal-content a { color: var(--green); text-decoration: underline; }

/* â”€â”€ 34. Responsive â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width:1024px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .apps-grid { grid-template-columns: repeat(3,1fr); }
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
}
@media (max-width:900px) {
  .about-grid, .about-story-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-story-grid.reverse { direction: ltr; }
  .nav-links, .nav-cta-wrap { display: none; }
  .hamburger { display: flex; }
  .uig-hero-inner { grid-template-columns: 1fr; }
  .uig-hero-visual { display: none; }
  .uig-hero { min-height: auto; padding: 120px 0 70px; }
  .uig-hero-badge-float { display: none; }
  .uig-hero-text { text-align: center; }
  .hero-ctas { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-phone-h2 { justify-content: center; }
}
@media (max-width:768px) {
  .section { padding: 60px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .process-grid::before { display: none; }
  .apps-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .trust-bar-inner { justify-content: flex-start; }
  .footer-main { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .about-stats-grid { grid-template-columns: repeat(2,1fr); }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width:480px) {
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.5rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .apps-grid { grid-template-columns: repeat(3,1fr); }
  .cta-btns { flex-direction: column; align-items: center; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
  .about-stats-grid { grid-template-columns: 1fr 1fr; }
  .section-header { margin-bottom: 40px; }
}