/* ============================================================
   ROOT & RESET
   ============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --topbar-h:   35px;
  --navbar-h:   80px;
  --navy:       #0a1628;
  --navy-mid:   #0f2040;
  --navy-light: #1a3055;
  --gold:       #f5a623;
  --gold-bright:#ffbe44;
  --gold-light: #fff8e8;
  --orange:     #16a34a;
  --orange-dark:#166534;
  --green:      #16a34a;
  --green-mid:  #166534;
  --green-light:#f0fdf4;
  --green-dark: #053b2d;
  --emerald:    #10b981;
  --blue:       #3b82f6;
  --indigo:     #6366f1;
  --teal:       #0d9488;
  --white:      #ffffff;
  --off:        #f8f9fc;
  --text:       #1e293b;
  --muted:      #64748b;
  --border:     #e2e8f0;
  --radius-sm:  8px;
  --radius:     14px;
  --radius-lg:  20px;
  --shadow:     0 2px 16px rgba(10,22,40,0.08);
  --shadow-md:  0 6px 28px rgba(10,22,40,0.13);
  --shadow-lg:  0 14px 48px rgba(10,22,40,0.18);
}

*{
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: var(--text); background: #ffffff; width: 100%; position: relative; word-break: break-word; margin: 0; padding: 0; }
input::placeholder, textarea::placeholder {
  color: var(--muted);
  opacity: 0.7;
}

.cta-banner-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
a    { text-decoration: none; color: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  background: #16a34a; /* Solid green as per image */
  padding: 0;
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  position: fixed; top: 0; left: 0; z-index: 2000;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  width: 100%;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.topbar-inner {
  max-width: 1350px; margin: 0 auto; padding: 0 20px; width: 100%;
  display: flex; justify-content: space-between; align-items: center;
}
.topbar-group {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media(max-width:992px){
  :root { --topbar-h: 33px; --navbar-h: 60px; }
  .topbar {
    height: var(--topbar-h);
    position: fixed;
    top: 0;
    z-index: 2000;
  }
  .topbar-inner {
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    padding: 0 10px;
  }
  /* Hide emails on mobile as per image */
  .topbar-group:last-child { display: none; }
  .topbar-group { gap: 10px; }
  .topbar-contact { font-size: 1.05rem; }
  .topbar-contact span { display: flex; align-items: center; gap: 4px; }
  .topbar-contact b { font-size: 1.05rem; }
  .topbar-contact a { font-weight: 800; font-size: 1.1rem; }

  /* Navbar Fixed/Sticky for Mobile */
  .navbar {
    position: fixed !important;
    top: var(--topbar-h) !important; /* Right below topbar */
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    margin: 0 !important;
    border-radius: 0;
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    z-index: 1999 !important;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
  }

  /* Adding padding to body so content doesn't hide under fixed navbar */
  body {
    padding-top: calc(var(--topbar-h) + var(--navbar-h)) !important; /* Automatic shift */
  }

  .nav-inner { height: var(--navbar-h); padding: 0 20px; }
}

@media(max-width:480px){
  :root { --topbar-h: 31px; }
  .topbar { height: var(--topbar-h); }
  .topbar-inner { flex-wrap: nowrap; gap: 8px; justify-content: center; overflow-x: auto; scrollbar-width: none; }
  .topbar-inner::-webkit-scrollbar { display: none; }
  .topbar-contact { font-size: 0.9rem; white-space: nowrap; }
  .topbar-icon { width: 18px; height: 18px; font-size: 0.55rem; margin-right: 4px; }
  .topbar-contact span { gap: 4px; }
  .topbar-contact a { font-weight: 800; font-size: 1rem; }
  .topbar-contact b { display: none; } /* Hide label to save space on mobile */
  .navbar { top: var(--topbar-h) !important; }
  body { padding-top: calc(var(--topbar-h) + var(--navbar-h)) !important; }
}
.topbar-contact {
  display: flex; align-items: center;
  font-size: 0.88rem; color: #fff;
  font-weight: 500;
}
.topbar-icon {
  width: 22px; height: 22px;
  background: rgba(0,0,0,0.15); /* Circular dark background */
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-right: 6px;
}
.topbar-icon i { color: #fff; font-size: 0.65rem; }
.topbar-contact span { display: flex; align-items: center; }
.topbar-contact b { font-weight: 500; opacity: 0.9; margin-right: 4px; }
.topbar-contact a { color: #fff; font-weight: 800; letter-spacing: 0.2px; font-size: 0.92rem; }

@media(max-width:768px){
  .topbar-contact { font-size: 0.68rem; }
  .topbar-icon { width: 22px; height: 22px; }
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  position: fixed; top: var(--topbar-h); left: 0; width: 100%; z-index: 1999;
  box-shadow: 0 2px 12px rgba(10,22,40,0.07);
  transition: top 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.navbar.scrolled {
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(10,22,40,0.12);
  border-bottom-color: var(--green);
}
body {
  padding-top: calc(var(--topbar-h) + var(--navbar-h)); /* Space for fixed headers */
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; gap: 6px; height: var(--navbar-h);
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
}
.nav-logo img {
  height: 65px;
  width: auto;
}
@media(max-width:480px){
  .nav-inner { padding: 0 15px; height: 60px; }
  .nav-logo img { height: 45px; }
}
.nav-links { display: flex; align-items: center; gap: 1px; margin-left: 60px; margin-right: auto; }
.nav-link {
  padding: 0 13px; border-radius: 8px; font-size: 0.82rem; font-weight: 500;
  color: var(--text); white-space: nowrap; cursor: pointer;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.nav-link.active {
  background: transparent;
  color: var(--green) !important;
  font-weight: 700;
}
.nav-link.active i { color: var(--green) !important; }
.nav-link:hover { color: var(--green); }
.nav-dd { position: relative; }
.nav-link i { transition: transform 0.3s ease; }
.nav-dd.active > i { transform: rotate(180deg); }

.nav-dd-menu {
  position: absolute; top: 100%; left: 0;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg); min-width: 210px; display: none;
  z-index: 100;
  margin-top: 0; /* Removed gap to ensure hover persistence */
}
/* Bridge the gap between link and menu */
.nav-dd::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 20px;
  display: none;
}
.nav-dd:hover::after { display: block; }
@media(min-width: 901px) {
  .nav-dd:hover .nav-dd-menu { display: block; }
}
.nav-dd.active .nav-dd-menu { display: block; }
.nav-dd-menu a {
  display: block; padding: 9px 16px; font-size: 0.81rem; color: var(--text);
  border-bottom: 1px solid var(--border);
}
.nav-dd-menu a:last-child { border-bottom: none; }
.nav-dd-menu a:hover { color: var(--green); }

/* Nested Dropdown Support */
.nav-dd-sub { position: relative; }
.nav-dd-sub > a { display: flex !important; justify-content: space-between; align-items: center; }
.nav-dd-sub-menu {
  position: absolute;
  top: -1px;
  left: 100%;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  min-width: 200px;
  display: none;
  z-index: 101;
}
.nav-dd-sub:hover > .nav-dd-sub-menu { display: block; }
.nav-dd-sub::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 0;
  width: 10px;
  height: 100%;
}

.hamburger { display: none; background: none; border: none; font-size: 1.3rem; color: var(--navy); cursor: pointer; margin-left: auto; }

.mobile-quote-btn {
  display: none;
  background: #fff;
  color: #0a1628;
  border: 1.5px solid #0a1628;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  margin-left: auto;
  margin-right: 15px;
  transition: all 0.3s;
}

@media(max-width:900px){
  .nav-links { display: none; margin: 0; }
  .hamburger { display: block; margin-left: 0; }
  .mobile-quote-btn { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
    margin: 0;
    background: var(--white); padding: 10px 0; border-bottom: 1px solid var(--border); box-shadow: var(--shadow-lg);
    z-index: 998;
    max-height: 80vh;
    overflow-y: auto;
  }
  .nav-link { border-radius: 0; padding: 12px 20px; width: 100%; border-bottom: 1px solid var(--off); }
  .nav-link.active { background: var(--green-light); }
  .nav-dd-menu {
    position: static;
    display: none;
    transform: none;
    box-shadow: none;
    border: none;
    padding-left: 12px;
  }
  .nav-dd.active .nav-dd-menu {
    display: block;
  }
}

/* ============================================================
   PAGE HERO
   ============================================================ */
.page-hero {
  padding: 40px 20px 30px;
  position: relative; overflow: hidden;
  background: var(--navy-mid); /* Fallback */
}
@media(max-width:600px){
  .page-hero { padding: 30px 15px 25px; }
}
.page-hero .hero-bg {
  z-index: 0;
  position: absolute; inset: 0;
}
.page-hero .hero-bg-overlay {
  position: absolute; inset: 0;
  background: rgba(10, 22, 40, 0.25); /* Significantly lightened */
}

.page-hero .hero-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.hero-breadcrumb {
  display: flex; align-items: center; gap: 6px; font-size: 0.72rem;
  color: rgba(255,255,255,0.6); margin-bottom: 10px; flex-wrap: wrap;
}
.hero-breadcrumb a { color: rgba(255,255,255,0.6); }
.hero-breadcrumb a:hover { color: var(--gold); }
.hero-breadcrumb i { font-size: 0.6rem; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(245,166,35,0.18); border: 1px solid rgba(245,166,35,0.4);
  color: var(--gold); padding: 4px 12px; border-radius: 50px; font-size: 0.72rem; font-weight: 600;
  margin-bottom: 12px;
}
.hero-title {
  font-family: 'Playfair Display', serif; font-size: 2.5rem;
  font-weight: 900; color: var(--white); line-height: 1.2; margin-bottom: 10px;
}
.hero-title span { color: var(--gold); }
.hero-title .line-2 { color: var(--gold); }

.hero-desc { font-size: 0.88rem; color: rgba(255,255,255,0.8); max-width: 680px; line-height: 1.6; margin-bottom: 20px; }

/* ============================================================
   LAYOUT
   ============================================================ */
.page-body {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 25px 20px 60px; /* Reduced top padding */
  display: grid;
  grid-template-columns: 260px 1fr; /* Slightly narrower sidebar */
  gap: 30px; /* Reduced gap */
  align-items: flex-start !important; /* Ensure children don't stretch */
  box-sizing: border-box;
}

.content-col {
  background: #ffffff;
  border-radius: 20px;
  padding: 25px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 50px rgba(0,0,0,0.04);
  min-width: 0;
}

@media(max-width:992px){
  .page-body {
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 20px;
  }
  .sidebar {
    order: 2;
    position: static;
    width: 100%;
    gap: 15px;
  }
  .content-col {
    order: 1;
    padding: 20px 15px;
    border-radius: 12px;
  }
  .toc-card { display: none; } /* Hiding TOC on mobile to show content immediately */

  .features-grid, .loan-cards-stack {
    grid-template-columns: 1fr !important;
  }

  .feature-card.horizontal {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media(max-width:640px){
  .page-body {
    padding: 16px 12px;
    gap: 16px;
  }
}

/* FEATURES & LOAN CARDS MATCHING IMAGE */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin: 15px 0;
}
.features-grid.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.loan-cards-stack {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin: 15px 0;
}
.loan-cards-stack.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

@media(max-width:768px){
  .features-grid, .loan-cards-stack {
    grid-template-columns: 1fr !important;
  }
  .gs-grid { grid-template-columns: 1fr !important; }
  .stats-cards-container { grid-template-columns: 1fr !important; }
  .trust-grid { grid-template-columns: 1fr !important; }
}

.feature-card {
  background: #ffffff;
  border: 1px solid #f1f5f9;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.3s ease-out;
  will-change: transform, box-shadow;
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(22, 163, 74, 0.15);
  border-color: #16a34a;
}

.feature-icon-box {
  width: 45px;
  height: 45px;
  background: #f0fdf4; /* Light orange */
  color: #16a34a;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.feature-card h4 {
  font-size: 1.15rem;
  color: #0f172a;
  margin-bottom: 10px;
  font-weight: 700;
}
.feature-card p {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Horizontal variation for income/support */
.feature-card.horizontal {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 18px;
}
.feature-icon-small {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 1rem;
  flex-shrink: 0;
}
.feature-icon-small.orange { background: #f0fdf4; color: #16a34a; }
.feature-icon-small.gold { background: #fffbeb; color: #d97706; }

.feature-card.horizontal h4 { margin-bottom: 4px; font-size: 1rem; }
.feature-card.horizontal p { font-size: 0.88rem; }

@media(max-width:600px){
  .features-grid { grid-template-columns: 1fr; }
  .loan-cards-stack { grid-template-columns: 1fr; }
  .feature-card.horizontal { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* SIDEBAR TOC */
.sidebar {
  position: -webkit-sticky !important;
  position: sticky !important;
  top: calc(var(--topbar-h) + var(--navbar-h) + 20px) !important; /* Navbar + Topbar + Gap */
  z-index: 10;
  align-self: flex-start;
  height: auto;
  max-height: calc(100vh - 160px);
  display: flex;
  flex-direction: column;
  gap: 15px;
  overflow-y: auto;
  scrollbar-width: none;
  min-width: 260px;
  transition: all 0.3s ease;
}

.sidebar::-webkit-scrollbar {
  display: none; /* Chrome/Safari ke liye scrollbar hide */
}

/* Add shadow when sidebar is scrolled */
.sidebar.scrolled {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

@media(max-width:992px){
  .sidebar {
    position: static;
    top: auto;
    width: 100%;
  }
}
.toc-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border: 1px solid #e2e8f0;
}
.toc-head {
  background: #16a34a;
  padding: 14px 16px;
  border-bottom: 2px solid rgba(0,0,0,0.1);
}
.toc-head h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: #ffffff;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.3px;
}
.toc-list { list-style: none; padding: 4px 0; }
.toc-list li a {
  display: flex; align-items: center; gap: 10px;
  padding: 6px 15px; font-size: 0.82rem; color: #64748b; font-weight: 500;
  border-left: 3px solid transparent;
  transition: all 0.25s ease;
}
.toc-list li a i { font-size: 0.85rem; width: 16px; text-align: center; color: #94a3b8; }
.toc-list li a.active {
  color: var(--green);
  background: transparent;
  border-left-color: var(--green);
  font-weight: 700;
  padding-left: 15px;
  animation: slideIn 0.3s ease;
}
.toc-list li a.active i { color: var(--green) !important; }

@keyframes slideIn {
  from {
    opacity: 0.7;
  }
  to {
    opacity: 1;
  }
}
.toc-list li a.active i { color: #16a34a !important; }
.toc-list li a:hover:not(.active) {
  background: #f8fafc; color: #16a34a;
}

.rs-icon {
  font-size: 0.75rem; font-weight: 800; color: #94a3b8; width: 16px; text-align: center;
}
.active .rs-icon { color: #16a34a; }

/* SIDEBAR CTA MATCHED TO IMAGE */
.sidebar-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(245, 166, 35, 0.3);
}
.sidebar-cta h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 4px;
  line-height: 1.2;
}
.sidebar-cta p {
  font-size: 0.78rem;
  color: #334155;
  margin-bottom: 12px;
  font-weight: 500;
}
.cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #0f172a;
  color: #ffffff;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  transition: all 0.3s ease;
  text-decoration: none;
  width: 100%;
  border: none;
}
.cta-btn i { font-size: 0.9rem; }
.cta-btn:hover { 
  background: #000000;
  transform: translateY(-2px); 
  box-shadow: 0 6px 16px rgba(0,0,0,0.3); 
}
.cta-btn:active {
  transform: translateY(0);
}


/* ============================================================
   CONTENT SECTIONS (Simplified Style)
   ============================================================ */
.content-col > section {
  margin-bottom: 40px;
  scroll-margin-top: calc(var(--topbar-h) + var(--navbar-h) + 30px);
  background: transparent;
  padding: 0;
  border-radius: 0;
  border: none;
}
@media(max-width:600px){ .content-col > section { padding: 0; margin-bottom: 30px; } }

h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 12px;
  font-weight: 900;
  line-height: 1.3;
}
h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--navy);
  margin: 24px 0 12px;
  font-weight: 800;
}
h4 { font-size: 1.1rem; color: var(--navy); margin-bottom: 8px; font-weight: 700; }
p { margin-bottom: 12px; line-height: 1.7; font-size: 1rem; color: #475569; }
ul { margin-bottom: 15px; padding-left: 20px; }
li { margin-bottom: 8px; font-size: 1rem; color: #475569; }

.highlight-box {
  background: #f8fafc;
  border: 1px solid var(--border);
  padding: 18px;
  border-radius: 12px;
  margin: 20px 0;
  font-size: 1rem;
  transition: all 0.2s ease;
  cursor: pointer;
}

.highlight-box:hover {
  background: #f1f5f9;
  border-color: var(--text);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.info-box {
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  padding: 18px;
  border-radius: 12px;
  margin: 20px 0;
  font-size: 1rem;
  transition: all 0.2s ease;
  cursor: pointer;
}

.info-box:hover {
  background: #e0f2fe;
  border-color: #0284c7;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.1);
}

/* GRIDS */
.simple-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 30px 0;
}
.grid-item h4 { color: var(--green); margin-bottom: 8px; }
.grid-item p { font-size: 0.95rem; }
@media(max-width:600px){ .simple-grid { grid-template-columns: 1fr; } }

/* SUBSIDY */
.subsidy-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin: 25px 0;
}
.subsidy-item {
  padding: 12px 18px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  transition: all 0.2s ease;
}

/* REGIONAL PRESENCE GRID (MATCHED TO IMAGE) */
.regional-presence-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 25px;
}
.regional-presence-item {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 18px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.02);
  transition: all 0.3s ease;
}
.regional-presence-item:hover {
  border-color: var(--green);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transform: translateY(-2px);
}
.regional-presence-item strong {
  font-size: 1.05rem;
  color: #0f172a;
  font-weight: 700;
}
.regional-presence-item span {
  font-size: 0.95rem;
  color: #1e293b;
  font-weight: 700;
}
@media (max-width: 768px) {
  .regional-presence-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .regional-presence-item {
    padding: 15px 20px;
  }
}

@media(max-width: 640px) {
  .subsidy-list { grid-template-columns: 1fr; gap: 10px; }
}

.subsidy-item:hover {
  background: #f0fdf4;
  border-color: var(--green);
  transform: translateX(4px);
}

/* MODELS */
.models-simple-list { display: flex; flex-direction: column; gap: 10px; margin: 15px 0; }
.model-item {
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 0.9rem;
  transition: 0.3s;
  margin-bottom: 10px;
}
.model-item h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}
.model-item p {
  font-size: 0.85rem;
  margin-bottom: 0;
  line-height: 1.5;
}
.model-item.highlight {
  border-color: var(--green);
  background: #f0fdf4;
}
.model-item:hover {
  border-color: var(--green);
  transform: translateY(-2px);
}

/* CALC & FORMS */
.calc-box { background: var(--off); padding: 20px; border-radius: 8px; border: 1px solid var(--border); margin: 25px 0; }
.calc-box select { padding: 10px; margin: 10px 0; width: 100%; max-width: 300px; border-radius: 6px; border: 1px solid var(--border); font-family: inherit; }

/* ============================================================
   MODERN CONSULTATION BOX
   ============================================================ */
.modern-consultation-box {
  background: #0a1628; /* Same as footer navy */
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 20px 20px; /* Reduced padding */
  text-align: center;
  max-width: 500px; /* Reduced from 650px */
  margin: 25px auto;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.modern-consultation-box h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.3rem; /* Reduced from 1.5rem */
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
  line-height: 1.2;
}

.modern-consultation-box p {
  font-size: 0.85rem; /* Reduced from 0.95rem */
  color: rgba(255,255,255,0.7);
  margin-bottom: 15px;
  font-weight: 500;
}

.consult-input-group {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 12px;
  flex-wrap: nowrap;
}

.consult-input-group input {
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  width: 100%;
  max-width: 220px; /* Reduced */
  font-size: 0.85rem;
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-family: inherit;
  transition: all 0.3s;
}

.consult-input-group input::placeholder {
  color: rgba(255,255,255,0.4);
}

.consult-input-group input:focus {
  outline: none;
  border-color: #16a34a;
  background: rgba(255,255,255,0.1);
}

.consult-input-group .quote-btn {
  background: #16a34a;
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  border: none;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.consult-input-group .quote-btn:hover {
  background: #15803d;
  transform: translateY(-2px);
}

.consult-sep {
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  margin: 15px 0 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.direct-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold); /* Switched to gold for better contrast on dark background */
  color: #000;
  padding: 10px 25px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.direct-call-btn:hover {
  background: var(--gold-bright);
  transform: scale(1.02);
}

@media (max-width: 600px) {
  .modern-consultation-box { padding: 25px 15px; margin: 25px 10px; }
  .modern-consultation-box h2 { font-size: 1.3rem; }
  .consult-input-group { flex-direction: column; align-items: center; }
  .consult-input-group input { max-width: 100%; }
  .consult-input-group .quote-btn { width: 100%; justify-content: center; }
}

.final-cta {
  display: none; /* We are replacing this with the modern box */
}
.simple-btn {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  padding: 15px 40px;
  border-radius: 12px;
  font-weight: 700;
  margin-top: 20px;
  font-size: 1rem;
}

@media(max-width:480px){ .cta-form { flex-direction: column; align-items: center; } }

/* CTA BANNER SECTION */
.cta-banner-section {
  background: #060c14; /* Dark navy/black */
  padding: 15px 0;
  color: #fff;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.cta-banner-inner {
  display: flex;
  flex-direction: row; /* Horizontal */
  align-items: center;
  justify-content: space-between;
  text-align: left;
  gap: 20px;
}
.banner-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 2px;
  color: #fff;
  border-bottom: none !important;
  padding-bottom: 0 !important;
}
.banner-subtitle {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0;
}
.cta-banner-form {
  display: flex;
  gap: 12px;
  background: transparent;
  padding: 0;
  border: none;
  min-width: auto;
}
.cta-banner-form input {
  background: #111827; /* Darker input */
  border: 1px solid #374151;
  padding: 8px 16px;
  color: #fff;
  border-radius: 4px;
  font-size: 0.85rem;
  width: 220px;
}
.cta-banner-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.cta-banner-form input:focus {
  outline: 2px solid var(--gold);
  background: #1a2332;
}
.cta-banner-form button {
  background: #10b981; /* Bright orange */
  color: #fff;
  border: none;
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cta-banner-form button i {
  font-size: 0.9rem;
  transform: rotate(-15deg);
}

@media (max-width: 768px) {
  .cta-banner-inner { flex-direction: column; text-align: center; padding: 0 10px; }
  .cta-banner-form { width: 100%; flex-direction: column; align-items: center; gap: 10px; }
  .cta-banner-form input { width: 100%; max-width: 300px; }
  .banner-title { font-size: 1.1rem; }
  .banner-subtitle { font-size: 0.75rem; }
}

@media(max-width:768px){
  .hero-title { font-size: 1.7rem; }
  .hero-desc { font-size: 0.85rem; }
}
@media(max-width:480px){
  .hero-title { font-size: 1.4rem; }
  .hero-badge { font-size: 0.65rem; }
}

@media (max-width: 360px) {
  .hero-title { font-size: 1.3rem; }
  .cta-banner-form input { max-width: 100%; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: linear-gradient(to bottom, #053b2d, #08523d); /* Deep green gradient */
  padding: 50px 0 20px;
  color: #fff;
}
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; }

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer {
        padding: 40px 0 20px;
        text-align: left;
    }
    .f-socials {
        justify-content: flex-start;
    }
    .f-contact-item {
        justify-content: flex-start;
        text-align: left;
    }
}

.footer-brand img { height: 60px; filter: brightness(0) invert(1); margin-bottom: 20px; }
.footer-brand p { font-size: 0.82rem; color: rgba(255,255,255,0.7); line-height: 1.6; margin-bottom: 20px; }

.f-socials { display: flex; gap: 8px; }
.f-social {
  width: 34px; height: 34px; border-radius: 4px;
  background: rgba(255,255,255,0.08); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 0.85rem;
  transition: 0.3s;
}
.f-social:hover { background: var(--gold); color: var(--navy); transform: translateY(-3px); }

.footer-col h4 { font-size: 0.9rem; font-weight: 700; color: #fff; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { font-size: 0.82rem; color: rgba(255,255,255,0.7); transition: 0.3s; }
.footer-links a:hover { color: #fff; padding-left: 5px; }

.f-contact { display: flex; flex-direction: column; gap: 15px; }
.f-contact-item { display: flex; align-items: flex-start; gap: 12px; }
.f-contact-item i { color: var(--gold); font-size: 0.9rem; margin-top: 3px; }
.f-contact-info { display: flex; flex-direction: column; gap: 2px; }
.f-contact-info a, .f-contact-info span { font-size: 0.82rem; color: rgba(255,255,255,0.7); line-height: 1.4; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding: 15px 0; margin-top: 40px;
  display: flex; justify-content: center; align-items: center;
  font-size: 0.76rem; color: rgba(255,255,255,0.4);
}
.footer-bottom strong { color: var(--gold); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.wa-float {
  position: fixed; bottom: 80px; right: 20px;
  width: 46px; height: 46px; background: #25d366; color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; box-shadow: 0 4px 16px rgba(37,211,102,0.4); z-index: 1000;
  transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.1); }
.back-top {
  position: fixed; bottom: 24px; right: 20px;
  width: 46px; height: 46px; background: var(--gold); color: var(--navy);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1rem; cursor: pointer; border: none;
  box-shadow: 0 4px 16px rgba(245,166,35,0.4); z-index: 1000;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s, transform 0.2s;
}
.back-top:hover { transform: scale(1.1); }

/* ============================================================
   HOMEPAGE SPECIFIC STYLES
   ============================================================ */
.home-hero {
  background: linear-gradient(rgba(10, 22, 40, 0.7), rgba(10, 22, 40, 0.7)), url('https://images.unsplash.com/photo-1509391366360-2e959784a276?q=80&w=2072&auto=format&fit=crop') center/cover;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 0 20px;
}
.home-hero h1 { font-size: 3.5rem; font-family: 'Syne', sans-serif; font-weight: 800; line-height: 1.1; margin-bottom: 20px; }
.home-hero h1 span { color: var(--brand-yellow); }
.home-hero p { font-size: 1.2rem; max-width: 800px; margin: 0 auto 30px; color: rgba(255,255,255,0.9); }

.stats-bar {
  background: var(--white);
  padding: 40px 0;
  box-shadow: var(--shadow-md);
  margin-top: -50px;
  position: relative;
  z-index: 10;
  border-radius: 15px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

@media (max-width: 992px) {
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 0;
    margin-left: 20px;
    margin-right: 20px;
  }
}

@media (max-width: 600px) {
  .stats-bar {
    grid-template-columns: 1fr;
    padding: 20px 0;
  }
}
.stat-item h3 { font-size: 2.2rem; color: var(--brand-blue); font-weight: 800; margin-bottom: 5px; }
.stat-item p { font-size: 0.9rem; color: var(--muted); font-weight: 600; text-transform: uppercase; }

.section-head { text-align: center; margin-bottom: 50px; }
.section-head h2 { font-size: 2.5rem; margin-bottom: 15px; }
.section-head p { max-width: 600px; margin: 0 auto; }

.section-head { text-align: center; margin-bottom: 50px; }
.section-head h2 { font-size: 2.5rem; margin-bottom: 15px; }
.section-head p { max-width: 600px; margin: 0 auto; }


/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none; /* Reverted to original brightness */
}
.hero-bg-image {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1509391366360-2e959784a276?q=80&w=1200&auto=format&fit=crop') center/cover no-repeat;
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.1) 100%); /* Significantly lightened gradient */
  pointer-events: none;
}
.hero-bg-grid {
  display: none; /* Removed grid for cleaner view */
}

.hero-container {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: center;
  padding-top: 40px; padding-bottom: 40px;
  box-sizing: border-box;
  overflow: hidden;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 24px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.05em;
  color: var(--gold);
  text-transform: uppercase;
  border: 1.5px solid var(--gold);
  padding: 4px 12px;
  border-radius: 50px;
  background: rgba(245, 166, 35, 0.1);
}
.dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  text-shadow: 0 4px 30px rgba(0,0,0,0.9);
}
.hero-title span { display: block; overflow: hidden; }
.hero-title .line-1 { color: #ffffff; }
.hero-title .line-2 { color: var(--gold); }


.hero-title span.animate-in {
  animation: slideUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  font-size: 1.05rem; color: #fff;
  line-height: 1.7; max-width: 520px; margin-bottom: 36px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.8); /* Stronger shadow */
  font-weight: 500;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  padding: 14px 32px; border-radius: 100px;
  background: var(--green); color: #fff;
  font-size: 0.9rem; font-weight: 700;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(22, 163, 74, 0.35);
}
.btn-ghost {
  padding: 14px 28px; border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,0.25);
  color: #fff; font-size: 0.9rem; font-weight: 600;
  transition: border-color 0.2s, background 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* Hero Stats Cluster */
.stats-cluster {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 32px;
}
.stat-big {
  display: flex; align-items: baseline; gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 20px; margin-bottom: 20px;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem; font-weight: 900; color: var(--gold);
  line-height: 1;
}
.stat-big .stat-num { font-size: 4.5rem; }
.stat-label { font-size: 0.82rem; color: #fff; line-height: 1.4; font-weight: 600; text-shadow: 0 1px 3px rgba(0,0,0,0.5); }
.stat-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
.stat-sm { text-align: center; }
.stat-sm .stat-num { font-size: 1.8rem; display: block; margin-bottom: 4px; }
.stat-sm .stat-label { font-size: 0.7rem; }

.hero-scroll {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: #fff; font-size: 0.72rem; letter-spacing: 0.05em;
  text-shadow: 0 1px 5px rgba(0,0,0,0.5);
  z-index: 1;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(5px); }
}

@media(max-width:900px){
  .hero-container { grid-template-columns: 1fr; gap: 40px; padding-top: 80px; padding-bottom: 80px; }
  .hero-right { max-width: 400px; }
  .stats-cluster { padding: 24px; }
  .hero-scroll { display: none; }
}
@media(max-width:480px){
  .hero-container { padding: 0 15px; width: 100%; overflow: hidden; }
  .hero-title {
    font-size: clamp(1.4rem, 9vw, 2.2rem);
    line-height: 1.2;
    width: 100%;
    text-shadow: 0 2px 15px rgba(0,0,0,0.8);
  }
  .hero-sub {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 25px;
  }
  .hero-left { width: 100%; overflow: hidden; }
  .stats-cluster { padding: 15px; width: 100%; }
  .stat-row { grid-template-columns: 1fr 1fr; gap: 10px; }
  .stat-sm:last-child { grid-column: span 2; padding-top: 10px; border-top: 1px solid rgba(255,255,255,0.1); }
  .stat-num { font-size: 1.5rem; }
  .stat-big .stat-num { font-size: 2.2rem; }
  .stat-label { font-size: 0.6rem; }
  .hero-actions { width: 100%; gap: 10px; }
  .hero-actions button, .hero-actions a { width: 100% !important; margin: 0; }
}

/* ============================================================
   TICKER
   ============================================================ */
.ticker-bar {
  background: var(--green-dark);
  padding: 12px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.ticker-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: ticker 60s linear infinite;
}
.ticker-track span {
  font-size: 0.78rem; font-weight: 600; color: #ffffff;
  text-transform: uppercase; letter-spacing: 0.06em;
  padding: 0 24px;
}
.ticker-track .sep { color: var(--gold); padding: 0 4px; }
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   SOLUTIONS
   ============================================================ */
.solutions-section {
  padding: 30px 0;
  background: var(--off);
  border-top: 2px solid #ddd;
}
.sol-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.sol-header { margin-bottom: 20px; }
.sol-label {
  display: inline-block;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--green);
  background: var(--green-light); padding: 5px 12px; border-radius: 100px;
  margin-bottom: 16px;
}
.sol_label.light { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.7); }
.sol-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900; line-height: 1.1; color: var(--navy);
}
.sol-title em { color: var(--green); font-style: italic; }

