/* ================================================================
   GLOBAL VISION SOLAR — Brand Design System
   Color scheme matches the approved maintenance page exactly.
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* ======================== CSS VARIABLES ======================== */
:root {
  --accent:              #3ecf9c;
  --accent-dark:         #2ab580;
  --accent-blue:         #1a8ccc;
  --accent-glow:         #7ee8c8;
  --wa-green:            #25d366;
  --wa-dark:             #128c7e;

  --text-primary:        #ffffff;
  --text-muted:          #b2e4d0;
  --text-soft:           #d6f5ec;
  --text-ghost:          rgba(255,255,255,0.35);

  --glass-bg:            rgba(255,255,255,0.07);
  --glass-bg-hover:      rgba(255,255,255,0.12);
  --glass-border:        rgba(255,255,255,0.15);
  --glass-border-accent: rgba(62,207,156,0.35);
  --glass-blur:          blur(12px);

  --radius-card:         16px;
  --radius-pill:         50px;
  --transition:          0.3s ease;

  --shadow-card:         0 8px 32px rgba(0,0,0,0.25);
  --shadow-btn:          0 8px 30px rgba(62,207,156,0.35);
  --shadow-btn-wa:       0 8px 30px rgba(37,211,102,0.35);
}

/* ======================== RESET ======================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #0a3d2e 0%, #0d5c40 40%, #1a7a5a 70%, #0e4a72 100%);
  background-attachment: fixed;
  color: var(--text-primary);
  overflow-x: hidden;
  min-height: 100vh;
  line-height: 1.6;
}

/* Animated ambient background overlay — exactly from maintenance page */
body::before {
  content: '';
  position: fixed;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background:
    radial-gradient(ellipse at 60% 30%, rgba(255,200,50,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(0,120,200,0.10) 0%, transparent 50%);
  animation: bgPulse 8s ease-in-out infinite alternate;
  z-index: 0;
  pointer-events: none;
}

nav, main, footer, .page-hero, .whatsapp-float { position: relative; z-index: 1; }
img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* ======================== ANIMATIONS ======================== */
@keyframes bgPulse {
  0%   { transform: scale(1)    rotate(0deg); }
  100% { transform: scale(1.05) rotate(3deg); }
}
@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes pulse {
  0%   { opacity: 1; transform: scale(1);    }
  100% { opacity: 0; transform: scale(1.18); }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0);     }
}
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position:  200% 0; }
}

/* ======================== NAVBAR ======================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,61,46,0.80);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(62,207,156,0.15);
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(7,40,27,0.96);
  box-shadow: 0 4px 30px rgba(0,0,0,0.35);
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo-icon {
  width: 42px; height: 42px;
  animation: spinSlow 20s linear infinite;
  flex-shrink: 0;
}
.brand-text .brand-name {
  font-size: 13px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--accent-glow); line-height: 1.1;
}
.brand-text .brand-tagline {
  font-size: 9px; font-weight: 400;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(178,228,208,0.65); line-height: 1;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 0.875rem; font-weight: 500;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
  background: rgba(62,207,156,0.12);
}
.nav-links a.active { color: var(--accent); }
.btn-nav-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-blue)) !important;
  color: #fff !important;
  font-weight: 700 !important;
  padding: 10px 22px !important;
  border-radius: var(--radius-pill) !important;
  box-shadow: 0 4px 18px rgba(62,207,156,0.35);
  flex-shrink: 0;
  transition: transform var(--transition), box-shadow var(--transition) !important;
}
.btn-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(62,207,156,0.52) !important;
  background: linear-gradient(135deg, var(--accent), var(--accent-blue)) !important;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none;
  cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 25px; height: 2px;
  background: var(--accent-glow); border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(7,40,27,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(62,207,156,0.2);
  z-index: 999;
  padding: 8px 24px 24px;
  transform: translateY(-110%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav a {
  display: block;
  font-size: 1rem; font-weight: 500;
  color: var(--text-muted);
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--accent); }
.mobile-nav .btn-mob-wa {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-top: 18px;
  background: linear-gradient(135deg, var(--wa-green), var(--wa-dark));
  color: #fff; font-weight: 700; font-size: 0.95rem;
  padding: 14px; border-radius: var(--radius-pill);
  box-shadow: var(--shadow-btn-wa);
}

/* ======================== LAYOUT ======================== */
.container    { max-width: 1280px; margin: 0 auto; }
.container-sm { max-width:  920px; margin: 0 auto; }
.section      { padding: 90px 28px; position: relative; z-index: 1; }
.section-sm   { padding: 60px 28px; position: relative; z-index: 1; }

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.eyebrow {
  font-size: 11px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800; line-height: 1.2;
  color: #fff; margin-bottom: 14px;
}
.section-title span { color: var(--accent); }
.section-sub {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  font-weight: 300; color: var(--text-muted);
  max-width: 580px; margin: 0 auto; line-height: 1.7;
}
.divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-blue));
  border-radius: 3px; margin: 16px auto 0;
}