.sol-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(10,22,40,0.1);
}
.sol-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border-right: 1px solid var(--border);
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
  cursor: pointer;
}
.sol-card:last-child { border-right: none; }
.sol-card:hover { transform: translateY(-6px); z-index: 2; box-shadow: 0 24px 60px rgba(10,22,40,0.15); }

.sol-card.featured {
  background: var(--navy);
}
.sol-card.featured .sol-card-inner h3,
.sol-card.featured .sol-num { color: #fff; }
.sol-card.featured .sol-card-inner p { color: rgba(255,255,255,0.65); }
.sol-card.featured .sol-icon { background: rgba(255,255,255,0.1); color: var(--gold); }
.sol-card.featured .sol-link { color: var(--gold); border-top-color: rgba(255,255,255,0.1); }

.sol-card-inner {
  position: relative; z-index: 1;
  padding: 15px 12px;
}
.sol-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 900;
  color: var(--border); line-height: 1;
  margin-bottom: 6px;
  display: block;
  transition: color 0.3s;
}
.sol-card:hover .sol-num { color: var(--green-light); }
.sol-card.featured:hover .sol-num { color: rgba(255,255,255,0.12); }

.sol-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--green-light); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; margin-bottom: 10px;
}
.sol-card-inner h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 800; color: var(--navy);
  margin-bottom: 6px;
}
.sol-card-inner p { font-size: 0.8rem; color: var(--muted); line-height: 1.4; margin-bottom: 0; }
.sol-link {
  display: flex; align-items: center; gap: 6px;
  margin-top: 12px; padding-top: 10px;
  border-top: 1px solid var(--border);
  font-size: 0.75rem; font-weight: 700; color: var(--green);
  transition: gap 0.2s;
}
.sol-link:hover { gap: 12px; }