/* ======================== PAGE HERO (inner pages) ======================== */
.page-hero {
  padding: 150px 28px 80px;
  text-align: center;
  position: relative; z-index: 1;
}
.page-hero .eyebrow { margin-bottom: 14px; }
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800; line-height: 1.12;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0,0,0,0.3);
  margin-bottom: 18px;
}
.page-hero h1 span { color: var(--accent); }
.page-hero p {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: 300; color: var(--text-muted);
  max-width: 580px; margin: 0 auto; line-height: 1.7;
}

/* ======================== GRIDS ======================== */
.grid-2    { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.grid-3    { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4    { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill,minmax(280px,1fr)); gap: 24px; }

/* ======================== GLASS CARD ======================== */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-card);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}
.glass-card:hover {
  background: var(--glass-bg-hover);
  transform: translateY(-5px);
  box-shadow: 0 24px 56px rgba(0,0,0,0.3);
}
.glass-card-accent {
  background: rgba(62,207,156,0.07);
  border: 1px solid rgba(62,207,156,0.25);
  border-radius: var(--radius-card);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}

/* ======================== BUTTONS ======================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700; font-size: 1rem;
  text-decoration: none; border: none; cursor: pointer;
  padding: 15px 34px; border-radius: var(--radius-pill);
  transition: all var(--transition); letter-spacing: 0.3px;
  line-height: 1;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-blue));
  color: #fff; box-shadow: var(--shadow-btn);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 44px rgba(62,207,156,0.52);
}
.btn-outline {
  background: transparent;
  color: var(--accent-glow);
  border: 2px solid rgba(62,207,156,0.5);
}
.btn-outline:hover {
  background: rgba(62,207,156,0.1);
  border-color: var(--accent);
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: linear-gradient(135deg, var(--wa-green), var(--wa-dark));
  color: #fff; box-shadow: var(--shadow-btn-wa);
}
.btn-whatsapp:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 44px rgba(37,211,102,0.52);
}
.btn-sm { font-size: 0.875rem; padding: 10px 22px; }

/* Pulse ring wrapper (used on WhatsApp CTA) */
.pulse-wrap { position: relative; display: inline-block; }
.pulse-wrap::after {
  content: '';
  position: absolute; inset: -6px;
  border-radius: var(--radius-pill);
  border: 2px solid rgba(37,211,102,0.45);
  animation: pulse 2s ease-out infinite;
  pointer-events: none;
}

/* ======================== BADGES & CHIPS ======================== */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--glass-border-accent);
  border-radius: var(--radius-pill);
  padding: 6px 16px;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--accent-glow); backdrop-filter: blur(4px);
}
.badge-subsidy {
  background: rgba(62,207,156,0.15);
  border-color: rgba(62,207,156,0.55); color: var(--accent);
}
.badge-popular {
  background: rgba(255,193,7,0.15);
  border-color: rgba(255,193,7,0.55); color: #ffd60a;
}
.chip {
  display: inline-block;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 30px; padding: 7px 18px;
  font-size: 0.82rem; color: var(--text-soft);
  backdrop-filter: blur(4px);
}

/* ======================== HERO SECTION ======================== */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 120px 28px 80px;
  position: relative; z-index: 1;
}
.hero-solar-icon {
  width: 100px; height: 100px;
  margin: 0 auto 22px;
  animation: spinSlow 20s linear infinite;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--glass-border-accent);
  border-radius: var(--radius-pill);
  padding: 8px 22px;
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent-glow); backdrop-filter: blur(4px);
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  font-weight: 800; line-height: 1.1;
  color: #fff;
  text-shadow: 0 2px 30px rgba(0,0,0,0.3);
  margin-bottom: 20px; max-width: 900px;
}
.hero h1 span { color: var(--accent); }
.hero h1 .gold { color: #FFD700; }
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 300; color: var(--text-muted);
  max-width: 650px; margin: 0 auto 38px; line-height: 1.7;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-bottom: 44px; }
.hero-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.3); font-size: 0.7rem;
  letter-spacing: 2px; text-transform: uppercase;
  animation: float 2.5s ease-in-out infinite;
}
.scroll-hint svg { opacity: 0.4; }

/* ======================== PAIN POINTS BAR ======================== */
.pain-bar {
  background: rgba(0,0,0,0.22);
  border-top: 1px solid rgba(62,207,156,0.1);
  border-bottom: 1px solid rgba(62,207,156,0.1);
  padding: 28px 28px;
  position: relative; z-index: 1;
}
.pain-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 16px;
}
.pain-item {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}
.pain-icon { font-size: 1.8rem; flex-shrink: 0; }
.pain-title { font-size: 0.88rem; font-weight: 600; color: #fff; margin-bottom: 2px; }
.pain-desc  { font-size: 0.75rem; color: var(--text-muted); line-height: 1.4; }

/* ======================== SUBSIDY BANNER ======================== */
.subsidy-banner {
  background: linear-gradient(135deg, rgba(255,165,0,0.10), rgba(255,215,0,0.06), rgba(62,207,156,0.06));
  border: 1px solid rgba(255,165,0,0.3);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  position: relative; overflow: hidden;
  padding: 40px 40px;
}
.subsidy-banner::before {
  content: '₹';
  position: absolute; right: -10px; top: 50%;
  transform: translateY(-50%);
  font-size: 200px; font-weight: 900;
  color: rgba(255,215,0,0.04); line-height: 1;
  pointer-events: none;
}
.subsidy-flag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,165,0,0.15);
  border: 1px solid rgba(255,165,0,0.4);
  border-radius: var(--radius-pill);
  padding: 6px 18px;
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: #FFD700; margin-bottom: 16px;
}
.subsidy-title {
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 800; color: #fff; margin-bottom: 10px; line-height: 1.2;
}
.subsidy-title span { color: #FFD700; }
.subsidy-desc {
  font-size: 0.95rem; color: var(--text-muted);
  line-height: 1.7; margin-bottom: 24px;
}
.subsidy-table {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 12px; margin-bottom: 24px;
}
.subsidy-row {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,165,0,0.2);
  border-radius: 12px; padding: 16px;
  text-align: center;
}
.subsidy-kw   { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 4px; }
.subsidy-amt  { font-size: 1.4rem; font-weight: 800; color: #FFD700; }
.subsidy-note { font-size: 0.72rem; color: rgba(255,255,255,0.5); }

/* ======================== STATS ======================== */
.stat-card {
  text-align: center; padding: 32px 20px;
}
.stat-num {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800; color: var(--accent);
  line-height: 1; margin-bottom: 6px;
}
.stat-label {
  font-size: 0.875rem; color: var(--text-muted);
  font-weight: 400; line-height: 1.4;
}

/* ======================== PRODUCT CARDS ======================== */
.product-card {
  display: flex; flex-direction: column;
  overflow: hidden;
}
.product-img {
  width: 100%; aspect-ratio: 4/3;
  background: linear-gradient(135deg, rgba(62,207,156,0.12), rgba(26,140,204,0.12));
  display: flex; align-items: center; justify-content: center;
  font-size: 4.5rem; position: relative; overflow: hidden;
}
.product-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.4s ease;
}
.product-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.35) 100%);
  z-index: 1;
}
.glass-card:hover .product-img img { transform: scale(1.05); }
.product-body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.product-name { font-size: 1.05rem; font-weight: 700; color: #fff; }
.product-spec { font-size: 0.8rem; color: var(--text-muted); line-height: 1.55; }
.product-badges { display: flex; flex-wrap: wrap; gap: 6px; }
.product-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto; padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.product-price { font-size: 1.1rem; font-weight: 800; color: var(--accent); }
.product-price small { font-size: 0.75rem; font-weight: 400; color: var(--text-muted); }

/* ======================== SERVICE CARDS ======================== */
.service-card { padding: 32px; }
.service-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, rgba(62,207,156,0.18), rgba(26,140,204,0.18));
  border: 1px solid rgba(62,207,156,0.3);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem; margin-bottom: 18px;
}
.service-title { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.service-desc  { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }

/* ======================== PROCESS STEPS ======================== */
.steps-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 24px; position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 34px; left: calc(12.5% + 20px); right: calc(12.5% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-blue));
  z-index: 0;
}
.step { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 68px; height: 68px;
  background: linear-gradient(135deg, var(--accent), var(--accent-blue));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 800; margin: 0 auto 18px;
  box-shadow: 0 8px 24px rgba(62,207,156,0.4);
}
.step-title { font-size: 0.95rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.step-desc  { font-size: 0.82rem; color: var(--text-muted); line-height: 1.55; }

/* ======================== FRANCHISE SECTION ======================== */
.franchise-section {
  background: linear-gradient(135deg, rgba(62,207,156,0.06), rgba(26,140,204,0.06));
  border: 1px solid rgba(62,207,156,0.2);
  border-radius: 24px; overflow: hidden; position: relative;
  padding: 56px 48px;
}
.franchise-section::before {
  content: '₹';
  position: absolute; right: 40px; top: 50%;
  transform: translateY(-50%) rotate(-10deg);
  font-size: 250px; font-weight: 900;
  color: rgba(62,207,156,0.04); line-height: 1;
  pointer-events: none;
}
.franchise-perks { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; margin: 24px 0; }
.perk-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem; color: var(--text-soft);
}
.perk-item::before {
  content: '✓';
  width: 22px; height: 22px;
  background: rgba(62,207,156,0.2);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700; color: var(--accent);
  flex-shrink: 0;
}