.sol-card-bg {
  position: absolute; inset: 0; z-index: 0;
  opacity: 0;
  background: radial-gradient(circle at 80% 80%, rgba(22,163,74,0.08), transparent 60%);
  transition: opacity 0.4s;
}
.sol-card:hover .sol-card-bg { opacity: 1; }

@media(max-width:900px){
  .sol-cards { grid-template-columns: 1fr; }
  .sol-card { border-right: none; border-bottom: 1px solid var(--border); }
  .sol-card:last-child { border-bottom: none; }
}

/* ============================================================
   EDGE SECTION
   ============================================================ */
.edge-section {
  padding: 30px 0;
  background: #fff;
  border-top: 2px solid #ddd;
}
.edge-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center;
}
.edge-img-wrap {
  position: relative; border-radius: 24px; overflow: visible;
}
.edge-img-wrap img {
  border-radius: 24px;
  box-shadow: 0 24px 64px rgba(10,22,40,0.16);
  width: 100%;
  aspect-ratio: 4/3; object-fit: cover;
}
.edge-img-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--gold);
  border-radius: 20px; padding: 20px 24px;
  box-shadow: 0 12px 36px rgba(245,166,35,0.4);
  display: flex; flex-direction: column; align-items: center;
  gap: 2px;
}
.badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 900; color: var(--navy);
  line-height: 1;
}
.badge-txt { font-size: 0.72rem; color: var(--navy); font-weight: 700; text-align: center; line-height: 1.4; }