/* ======================== TESTIMONIALS ======================== */
.testimonial-card { padding: 28px; }
.stars { color: #FFD700; font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 12px; }
.testimonial-text {
  font-size: 0.92rem; color: var(--text-soft);
  line-height: 1.7; font-style: italic; margin-bottom: 18px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-blue));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem; color: #fff; flex-shrink: 0;
}
.author-name     { font-size: 0.9rem; font-weight: 700; color: #fff; }
.author-location { font-size: 0.75rem; color: var(--text-muted); }

/* ======================== FAQ ======================== */
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
.faq-q {
  width: 100%; background: none; border: none;
  color: #fff; font-family: 'Poppins', sans-serif;
  font-size: 0.97rem; font-weight: 600; text-align: left;
  padding: 22px 0; cursor: pointer;
  display: flex; justify-content: space-between;
  align-items: center; gap: 16px;
  transition: color var(--transition);
}
.faq-q:hover { color: var(--accent); }
.faq-icon {
  flex-shrink: 0; width: 26px; height: 26px;
  background: rgba(62,207,156,0.15); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: transform 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  font-size: 0.9rem; color: var(--text-muted); line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 260px; padding-bottom: 20px; }

/* ======================== FILTER TABS ======================== */
.filter-tabs {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center; margin-bottom: 44px;
}
.filter-tab {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-pill);
  padding: 9px 22px; font-size: 0.875rem; font-weight: 500;
  color: var(--text-muted); cursor: pointer;
  transition: all var(--transition);
  font-family: 'Poppins', sans-serif;
}
.filter-tab:hover,
.filter-tab.active {
  background: linear-gradient(135deg, var(--accent), var(--accent-blue));
  border-color: transparent; color: #fff;
}