.edge-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900; color: var(--navy);
  line-height: 1.1; margin-bottom: 12px;
}
.edge-title em { color: var(--green); font-style: italic; }
.edge-intro { font-size: 1rem; color: var(--muted); line-height: 1.7; margin-bottom: 36px; }

.edge-points { display: flex; flex-direction: column; gap: 0; }
.edge-point {
  display: flex; gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.edge-point:last-child { border-bottom: none; }

.ep-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.ep-icon.green { background: var(--green-light); color: var(--green); }
.ep-icon.gold  { background: var(--gold-light);  color: #b45309; }

.ep-text h4 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.ep-text p  { font-size: 0.87rem; color: var(--muted); line-height: 1.6; margin-bottom: 0; }

@media(max-width:900px){
  .edge-container { grid-template-columns: 1fr; gap: 60px; }
  .edge-image-col { order: 2; }
  .edge-text-col  { order: 1; }
  .edge-img-badge { bottom: -16px; right: 16px; }
}

/* ============================================================
   TRUST SECTION
   ============================================================ */
.trust-section {
  padding: 40px 0;
  background: #fff;
  border-top: 2px solid #ddd;
}

.trust-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.trust-item {
  text-align: center;
}

.trust-img {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
}

.trust-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.trust-item:hover .trust-img img {
  transform: scale(1.05);
}

.trust-item h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.trust-item p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

@media(max-width: 1024px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media(max-width: 600px) {
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* ============================================================
   PROCESS SECTION V2
   ============================================================ */
.process-section {
  padding: 0;
  background: transparent;
  border: none;
}

.process-container-v2 {
  max-width: 100%;
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.process-title-v2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 30px;
}
.process-title-v2 span {
  display: block;
  color: var(--green);
}

.p-steps-v2 {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.p-step-v2 {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.p-step-num-v2 {
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.p-step-content-v2 h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 6px;
}

.p-step-content-v2 p {
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.5;
  margin: 0;
}

.p-img-wrap img {
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: block;
  height: auto;
  max-height: 450px;
  object-fit: cover;
}

@media(max-width: 900px) {
  .process-container-v2 {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .process-image-col {
    order: -1;
  }
}

@media(max-width: 480px) {
  .process-title-v2 {
    font-size: 1.8rem;
  }
}

/* ============================================================
   STATS CARDS SECTION
   ============================================================ */
.stats-cards-section {
  padding: 40px 0;
  background: #f0fdf4;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-cards-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-card {
  background: #fff;
  border-radius: 12px;
  padding: 15px 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(10, 22, 40, 0.05);
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  border: 1px solid var(--border);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(10, 22, 40, 0.1);
  border-color: var(--green);
}

.stat-card-icon {
  width: 32px;
  height: 32px;
  margin: 0 auto 10px;
  background: var(--green-light);
  border-radius: 8px;
  display: flex;
  align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--green);
  transition: background 0.3s;
}

.stat-card:hover .stat-card-icon {
  background: var(--green);
  color: #fff;
}

.stat-card-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--green);
  margin-bottom: 2px;
  line-height: 1;
  transition: color 0.3s;
}

.stat-card:hover .stat-card-value {
  color: var(--green-mid);
}

.stat-card-label {
  font-size: 0.72rem;
  color: var(--text);
  font-weight: 700;
  line-height: 1.3;
}

@media(max-width: 1024px) {
  .stats-cards-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media(max-width: 600px) {
  .stats-cards-section {
    padding: 30px 0;
    overflow: hidden;
  }

  .stats-cards-container {
    display: flex;
    grid-template-columns: none;
    gap: 15px;
    padding: 10px 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
  }

  .stats-cards-container::-webkit-scrollbar {
    display: none;
  }

  .stat-card {
    flex: 0 0 85%;
    min-width: 85%;
    scroll-snap-align: center;
    padding: 25px 20px;
  }

  .stat-card-icon {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }

  .stat-card-value {
    font-size: 2rem;
  }

  .stat-card-label {
    font-size: 0.85rem;
  }
}
/* ============================================================
   ABOUT SECTION
============================================================ */
.solutions-section {
  padding: 40px 0;
}

.sol-container {
  width: 100%;
}

.about-flex {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

/* LEFT SIDE */
.about-text-left {
  width: 100%;
}

.sol-label {
  display: inline-block;
  background: #f0fdf4;
  color: var(--green);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.sol-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.1;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 5px;
}

.sol-title em {
  color: var(--green);
  font-style: italic;
}

/* MISSION BOX */
.mission-box {
  background: #fff;
  border-left: 4px solid #16a34a;
  padding: 20px;
  border-radius: 14px;
  margin-bottom: 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

/* FEATURES */
.spec-grid {
  display: flex;
  gap: 18px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}

.spec-card {
  flex: 1;
  min-width: 220px;
  display: flex;
  align-items: center;
  gap: 15px;
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}

.spec-icon {
  width: 55px;
  height: 55px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
}

.green-icon {
  background: var(--green);
}

.gold-icon {
  background: #f59e0b;
}

.spec-card h5 {
  margin: 0;
  color: var(--navy);
  font-size: 1rem;
}

.spec-card p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* BUTTONS */
.about-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 40px;
  border: 2px solid var(--green);
  color: var(--green);
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-contact:hover {
  background: var(--green);
  color: #fff;
}

/* RIGHT IMAGE */
.about-image-right {
  position: relative;
}

.img-wrapper {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
}

.img-wrapper img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  border-radius: 28px;
}

.about-img-circle {
  position: absolute;
  width: 180px;
  height: 180px;
  background: rgba(16,185,129,0.15);
  border-radius: 50%;
  top: -50px;
  right: -50px;
}

.about-success-badge {
  z-index: 10;
  position: absolute;
  bottom: 25px;
  left: -20px;
  background: #fff;
  padding: 16px 18px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 992px) {
  .about-flex {
    flex-direction: column;
    gap: 30px;
  }

  .about-text-left, .about-image-right {
    width: 100% !important;
    min-width: 100% !important;
  }

  .img-wrapper img {
    height: auto;
    max-height: 350px;
  }
}

@media (max-width: 768px) {
  .solutions-section {
    padding: 20px 0;
  }

  .sol-title {
    font-size: 2.2rem;
  }

  .about-btns {
    flex-direction: column;
    align-items: flex-start;
  }

  .img-wrapper img {
    height: 340px;
  }
}

/* ============================================================
   REVIEWS SECTION
   ============================================================ */
.reviews-section {
  padding: 30px 0;
  background: #fff;
  border-top: 2px solid #eee;
}
.reviews-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card {
  padding: 25px 20px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  transition: all 0.3s ease;
  text-align: center;
}
.review-card:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.06); border-color: #16a34a; }

.rev-user { display: flex; flex-direction: column; align-items: center; gap: 10px; margin-bottom: 12px; }
.rev-photo { width: 55px; height: 55px; border-radius: 50%; object-fit: cover; background: #f1f5f9; border: 2px solid var(--green-light); }
.rev-meta { flex: none; text-align: center; }
.rev-author { font-size: 0.95rem; font-weight: 800; color: var(--navy); display: block; margin-bottom: 2px; }
.rev-stars { color: var(--gold); font-size: 0.75rem; display: flex; gap: 2px; justify-content: center; }

.review-card p { font-size: 0.88rem; color: #475569; font-style: italic; line-height: 1.6; margin: 0; }

@media(max-width: 900px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   INNOVATIVE SOLUTIONS SECTION
   ============================================================ */
.innovative-solutions {
  padding: 30px 0;
  background-color: #fcfdfc;
  text-align: center;
  border-top: 2px solid #eee;
}

.innovative-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.innovative-title {
  color: var(--navy);
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  margin-bottom: 30px;
}

.innovative-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.innovative-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.innovative-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  border-color: #16a34a;
}

.ic-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.ic-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ic-content {
  padding: 12px 10px;
  text-align: center;
}

.ic-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.ic-content p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 992px) {
  .innovative-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .innovative-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

/* Home Page Sidebar Layout overrides */
.page-body.home-page-body {
  width: 100%;
  max-width: 1350px;
  gap: 20px;
  padding-top: 15px;
}

@media(max-width: 992px) {
  .page-body.home-page-body {
    padding: 15px 10px;
  }
}

.content-col-home {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
  width: 100%;
}

.content-col-home section {
  margin-bottom: 30px !important;
  padding: 30px 25px !important;
  background: #fff !important;
  border: 1px solid var(--border) !important;
  border-radius: 20px !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03) !important;
}

/* Visibility Fix for Process Section in Home Column */
.content-col-home .process-section {
  background: transparent !important;
  border: none !important;
  padding: 20px 0 !important;
}
.content-col-home .process-container-v2 {
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 30px;
}
.content-col-home .process-title-v2 {
  font-size: 1.8rem;
  margin-bottom: 30px;
}
.content-col-home .p-steps-v2 {
  gap: 20px;
}
.content-col-home .p-step-content-v2 h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.content-col-home .p-step-content-v2 p {
  font-size: 0.8rem;
}
@media(max-width: 1024px) {
    .content-col-home .process-container-v2 {
        grid-template-columns: 1fr;
    }
}

/* Remove double padding from sections inside home column */
.content-col-home .innovative-solutions,
.content-col-home .edge-section,
.content-col-home .about-section,
.content-col-home .trust-section,
.content-col-home .reviews-section,
.content-col-home .solutions-section {
  padding-top: 0 !important;
  padding-bottom: 10px !important;
  border-top: none !important;
}

/* Specific tweaks for Edge Section in Home Column */
.content-col-home .edge-container {
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
}

@media(max-width: 992px) {
  .content-col-home .edge-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.content-col-home .edge-img-wrap img {
  aspect-ratio: 16/11; /* Making image wider/larger */
}
.content-col-home .edge-title {
  margin-bottom: 8px !important;
}
.content-col-home .edge-intro {
  margin-bottom: 25px !important;
  font-size: 0.95rem;
}
.content-col-home .edge-point {
  padding: 15px 0 !important;
}
.content-col-home .ep-text h4 {
  margin-bottom: 2px !important; /* Less space between heading and text */
}
.content-col-home .edge-img-badge {
  bottom: -10px; right: -10px; /* Adjusting badge position for smaller layout */
  padding: 12px 15px;
}
.content-col-home .badge-num { font-size: 1.6rem; }
.content-col-home .badge-txt { font-size: 0.65rem; }

/* Tighten headers */
.content-col-home .section-head,
.content-col-home .sol-header {
  margin-bottom: 35px !important;
}
.content-col-home .innovative-title,
.content-col-home .sol-title,
.content-col-home .edge-title,
.content-col-home .about-title {
  margin-bottom: 10px !important;
}

/* Trust Grid Fix for Home Column */
.content-col-home .trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media(max-width: 992px) {
  .content-col-home .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 480px) {
  .content-col-home .trust-grid {
    grid-template-columns: 1fr !important;
  }
}
.content-col-home .trust-item {
  background: #fff;
  padding: 10px;
}
.content-col-home .trust-img {
  margin-bottom: 12px;
}
.content-col-home .trust-item h3 {
  font-size: 0.95rem;
}
.content-col-home .trust-item p {
  font-size: 0.75rem;
}

/* ============================================================
   CTA BANNER SECTION
   ============================================================ */
.cta-banner-section {
  background: #060c14;
  padding: 20px 0;
  color: #fff;
}
.cta-banner-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.banner-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.banner-subtitle {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}
.cta-banner-form {
  display: flex;
  gap: 10px;
}
.cta-banner-form input {
  background: #111827;
  border: 1px solid #374151;
  padding: 10px 15px;
  color: #fff;
  border-radius: 4px;
  width: 250px;
}
.cta-banner-form button {
  background: #10b981;
  color: #fff;
  border: none;
  padding: 10px 25px;
  border-radius: 4px;
  font-weight: 700;
  cursor: pointer;
}

@media (max-width: 768px) {
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .cta-banner-form { flex-direction: column; width: 100%; }
  .cta-banner-form input { width: 100%; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #0a1628; /* Reverted to original dark navy color */
  padding: 60px 0 20px;
  color: #fff;
}
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; }

.footer-brand img { height: 50px; filter: brightness(0) invert(1); margin-bottom: 25px; }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 25px; }

.footer-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold); /* Switched to gold to match original theme */
  color: #000;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: 0.3s;
}
.footer-contact-btn:hover { background: var(--gold-bright); transform: translateY(-2px); }

.footer-col h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--gold); /* Reverted accent to gold */
}

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 15px; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a i { font-size: 0.7rem; color: var(--gold); opacity: 0.7; }
.footer-links a:hover { color: #fff; transform: translateX(5px); }

.f-contact { display: flex; flex-direction: column; gap: 20px; }
.f-contact-item { display: flex; align-items: flex-start; gap: 15px; }
.f-contact-item .icon-circle {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.f-contact-info a, .f-contact-info span { display: block; font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.5; }

.f-socials { display: flex; gap: 12px; margin-top: 25px; }
.f-social {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.05);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: 0.3s;
  font-size: 0.9rem;
}
.f-social:hover { background: var(--gold); color: #000; transform: translateY(-3px); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05); padding: 25px 0 0; margin-top: 50px;
  text-align: center; font-size: 0.85rem; color: rgba(255,255,255,0.4);
}
.footer-bottom strong { color: var(--gold); }

@media (max-width: 992px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer { text-align: left; }
    .f-socials { justify-content: flex-start; }
    .f-contact-item { justify-content: flex-start; }
}

/* ============================================================
   MODAL POPUP (MATCHED TO IMAGE)
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  padding: 20px;
}
.modal-overlay.show { display: flex; animation: modalFadeIn 0.3s ease; }

@keyframes modalFadeIn { from { opacity: 0; } to { opacity: 1; } }

.modal-container {
  background: #fff;
  width: 100%;
  max-width: 350px; /* Reduced from 380px */
  border-radius: 16px;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  animation: modalSlideUp 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  overflow: visible;
}

@keyframes modalSlideUp {
  from { opacity: 0; transform: translateY(40px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-header {
  background: #43a047;
  background: linear-gradient(135deg, #43a047, #2e7d32);
  padding: 15px 20px;
  color: #fff;
  border-radius: 16px 16px 0 0;
  position: relative;
}

.modal-icon-top {
  position: absolute;
  top: 15px;
  left: 20px;
  background: rgba(0,0,0,0.2);
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.modal-header h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 50px;
  height: 50px;
  background: #fff;
  color: #000;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  z-index: 10;
  transition: transform 0.2s;
}
.modal-close:hover { transform: scale(1.1) rotate(90deg); }

.modal-body { padding: 15px 20px; } /* Reduced padding */

.modal-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px; /* Reduced gap */
  margin-bottom: 10px;
}

.modal-form-group { margin-bottom: 12px; display: flex; flex-direction: column; gap: 4px; }
.modal-form-group.full-width { grid-column: span 2; }

.modal-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem; /* Smaller label */
  font-weight: 700;
  color: #1a4d2e;
}

.modal-input {
  width: 100%;
  padding: 10px 12px; /* Smaller input padding */
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.85rem; /* Smaller font */
  background: #fff;
  transition: all 0.3s;
  color: #333;
}
.modal-input:focus {
  outline: none;
  border-color: #16a34a;
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.1);
}

.modal-btn {
  width: 100%;
  padding: 15px;
  border-radius: 15px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: 0.3s;
  border: none;
}

.modal-btn-submit {
  background: #10b981;
  color: #fff;
  margin-bottom: 12px;
}
.modal-btn-submit:hover {
  background: #166534;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.modal-btn-cancel {
  background: #fff;
  color: #000;
  border: 1px solid #e2e8f0;
}
.modal-btn-cancel:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
}

@media (max-width: 600px) {
  .modal-overlay { padding: 20px; align-items: center; } /* Centers the modal instead of full screen bottom */
  .modal-container {
    max-width: 320px; /* Even smaller for mobile */
    border-radius: 20px;
    margin-bottom: 0;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideUp 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  }
  .modal-header { padding: 15px 20px; }
  .modal-header h2 { font-size: 1.1rem; }
  .modal-body { padding: 15px; }
  .modal-form-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .modal-input { padding: 10px; font-size: 14px; }
  .modal-btn { padding: 12px; font-size: 0.9rem; }
}


/* ============================================================
   FLOATING ACTIONS
   ============================================================ */
.floating-actions {
  position: fixed;
  bottom: max(25px, env(safe-area-inset-bottom));
  right: max(25px, env(safe-area-inset-right));
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 2000;
}

.float-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
  border: none;
}

.float-btn:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.float-btn.back-top {
  background: #0a1628; /* Dark navy as per image */
  opacity: 0;
  pointer-events: none;
  position: static; /* Reset from previous absolute/fixed positioning */
}

.float-btn.back-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.float-btn.call-float {
  background: #f5a623; /* Orange as per image */
}

.float-btn.wa-float {
  background: #25d366; /* WhatsApp Green */
  position: static; /* Reset */
}

@media(max-width: 600px) {
  .floating-actions {
    bottom: max(20px, env(safe-area-inset-bottom));
    right: max(15px, env(safe-area-inset-right));
    gap: 10px;
  }
  .float-btn {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }
  .float-btn.call-float, .float-btn.wa-float {
    display: none; /* Mobile par Call aur WhatsApp button hide kar diye */
  }
}

/* ============================================================
   PROFESSIONAL FORM STYLING
   ============================================================ */
.partnership-form-section {
    background: #fff;
    padding: 20px 0;
}

.professional-form {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
}

.form-section-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 25px 0 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--green-light);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.form-group.icon-input {
    position: relative;
}