/* ======================== GALLERY ======================== */
.gallery-grid { columns: 3; column-gap: 16px; }
.gallery-item {
  break-inside: avoid; margin-bottom: 16px;
  border-radius: var(--radius-card); overflow: hidden;
  position: relative; cursor: pointer;
  transition: transform var(--transition);
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item > img {
  width: 100%; display: block;
  border-radius: var(--radius-card);
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover > img { transform: scale(1.04); }
.gallery-placeholder {
  width: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px; font-size: 0.82rem;
  color: var(--text-muted); text-align: center;
  padding: 14px 12px;
}
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(10,61,46,0.88) 0%, transparent 60%);
  opacity: 0; transition: opacity var(--transition);
  display: flex; align-items: flex-end; padding: 16px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-caption { font-size: 0.8rem; font-weight: 600; color: #fff; }

/* ======================== FORMS ======================== */
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-label { font-size: 0.82rem; font-weight: 600; color: var(--accent-glow); letter-spacing: 0.5px; }
.form-input, .form-select, .form-textarea {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px; padding: 13px 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem; color: #fff;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
  outline: none; width: 100%;
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.28); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--accent);
  background: rgba(255,255,255,0.10);
  box-shadow: 0 0 0 3px rgba(62,207,156,0.12);
}
.form-select option { background: #0d5c40; color: #fff; }
.form-textarea { resize: vertical; min-height: 110px; }
.file-upload {
  border: 2px dashed rgba(62,207,156,0.3);
  border-radius: 10px; padding: 22px; text-align: center; cursor: pointer;
  transition: all var(--transition); color: var(--text-muted); font-size: 0.88rem;
}
.file-upload:hover { border-color: var(--accent); background: rgba(62,207,156,0.05); }
.file-upload input { display: none; }

/* ======================== ABOUT — TIMELINE ======================== */
.timeline { position: relative; padding-left: 44px; }
.timeline::before {
  content: ''; position: absolute;
  left: 12px; top: 8px; bottom: 8px; width: 2px;
  background: linear-gradient(180deg, var(--accent), var(--accent-blue));
}
.timeline-item { position: relative; margin-bottom: 44px; }
.timeline-dot {
  position: absolute; left: -38px; top: 4px;
  width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-blue));
  box-shadow: 0 0 0 5px rgba(62,207,156,0.15);
}
.timeline-year { font-size: 0.75rem; font-weight: 700; color: var(--accent); letter-spacing: 1px; margin-bottom: 4px; }
.timeline-title { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.timeline-desc  { font-size: 0.87rem; color: var(--text-muted); line-height: 1.6; }

/* ======================== CONTACT INFO CARDS ======================== */
.contact-info-card {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 24px;
}
.contact-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(62,207,156,0.18), rgba(26,140,204,0.18));
  border: 1px solid rgba(62,207,156,0.25);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; flex-shrink: 0;
}
.contact-label  { font-size: 0.75rem; font-weight: 700; color: var(--accent); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 4px; }
.contact-value  { font-size: 0.95rem; color: #fff; font-weight: 500; }
.contact-hint   { font-size: 0.78rem; color: var(--text-muted); margin-top: 2px; }

/* ======================== CTA SECTION ======================== */
.cta-section {
  background: linear-gradient(135deg, rgba(62,207,156,0.07), rgba(26,140,204,0.07));
  border-top: 1px solid rgba(62,207,156,0.15);
  border-bottom: 1px solid rgba(62,207,156,0.15);
  padding: 90px 28px;
  text-align: center; position: relative; z-index: 1;
}

/* ======================== WHATSAPP FLOAT ======================== */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 62px; height: 62px;
  background: linear-gradient(135deg, var(--wa-green), var(--wa-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 30px rgba(37,211,102,0.45);
  animation: float 3s ease-in-out infinite;
  transition: transform var(--transition);
}
.whatsapp-float:hover { transform: scale(1.12); animation-play-state: paused; }
.whatsapp-float::before {
  content: ''; position: absolute; inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.4);
  animation: pulse 2s ease-out infinite;
}
.whatsapp-float svg { width: 30px; height: 30px; }

/* ======================== FOOTER ======================== */
.site-footer {
  background: rgba(5,30,20,0.92);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(62,207,156,0.12);
  padding: 72px 28px 28px;
  position: relative; z-index: 1;
}
.footer-grid {
  max-width: 1280px; margin: 0 auto 48px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand-name {
  font-size: 13px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--accent-glow); margin-top: 10px; margin-bottom: 12px;
}
.footer-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.footer-contact-row {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.85rem; color: rgba(255,255,255,0.55);
  margin-bottom: 8px;
}
.footer-col-title {
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 22px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-links a {
  font-size: 0.87rem; color: rgba(255,255,255,0.5);
  transition: color var(--transition);
  display: flex; align-items: center; gap: 6px;
}
.footer-links a:hover { color: var(--accent-glow); }
.footer-divider {
  max-width: 1280px; margin: 0 auto 24px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(62,207,156,0.25), transparent);
}
.footer-bottom {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom-text { font-size: 0.76rem; color: rgba(255,255,255,0.3); letter-spacing: 0.5px; }
.footer-certifications { display: flex; gap: 10px; flex-wrap: wrap; }
.cert-badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px; padding: 4px 10px;
  font-size: 0.7rem; color: rgba(255,255,255,0.4);
  letter-spacing: 0.5px;
}

/* ======================== SCROLL ANIMATIONS ======================== */
.aos {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.aos.visible { opacity: 1; transform: translateY(0); }
.aos-delay-1 { transition-delay: 0.1s; }
.aos-delay-2 { transition-delay: 0.2s; }
.aos-delay-3 { transition-delay: 0.3s; }
.aos-delay-4 { transition-delay: 0.4s; }

/* ======================== UTILITY ======================== */
.text-accent  { color: var(--accent); }
.text-glow    { color: var(--accent-glow); }
.text-muted-c { color: var(--text-muted); }
.text-gold    { color: #FFD700; }
.fw-300 { font-weight: 300; } .fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; } .fw-800 { font-weight: 800; }
.text-center { text-align: center; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-2 { gap: 8px; } .gap-3 { gap: 12px; } .gap-4 { gap: 16px; } .gap-6 { gap: 24px; }
.mt-2 { margin-top: 8px; }  .mt-4 { margin-top: 16px; } .mt-6 { margin-top: 24px; }
.mb-2 { margin-bottom: 8px; } .mb-4 { margin-bottom: 16px; } .mb-6 { margin-bottom: 24px; }
.w-full { width: 100%; }
.hidden { display: none !important; }

/* ======================== RESPONSIVE ======================== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .steps-grid { grid-template-columns: repeat(2,1fr); }
  .steps-grid::before { display: none; }
  .pain-grid { grid-template-columns: repeat(2,1fr); }
  .franchise-section { padding: 40px 32px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .btn-nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: block; }
  .section { padding: 64px 20px; }
  .hero { padding: 100px 20px 64px; }
  .page-hero { padding: 120px 20px 64px; }
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .gallery-grid { columns: 2; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .subsidy-table { grid-template-columns: 1fr; }
  .franchise-perks { grid-template-columns: 1fr; }
  .franchise-section { padding: 36px 24px; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .gallery-grid { columns: 1; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .btn { font-size: 0.92rem; padding: 13px 28px; }
  .pain-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .subsidy-banner { padding: 28px 22px; }
}