.form-group.icon-input i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
    font-size: 0.9rem;
}

.form-group.icon-input input {
    padding-left: 45px;
}

.professional-form input,
.professional-form select,
.professional-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text);
    background: #fcfdfe;
    transition: all 0.3s ease;
}

.professional-form input:focus,
.professional-form select:focus,
.professional-form textarea:focus {
    outline: none;
    border-color: var(--green);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.1);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 20px 0;
}

.form-checkbox input {
    width: auto !important;
    margin-top: 4px;
}

.form-checkbox label {
    font-size: 0.85rem;
    color: var(--muted);
}

.form-checkbox a {
    color: var(--green);
    font-weight: 600;
}

.submit-btn-modern {
    background: var(--green);
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.submit-btn-modern:hover {
    background: var(--green-mid);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(22, 163, 74, 0.2);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

.map-container {
    position: relative;
    max-width: 100%;
    margin: 20px auto;
    border-radius: 16px;
    overflow: hidden;
    background: #f8fafc;
    border: 1px solid var(--border);
}

.map-hotspots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.map-point {
    display: block;
    position: absolute;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* The red dot that appears only on hover */
.map-point::after {
    content: '';
    width: 0;
    height: 0;
    background: #ff0000;
    border-radius: 50%;
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.8);
}

.map-point:hover::after {
    width: 14px;
    height: 14px;
    opacity: 1;
}
.contact-container-main {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    margin-top: 30px;
}

.contact-info-side {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-group-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-group-title i {
    color: var(--green);
}

.contact-method-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 15px 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.contact-method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(22, 163, 74, 0.08);
    border-color: var(--green);
}

.cm-head {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.cm-icon {
    width: 40px;
    height: 40px;
    background: var(--green-light);
    color: var(--green);
    border-radius: 10px;
    display: flex;
    align-items: center; justify-content: center;
    font-size: 1.1rem;
}

.cm-head h3 {
    margin: 0;
    font-size: 1rem;
}

.cm-body p {
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 15px;
}

.cm-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cm-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy);
}

.cm-link i {
    color: var(--green);
    width: 20px;
}

.cm-link:hover {
    color: var(--green);
}

.office-address-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 15px 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}

.office-address-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    border-color: var(--green);
}

.office-badge {
    display: inline-block;
    background: var(--green);
    color: #fff;
    padding: 5px 18px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.office-address-card h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.1rem;
    color: var(--green-mid);
    margin: 0 0 12px;
    font-weight: 700;
}

.office-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.office-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    border-bottom: 1px solid #f1f5f9;
}

.office-info-item:last-child {
    border-bottom: none;
}

.office-info-item i {
    width: 20px;
    color: #1e293b;
    font-size: 1rem;
    text-align: center;
}

.office-info-item span {
    font-size: 0.95rem;
    color: #475569;
    font-weight: 500;
}

.office-info-item .office-pin {
    color: var(--green);
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.office-grid-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 768px) {
    .office-grid-row {
        grid-template-columns: 1fr;
    }
}

/* BRANCH LOCATOR GRID (Matched to Image) */
.regional-presence-box {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.branch-locator-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    margin-top: 30px;
    background: #f8fafc;
    padding: 15px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
}

.branch-card {
    background: #fff;
    border: 1px solid #edf2f7;
    border-radius: 8px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.branch-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border-color: var(--green);
}

.bc-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1rem;
}

.bc-info h4 {
    margin: 0 0 1px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #1e293b;
    font-family: 'DM Sans', sans-serif;
}

.bc-info .bc-phone {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--green);
    text-decoration: none;
    display: block;
}

@media (max-width: 992px) {
    .branch-locator-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .branch-locator-grid {
        grid-template-columns: 1fr;
        padding: 15px;
    }
}

.regional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 35px;
}

.regional-card {
    background: #fff;
    border: 1px solid var(--border);
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.regional-card:hover, .regional-card.highlight {
    border-color: var(--green);
    box-shadow: 0 10px 30px rgba(22, 163, 74, 0.08);
}

.regional-card.highlight {
    background: #fff;
}

.rc-icon {
    width: 60px;
    height: 60px;
    background: var(--green-light);
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.regional-card.highlight .rc-icon {
    background: var(--green);
    color: #fff;
}

.regional-card h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.3rem;
    color: var(--green-mid);
    margin: 0 0 10px;
    font-weight: 700;
}

.regional-card p {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.5;
    margin-bottom: 15px;
    max-width: 200px;
}

.pin-badge {
    background: var(--green-mid);
    color: #fff;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-block;
}

@media (max-width: 600px) {
    .regional-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .contact-container-main {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   RESPONSIVE OVERRIDES FOR HOME PAGE
   ============================================================ */
@media (max-width: 768px) {
    .content-col-home section {
        padding: 30px 20px !important;
        margin-bottom: 30px !important;
        border-radius: 15px !important;
    }

    .sol-title, .innovative-title, .edge-title, .about-title, .process-title {
        font-size: 1.8rem !important;
    }

.about-flex {
  display: flex;
  gap: 50px;
  align-items: center;
  margin-top: 40px;
  flex-wrap: wrap;
  width: 100%;
}
.about-text-left { flex: 1.2; min-width: 320px; }
.about-image-right { flex: 1; min-width: 320px; }
.mission-box {
  background: var(--green-light);
  padding: 30px;
  border-left: 5px solid var(--green);
  border-radius: 14px;
  margin-bottom: 35px;
  box-shadow: 0 2px 10px rgba(22, 163, 74, 0.08);
}
.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.spec-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}
.spec-card:hover {
  box-shadow: 0 4px 16px rgba(10, 22, 40, 0.1);
  transform: translateY(-2px);
}
.spec-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.spec-icon.green-icon {
  background: var(--green-light);
  color: var(--green);
}
.spec-icon.gold-icon {
  background: rgba(245, 166, 35, 0.15);
  color: var(--gold);
}
.spec-card h5 {
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 4px 0;
}
.spec-card p {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0;
  font-weight: 500;
}
.about-btns { 
  display: flex; 
  gap: 16px;
  flex-wrap: wrap;
}
.btn-contact {
  padding: 13px 35px;
  border-radius: 10px;
  border: 2px solid var(--border);
  font-weight: 600;
  color: var(--navy);
  background: #fff;
  transition: all 0.3s ease;
  display: inline-block;
}
.btn-contact:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
}
.img-wrapper { 
  position: relative; 
  padding: 30px;
}
.img-wrapper img {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 12px 40px rgba(10, 22, 40, 0.15);
  z-index: 2;
  position: relative;
  display: block;
}
.about-img-circle {
  position: absolute;
  top: -20px; 
  right: -20px;
  width: 140px; 
  height: 140px;
  background: var(--green);
  opacity: 0.08;
  border-radius: 50%;
  z-index: 1;
}
.about-success-badge {
  position: absolute;
  bottom: 50px; 
  left: 30px;
  background: #fff;
  padding: 20px 24px;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(10, 22, 40, 0.12);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 16px;
}

@media(max-width: 480px) {
  .about-flex {
    gap: 25px !important;
    margin-top: 20px !important;
  }
  .about-text-left, .about-image-right {
    min-width: 100% !important;
    width: 100% !important;
    flex: none !important;
  }
  .spec-grid {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
    margin-bottom: 30px !important;
  }
  .mission-box { 
    padding: 20px; 
    margin-bottom: 25px;
  }
  .about-btns { 
    flex-direction: column; 
    gap: 12px;
  }
  .about-btns a { 
    width: 100%; 
    text-align: center;
    padding: 14px 20px !important;
  }
  .img-wrapper { 
    padding: 15px 0; 
  }
  .img-wrapper img { 
    border-radius: 20px; 
  }
  .about-success-badge {
    position: static;
    margin-top: 20px;
    width: 100%;
    justify-content: center;
  }
  .about-img-circle { 
    display: none; 
  }
}

    .content-col-home .trust-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
}

@media (max-width: 480px) {
    .content-col-home section {
        padding: 20px 15px !important;
        margin-bottom: 20px !important;
        width: 100%;
        overflow: hidden;
    }

    .sol-title, .innovative-title, .edge-title, .about-title, .process-title-v2, .gs-title, .faq-title, .recommend-title {
        font-size: 1.6rem !important;
        text-align: center; /* Centered all titles for mobile */
    }

    .innovative-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .content-col-home .edge-container {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }

    .about-btns {
        flex-direction: column;
        width: 100%;
    }

    .about-btns .btn-primary, .about-btns .btn-ghost {
        text-align: center;
        width: 100%;
    }

    .stat-card-value {
        font-size: 1.6rem !important;
    }

    .hero-title {
        font-size: 1.8rem !important;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn-primary, .hero-actions .btn-ghost {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================================
   COMBINED REVIEWS SECTION
   ============================================================ */
.recommend-section {
  padding: 0;
  background-color: transparent;
  border-top: none;
}
.recommend-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.recommend-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 35px;
  text-align: left;
}
.recommend-top-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}
.featured-img-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/8.5;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.featured-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fi-overlay {
  position: absolute;
  inset: 0;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
  color: #fff;
}
.fi-quote-box i { font-size: 2rem; opacity: 0.3; margin-bottom: 10px; display: block; }
.fi-quote { font-size: 1.4rem; font-weight: 700; margin-bottom: 8px; line-height: 1.2; color: #ffffff; }
.fi-author { font-size: 1rem; opacity: 0.9; font-weight: 500; }

.google-rating-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
  border: 1px solid #f1f5f9;
  overflow: hidden;
}
.google-rating-card .rating-val { font-size: 4.5rem; font-weight: 900; color: #1a1a1a; margin-bottom: 0; line-height: 1; }
.google-rating-card .stars { color: var(--gold); font-size: 1.4rem; margin: 15px 0; display: flex; gap: 5px; }
.google-rating-card .rating-desc { font-size: 1rem; color: #475569; font-weight: 600; }
.google-logo-abs { position: absolute; top: 35px; right: 35px; width: 60px; height: auto; }

.reviews-carousel-wrapper {
  position: relative;
  margin-bottom: 40px;
  overflow: hidden;
}

.google-reviews-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden !important;
  scroll-snap-type: x mandatory; /* Keep cards centered */
  padding: 20px 0;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.google-reviews-carousel::-webkit-scrollbar {
  display: none !important;
  height: 0 !important;
}

.google-reviews-carousel::-webkit-scrollbar-track {
  display: none !important;
}

.google-reviews-carousel::-webkit-scrollbar-thumb {
  display: none !important;
}

.google-reviews-carousel::-webkit-scrollbar-thumb:hover {
  display: none !important;
}

.google-reviews-carousel .gr-card {
  flex: 0 0 calc(33.333% - 14px);
  min-width: calc(33.333% - 14px);
  scroll-snap-align: center; /* Ensures card centers in viewport */
  text-align: center;
  padding: 35px 25px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center; /* Center flex children */
}

.gr-card:hover {
  transform: translateY(-5px);
  border-color: #16a34a;
  box-shadow: 0 10px 25px rgba(22, 163, 74, 0.1);
}

.carousel-nav {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}

.carousel-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid #16a34a;
  background: #fff;
  color: #16a34a;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.carousel-btn:hover {
  background: #16a34a;
  color: #fff;
  transform: scale(1.1);
}

.carousel-btn:active {
  transform: scale(0.95);
}
.gr-avatar {
  width: 60px;
  height: 60px;
  background: #f0fdf4;
  color: #16a34a;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 auto 15px;
  overflow: hidden;
  border: 2px solid #16a34a;
  box-shadow: 0 4px 10px rgba(22, 163, 74, 0.2);
}
.gr-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gr-name { font-size: 1.1rem; font-weight: 800; color: #1e293b; margin-bottom: 8px; }
.gr-stars { color: #f5a623; font-size: 0.9rem; margin-bottom: 20px; display: flex; gap: 4px; justify-content: center; }
.gr-text {
  font-size: 0.92rem;
  line-height: 1.6;
  color: #475569;
  font-style: italic;
  margin: 0;
  text-align: center; /* Force center alignment */
}

.gr-actions { display: flex; gap: 15px; justify-content: center; margin-top: 10px; }
.gr-actions .btn-google {
  background: #0f172a;
  color: #fff;
  border-radius: 10px;
  padding: 14px 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
}
.gr-actions .btn-view-all {
  background: #fff;
  border: 2px solid #0f172a;
  color: #0f172a;
  border-radius: 10px;
  padding: 14px 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .google-reviews-carousel .gr-card {
    flex: 0 0 calc(50% - 10px);
    min-width: calc(50% - 10px);
  }
}
@media (max-width: 768px) {
  .google-reviews-carousel .gr-card {
    flex: 0 0 100%;
    min-width: 100%;
  }
  .recommend-title { font-size: 1.8rem; }
  .gr-actions { flex-direction: column; align-items: stretch; }
  .gr-actions button, .gr-actions a { width: 100%; justify-content: center; }
}

@media (max-width: 992px) {
  .recommend-top-grid { grid-template-columns: 1fr; }
  .google-rating-card { padding: 25px; }
  .recommend-title { font-size: 1.8rem; }
}
@media (max-width: 600px) {
  .recommend-title { font-size: 1.6rem; }
  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 0.8rem;
  }
}

/* ============================================================
   GET SOLAR FOR SECTION
   ============================================================ */
.get-solar-for {
  padding: 0;
  background: transparent;
  margin-top: 20px;
}
.gs-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 50px;
}
.gs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.gs-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}
.gs-item:hover {
  transform: translateY(-5px);
  border-color: #16a34a;
  box-shadow: 0 10px 25px rgba(22, 163, 74, 0.15);
}
.gs-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0fdf4;
  border-radius: 12px;
  color: var(--green);
  font-size: 1.8rem;
}
.gs-content h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.gs-content p {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 992px) {
  .gs-grid { grid-template-columns: 1fr; gap: 20px; }
  .gs-item { max-width: 500px; margin: 0 auto; width: 100%; }
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
  padding: 0;
  background-color: transparent;
}
.faq-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.faq-header {
  margin-bottom: 40px;
}
.faq-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 15px;
}
.faq-badge {
  display: inline-block;
  background: #0a1628;
  color: #fff;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 25px;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
}
.faq-item {
  border-bottom: 1px solid #f1f5f9;
}
.faq-question {
  width: 100%;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
  cursor: pointer;
  transition: color 0.3s;
}
.faq-question:hover {
  color: #16a34a;
}
.faq-icon {
  width: 24px;
  height: 24px;
  background: #f8fafc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  font-size: 0.8rem;
  transition: all 0.3s;
}
.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: #16a34a;
  color: #fff;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
  padding: 0;
}
.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 20px;
}
.faq-answer p {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 900px) {
  .faq-grid { grid-template-columns: 1fr; }
}

#header-placeholder { display: block; }
#footer-placeholder { min-height: 200px; display: block; }

/* ============================================================
   ADVANTAGE COMPARISON SECTION (MATCHED TO IMAGE)
   ============================================================ */
section.advantage-section {
  background: #0a1628 !important; /* Exactly matches footer navy */
  padding: 25px 20px !important; /* Even smaller vertical padding */
  color: #fff !important;
  border-radius: 15px !important;
  margin: 20px 0 !important;
  border: none !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
}

.advantage-container {
  max-width: 1000px; /* Narrowed container */
  margin: 0 auto;
  padding: 0 10px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 30px; /* Even smaller gap */
  align-items: center;
}

.adv-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.8rem; /* Further reduced title size */
  font-weight: 800;
  color: #fff !important;
  margin-bottom: 6px;
  line-height: 1.1;
}

.adv-subtitle {
  font-size: 0.9rem; /* Smaller subtitle */
  color: rgba(255,255,255,0.7) !important;
  margin-bottom: 20px;
}

.expert-card {
  background: #cbdcf7;
  border-radius: 12px;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  max-width: 100%;
}
@media (max-width: 480px) {
  .expert-card {
    flex-direction: column;
    text-align: center;
    padding: 20px 15px;
  }
  .expert-avatar {
    margin: 0 auto;
  }
}

.expert-avatar {
  width: 60px; /* Smaller avatar */
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid #fff;
}

.expert-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.expert-content h4 {
  color: #0f172a !important;
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 0 4px !important;
}

.expert-content p {
  color: #475569 !important;
  font-size: 0.95rem;
  margin: 0 0 12px !important;
  font-weight: 500;
}

.expert-link {
  color: #2563eb !important;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.adv-comparison {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.adv-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.adv-col-header {
  text-align: center;
  margin-bottom: 30px;
}

.col-icon {
  width: 100px;
  height: 50px; /* Shorter icon box */
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem; /* Smaller icon */
  color: #3b82f6;
}

.col-icon i {
  filter: drop-shadow(0 10px 15px rgba(0,0,0,0.3));
}

.brand-col .col-icon {
  color: #60a5fa;
}

.col-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  text-transform: capitalize;
}

/* BRAND COLUMN HIGHLIGHT */
.brand-col {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 20px 15px; /* Tight padding */
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  position: relative;
  backdrop-filter: blur(10px);
}

.brand-col .col-name {
  color: #fff;
}

.adv-features-list {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.adv-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0; /* Reduced spacing */
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.85rem; /* Smaller text */
  line-height: 1.3;
}

.adv-feature-item:first-child {
  border-top: none;
}

.check-icon {
  color: #10b981;
  font-size: 1.1rem;
}

.cross-icon {
  color: rgba(255,255,255,0.2);
  font-size: 1.1rem;
}

.other-col {
  padding: 40px 0;
}

.other-col .adv-feature-item {
  color: rgba(255,255,255,0.6);
}

@media (max-width: 1024px) {
  .advantage-container {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: left;
  }
  .adv-title { font-size: 2.5rem; }
  .expert-card { margin: 0; }
}

@media (max-width: 768px) {
  .adv-comparison {
    flex-direction: column;
    gap: 40px;
  }
  .brand-col {
    width: 100%;
    padding: 30px 20px;
  }
  .other-col {
    width: 100%;
    padding: 0 20px;
    align-items: flex-start;
  }
  .other-col .adv-col-header {
    text-align: left;
    margin-bottom: 20px;
  }
  .other-col .col-icon {
    justify-content: flex-start;
  }
}


