/* ============================================================
   SUN LIGHT ASSURE — Premium Solar Website CSS
   Brand Colors: Blue #0B2D5C / #123F7A | Orange #F29A2E / #D86A1F
   ============================================================ */

body {
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}



/* ---------- CSS Variables ---------- */
:root {
  --blue-primary: #0B2D5C;
  --blue-secondary: #123F7A;
  --orange-primary: #F29A2E;
  --orange-secondary: #D86A1F;
  --white: #FFFFFF;
  --light-gray: #F8FAFC;
  --text-dark: #1E293B;
  --text-muted: #64748B;
  --border-light: #E2E8F0;
  --grad-blue: linear-gradient(135deg, #0B2D5C 0%, #123F7A 100%);
  --grad-orange: linear-gradient(135deg, #F29A2E 0%, #D86A1F 100%);
  --shadow-sm: 0 2px 12px rgba(11, 45, 92, 0.08);
  --shadow-md: 0 8px 32px rgba(11, 45, 92, 0.12);
  --shadow-lg: 0 20px 60px rgba(11, 45, 92, 0.18);
  --shadow-orange: 0 8px 32px rgba(242, 154, 46, 0.30);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: all 0.35s ease;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
}

/* ---------- Global Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ---------- Utility ---------- */
.section-pad { padding: 96px 0; }
.bg-light-gray { background: var(--light-gray); }
.text-orange { color: var(--orange-primary); }
.text-blue { color: var(--blue-primary); }
.text-white-70 { color: rgba(255,255,255,0.75); }

/* ---------- Section Typography ---------- */
.section-tag {
  display: inline-flex;
  align-items: center;
  background: rgba(242,154,46,0.1);
  color: var(--orange-primary);
  border: 1px solid rgba(242,154,46,0.25);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.section-tag.light {
  background: rgba(255,255,255,0.12);
  color: var(--orange-primary);
  border-color: rgba(242,154,46,0.4);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.75;
}

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar-wrapper {
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  padding: 10px 0;
  animation: slideDown 0.6s ease;
}

@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.topbar-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 10px;
  row-gap: 4px;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  color: var(--text-muted);
  font-weight: 500;
}
.topbar-item i { color: var(--orange-primary); font-size: 0.9rem; }
.topbar-item a { color: var(--text-dark); transition: var(--transition); }
.topbar-item a:hover { color: var(--orange-primary); }

.topbar-divider { color: var(--border-light); font-size: 0.85rem; }

.btn-topbar {
  background: var(--grad-orange);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 7px 20px;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: var(--transition);
  box-shadow: var(--shadow-orange);
}
.btn-topbar:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(242,154,46,0.4);
}

/* ============================================================
   NAVBAR
   ============================================================ */
#mainNav {
  background: var(--white);
  padding: 16px 0;
  transition: padding 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
  z-index: 1030;
}
#mainNav.scrolled {
  padding: 10px 0;
  box-shadow: 0 4px 24px rgba(11,45,92,0.10);
  border-bottom-color: var(--border-light);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-icon {
  width: 44px; height: 44px;
  background: var(--grad-blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange-primary);
  font-size: 1.4rem;
  box-shadow: 0 4px 16px rgba(11,45,92,0.25);
  transition: var(--transition);
}
.navbar-brand:hover .logo-icon { transform: rotate(15deg) scale(1.05); }

.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-main {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--blue-primary);
  letter-spacing: 1px;
}
.logo-sub {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--orange-primary);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.navbar-nav .nav-link {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 8px 14px;
  position: relative;
  transition: var(--transition);
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 14px; right: 14px;
  height: 2px;
  background: var(--blue-primary);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.navbar-nav .nav-link:hover { color: var(--blue-primary); }
.navbar-nav .nav-link:hover::after { transform: scaleX(1); }

.btn-nav-cta {
  background: var(--grad-blue);
  color: var(--white);
  border: none;
  border-radius: 10px;
  padding: 10px 22px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(11,45,92,0.25);
}
.btn-nav-cta:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(11,45,92,0.35);
}

.toggler-icon {
  font-size: 1.6rem;
  color: var(--blue-primary);
}
.navbar-toggler { border: none; box-shadow: none !important; padding: 4px 8px; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  overflow: hidden;
}

/* Solar Particles */
.solar-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 5;
  overflow: hidden;
}
.particle {
  position: absolute;
  border-radius: 50%;
  animation: floatParticle linear infinite;
  opacity: 0;
}

@keyframes floatParticle {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.3; }
  100% { transform: translateY(-100px) scale(1.2); opacity: 0; }
}

/* Hero Slides */
.hero-slide {
  height: 100vh;
  min-height: 640px;
  position: relative;
  display: flex;
  align-items: center;
}

.slide-1 {
  background: linear-gradient(135deg, #0a1628 0%, #0B2D5C 50%, #1a4a8a 100%);
  background-image: radial-gradient(ellipse at 80% 50%, rgba(242,154,46,0.08) 0%, transparent 60%),
                    linear-gradient(135deg, #0a1628 0%, #0B2D5C 50%, #1a4a8a 100%);
}
.slide-2 {
  background: linear-gradient(135deg, #061d42 0%, #0B2D5C 40%, #123F7A 100%);
}
.slide-3 {
  background: linear-gradient(135deg, #8B3200 0%, #D86A1F 40%, #F29A2E 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.15;
}
.overlay-blue-dark { background: var(--grad-blue); }
.overlay-blue { background: var(--grad-blue); }
.overlay-orange { background: var(--grad-orange); }

.hero-content { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(242,154,46,0.15);
  border: 1px solid rgba(242,154,46,0.4);
  color: var(--orange-primary);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}
.badge-orange { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.3); color: var(--white); }
.badge-white { background: rgba(11,45,92,0.15); border-color: rgba(11,45,92,0.3); color: var(--blue-primary); }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.slide-3 .hero-title { color: var(--blue-primary); }
.slide-3 .hero-title .text-white { color: var(--blue-primary) !important; }

.hero-subtitle {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.82);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 36px;
}
.slide-3 .hero-subtitle { color: rgba(11,45,92,0.75); }

.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; }

.btn-hero-primary {
  background: var(--grad-orange);
  color: var(--white);
  border: none;
  border-radius: 12px;
  padding: 14px 30px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: var(--shadow-orange);
}
.btn-hero-primary:hover {
  color: var(--white);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 40px rgba(242,154,46,0.5);
}

.btn-hero-outline {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 12px;
  padding: 14px 30px;
  font-size: 0.95rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}
.btn-hero-outline:hover {
  background: rgba(255,255,255,0.18);
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-3px);
}

.btn-hero-white {
  background: var(--blue-primary);
  color: var(--white);
  border: none;
  border-radius: 12px;
  padding: 14px 30px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 8px 28px rgba(11,45,92,0.35);
}
.btn-hero-white:hover {
  background: var(--blue-secondary);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-hero-outline-white {
  background: transparent;
  color: var(--blue-primary);
  border: 1.5px solid var(--blue-primary);
  border-radius: 12px;
  padding: 14px 30px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
}
.btn-hero-outline-white:hover {
  background: var(--blue-primary);
  color: var(--white);
  transform: translateY(-3px);
}

/* Hero Visual Card */
.hero-visual { position: relative; z-index: 2; }

.hero-solar-card {
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.12);
}
.card-orange {
  background: rgba(11,45,92,0.15);
  border-color: rgba(11,45,92,0.2);
}

.solar-stats-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 20px;
}
.stat-green { background: rgba(34,197,94,0.15); }
.stat-white { background: rgba(255,255,255,0.9); }
.stat-white .stat-num { color: var(--blue-primary); }
.stat-white .stat-lbl { color: var(--text-muted); }

.stat-icon { font-size: 2rem; color: var(--orange-primary); }
.stat-num { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--white); }
.stat-lbl { font-size: 0.8rem; color: rgba(255,255,255,0.7); font-weight: 500; }

/* Solar Panel Visual */
.solar-panel-visual {
  background: rgba(0,0,0,0.2);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 20px;
}
.panel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.panel-grid.large { grid-template-columns: repeat(3, 1fr); }

.panel-cell {
  height: 52px;
  background: rgba(11,45,92,0.6);
  border: 1px solid rgba(18,63,122,0.5);
  border-radius: 4px;
  transition: background 0.3s ease;
}
.panel-cell.glowing {
  animation: panelGlow 2.5s ease-in-out infinite alternate;
}
@keyframes panelGlow {
  0% { background: rgba(11,45,92,0.6); box-shadow: none; }
  100% { background: rgba(18,63,122,0.9); box-shadow: 0 0 12px rgba(242,154,46,0.4); }
}

.energy-bar-wrap { }
.energy-label { font-size: 0.78rem; color: rgba(255,255,255,0.7); margin-bottom: 8px; font-weight: 500; }
.energy-bar {
  height: 8px;
  background: rgba(255,255,255,0.15);
  border-radius: 50px;
  overflow: hidden;
  margin-bottom: 6px;
}
.energy-fill {
  height: 100%;
  background: var(--grad-orange);
  border-radius: 50px;
  animation: energyLoad 2s ease forwards;
}
.orange-fill { background: var(--grad-orange); }
@keyframes energyLoad {
  from { width: 0 !important; }
}
.energy-val { font-size: 0.78rem; color: rgba(255,255,255,0.6); }

/* Subsidy checklist */
.subsidy-checklist { margin-bottom: 16px; }
.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.12);
  border-radius: 8px;
  margin-bottom: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
}
.check-item i { color: #22c55e; font-size: 1rem; }
.check-item.pending i { color: var(--orange-primary); animation: spin 2s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Carousel Controls */
.custom-carousel-ctrl {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.2rem;
  transition: var(--transition);
}
.custom-carousel-ctrl:hover {
  background: var(--orange-primary);
  border-color: var(--orange-primary);
}
.carousel-control-prev, .carousel-control-next {
  width: auto;
  opacity: 1;
}
.carousel-control-prev { left: 24px; }
.carousel-control-next { right: 24px; }
.carousel-control-prev-icon, .carousel-control-next-icon { display: none; }

/* Indicators */
.custom-indicators {
  bottom: 28px;
}
.custom-indicators button {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  margin: 0 4px;
  transition: var(--transition);
}
.custom-indicators button.active {
  background: var(--orange-primary);
  width: 28px;
  border-radius: 5px;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 10;
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  letter-spacing: 1px;
}
.scroll-dot {
  width: 6px; height: 28px;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}
.scroll-dot::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: rgba(255,255,255,0.7);
  border-radius: 3px;
  animation: scrollDot 1.5s ease-in-out infinite;
}
@keyframes scrollDot {
  0%, 100% { transform: translateY(0); opacity: 1; }
  80% { transform: translateY(100%); opacity: 0; }
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-img-main {
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-placeholder {
  height: 420px;
  /* background: var(--grad-blue); */
  background-image: url('../images/about.jpg');
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  


  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.sun-animation { position: relative; display: flex; align-items: center; justify-content: center; }
.sun-icon-large {
  font-size: 5rem;
  color: var(--orange-primary);
  position: relative;
  z-index: 2;
  animation: sunPulse 3s ease-in-out infinite;
}
@keyframes sunPulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 20px rgba(242,154,46,0.5)); }
  50% { transform: scale(1.1); filter: drop-shadow(0 0 40px rgba(242,154,46,0.8)); }
}

.sun-ring {
  position: absolute;
  border: 1px solid rgba(242,154,46,0.3);
  border-radius: 50%;
  animation: ringExpand 3s ease-out infinite;
}
.ring-1 { width: 120px; height: 120px; animation-delay: 0s; }
.ring-2 { width: 180px; height: 180px; animation-delay: 0.8s; }
.ring-3 { width: 240px; height: 240px; animation-delay: 1.6s; }

@keyframes ringExpand {
  0% { transform: scale(0.7); opacity: 0.8; }
  100% { transform: scale(1.2); opacity: 0; }
}

.about-img-overlay-text {
  position: absolute;
  bottom: 20px; left: 20px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.15);
}

.about-img-badge {
  position: absolute;
  top: 20px; right: -16px;
  background: var(--grad-orange);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: var(--shadow-orange);
}
.about-img-badge i { font-size: 1.3rem; }

.about-img-years {
  position: absolute;
  bottom: -16px; left: 20px;
  background: var(--white);
  border-radius: 12px;
  padding: 14px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.years-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--blue-primary);
  line-height: 1;
}
.years-txt { font-size: 0.75rem; color: var(--text-muted); font-weight: 500; }

/* Stats Cards */
.stat-badge-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 20px 14px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.stat-badge-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-blue);
  border-radius: 3px 3px 0 0;
}
.stat-badge-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.orange-stat::before { background: var(--grad-orange); }

.stat-badge-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue-primary);
  line-height: 1;
  display: inline;
}
.stat-badge-plus {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--orange-primary);
  display: inline;
}
.stat-badge-lbl {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 6px;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
}
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(242,154,46,0.18);
}

.why-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad-orange);
  border-radius: 4px 4px 0 0;
}

.why-icon-wrap {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, rgba(242,154,46,0.12) 0%, rgba(216,106,31,0.08) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.6rem;
  color: var(--orange-primary);
  transition: var(--transition);
}
.why-card:hover .why-icon-wrap {
  background: var(--grad-orange);
  color: var(--white);
  transform: rotate(-5deg) scale(1.05);
}

.why-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.why-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

.why-hover-line {
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--grad-blue);
  transition: width 0.4s ease;
  border-radius: 0 0 0 3px;
}
.why-card:hover .why-hover-line { width: 100%; }

/* ============================================================
   SOLUTIONS
   ============================================================ */
.solutions-section {
  background: var(--grad-blue);
  position: relative;
  overflow: hidden;
}
.solutions-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(242,154,46,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.solutions-section::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  border-radius: 50%;
}

.solution-card {
  border-radius: var(--radius);
  padding: 36px 28px;
  height: 100%;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
}
.solution-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 72px rgba(0,0,0,0.28);
}

.card-blue-sol {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
}
.card-blue-sol:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.2);
  box-shadow: 0 24px 64px rgba(0,0,0,0.3), 0 0 60px rgba(18,63,122,0.2);
}

.card-orange-sol {
  background: var(--grad-orange);
  border: 1px solid rgba(242,154,46,0.3);
}
.card-orange-sol:hover {
  box-shadow: 0 24px 64px rgba(242,154,46,0.4);
}

.featured-sol { position: relative; }
.featured-sol-badge {
  position: absolute;
  top: -1px; right: 24px;
  background: var(--white);
  color: var(--orange-secondary);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 0 0 10px 10px;
  letter-spacing: 0.5px;
}

.solution-icon-wrap {
  width: 64px; height: 64px;
  background: rgba(255,255,255,0.12);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--orange-primary);
  margin-bottom: 16px;
  transition: var(--transition);
}
.card-orange-sol .solution-icon-wrap { background: rgba(255,255,255,0.2); color: var(--white); }
.solution-card:hover .solution-icon-wrap { transform: scale(1.1) rotate(-5deg); }

.solution-badge {
  display: inline-block;
  background: rgba(242,154,46,0.15);
  color: var(--orange-primary);
  border: 1px solid rgba(242,154,46,0.3);
  padding: 3px 12px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.card-orange-sol .solution-badge { background: rgba(255,255,255,0.2); color: var(--white); border-color: rgba(255,255,255,0.3); }

.solution-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.solution-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 20px;
}
.card-orange-sol .solution-desc { color: rgba(255,255,255,0.85); }

.solution-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}
.solution-benefits li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.solution-benefits li:last-child { border-bottom: none; }
.solution-benefits li i { color: var(--orange-primary); font-size: 1rem; }
.card-orange-sol .solution-benefits li { color: rgba(255,255,255,0.9); }
.card-orange-sol .solution-benefits li i { color: var(--white); }

.btn-solution {
  background: var(--grad-orange);
  color: var(--white);
  border: none;
  border-radius: 10px;
  padding: 12px 24px;
  font-size: 0.88rem;
  font-weight: 600;
  width: 100%;
  transition: var(--transition);
  box-shadow: var(--shadow-orange);
}
.btn-solution:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(242,154,46,0.5);
}

.btn-solution-white {
  background: var(--white);
  color: var(--orange-secondary);
  border: none;
  border-radius: 10px;
  padding: 12px 24px;
  font-size: 0.88rem;
  font-weight: 700;
  width: 100%;
  transition: var(--transition);
}
.btn-solution-white:hover {
  background: rgba(255,255,255,0.9);
  color: var(--orange-secondary);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.2);
}

/* ============================================================
   DOMESTIC VS COMMERCIAL
   ============================================================ */
.split-card {
  border-radius: var(--radius);
  padding: 40px 36px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.split-card:hover { transform: translateY(-6px); }

.split-orange {
  background: linear-gradient(145deg, rgba(242,154,46,0.05) 0%, rgba(216,106,31,0.08) 100%);
  border: 2px solid rgba(242,154,46,0.2);
}
.split-blue {
  background: linear-gradient(145deg, rgba(11,45,92,0.05) 0%, rgba(18,63,122,0.08) 100%);
  border: 2px solid rgba(11,45,92,0.15);
}

.split-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: inline-block;
}
.split-orange .split-icon { color: var(--orange-primary); }
.split-blue .split-icon { color: var(--blue-primary); }

.split-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.split-orange .split-title { color: var(--orange-secondary); }
.split-blue .split-title { color: var(--blue-primary); }

.split-desc { font-size: 0.92rem; color: var(--text-muted); margin-bottom: 4px; line-height: 1.7; }

.split-stat-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}
.split-stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.split-stat-card i { font-size: 1.5rem; color: var(--orange-primary); margin-bottom: 8px; display: block; }
.blue-stat i { color: var(--blue-primary); }
.split-stat-val {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--orange-secondary);
  line-height: 1;
}
.blue-stat .split-stat-val { color: var(--blue-primary); }
.split-stat-lbl { font-size: 0.75rem; color: var(--text-muted); font-weight: 500; margin-top: 4px; }

.btn-split-primary {
  background: var(--grad-orange);
  color: var(--white);
  border: none;
  border-radius: 12px;
  padding: 14px 28px;
  font-size: 0.92rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
  box-shadow: var(--shadow-orange);
}
.btn-split-primary:hover {
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(242,154,46,0.45);
}

.btn-split-blue {
  background: var(--grad-blue);
  color: var(--white);
  border: none;
  border-radius: 12px;
  padding: 14px 28px;
  font-size: 0.92rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
  box-shadow: 0 8px 28px rgba(11,45,92,0.3);
}
.btn-split-blue:hover {
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(11,45,92,0.45);
}

/* ============================================================
   PM SURYA SECTION
   ============================================================ */
.pm-section { position: relative; }

.subsidy-highlight-box {
  background: var(--grad-blue);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 28px;
  box-shadow: var(--shadow-md);
}

.subsidy-highlight-item {
  padding: 22px 16px;
  text-align: center;
}
.subsidy-highlight-item.highlight { background: rgba(242,154,46,0.15); }
.border-x { border-left: 1px solid rgba(255,255,255,0.12); border-right: 1px solid rgba(255,255,255,0.12); }

.sh-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--orange-primary);
  line-height: 1;
}
.subsidy-highlight-item.highlight .sh-num { color: var(--white); font-size: 1.7rem; }
.sh-lbl { font-size: 0.8rem; color: rgba(255,255,255,0.65); font-weight: 500; margin-top: 6px; }
.subsidy-highlight-item.highlight .sh-lbl { color: rgba(255,255,255,0.85); }

.doc-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.doc-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.doc-card:hover {
  transform: translateX(4px);
  border-color: rgba(242,154,46,0.3);
  box-shadow: var(--shadow-md);
}

.doc-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, rgba(242,154,46,0.12) 0%, rgba(216,106,31,0.08) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--orange-primary);
  flex-shrink: 0;
}

.doc-name { font-weight: 600; font-size: 0.9rem; color: var(--text-dark); }
.doc-note { font-size: 0.78rem; color: var(--text-muted); }
.doc-check { margin-left: auto; font-size: 1.1rem; color: #22c55e; }

/* PM CTA Card */
.pm-cta-card {
  background: var(--grad-blue);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.pm-cta-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(242,154,46,0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.pm-cta-header { text-align: center; margin-bottom: 28px; }
.pm-cta-icon { font-size: 3rem; color: var(--orange-primary); margin-bottom: 16px; display: block; animation: sunPulse 3s ease-in-out infinite; }
.pm-cta-header h4 { color: var(--white); font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 10px; }
.pm-cta-header p { font-size: 0.88rem; color: rgba(255,255,255,0.72); line-height: 1.7; }

.pm-cta-steps { margin-bottom: 28px; }
.pm-step {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.pm-step:last-child { border-bottom: none; }
.pm-step-num {
  width: 28px; height: 28px;
  background: var(--grad-orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

.btn-pm-apply {
  background: var(--grad-orange);
  color: var(--white);
  border: none;
  border-radius: 12px;
  padding: 16px;
  font-size: 1rem;
  font-weight: 600;
  width: 100%;
  transition: var(--transition);
  box-shadow: var(--shadow-orange);
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-pm-apply:hover {
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(242,154,46,0.5);
}

.pm-cta-note {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin-top: 16px;
}

/* ============================================================
   PROCESS TIMELINE
   ============================================================ */
.process-section {
  background: var(--grad-blue);
  position: relative;
  overflow: hidden;
}
.process-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(242,154,46,0.06) 0%, transparent 70%);
}

.process-timeline { position: relative; }

.process-row { position: relative; }
.process-row::after {
  content: '';
  position: absolute;
  top: 36px; left: calc(16.66% + 36px); right: calc(16.66% + 36px);
  height: 2px;
  background: linear-gradient(90deg, rgba(242,154,46,0.6) 0%, rgba(255,255,255,0.12) 100%);
  z-index: 0;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.ps-node {
  width: 72px; height: 72px;
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  transition: var(--transition);
}
.ps-node:hover { transform: scale(1.1); border-color: var(--orange-primary); background: rgba(242,154,46,0.15); }
.ps-node.active { background: var(--grad-orange); border-color: var(--orange-primary); box-shadow: 0 0 0 8px rgba(242,154,46,0.15); }
.ps-node.success { background: rgba(34,197,94,0.2); border-color: #22c55e; box-shadow: 0 0 0 8px rgba(34,197,94,0.1); }

.ps-num { font-size: 0.65rem; font-weight: 700; color: var(--orange-primary); letter-spacing: 0.5px; }
.ps-node.active .ps-num, .ps-node.success .ps-num { color: var(--white); }
.ps-icon { font-size: 1.3rem; color: rgba(255,255,255,0.8); }
.ps-node.active .ps-icon { color: var(--white); }
.ps-node.success .ps-icon { color: #22c55e; }

.ps-connector {
  position: absolute;
  top: 36px; width: 50%;
  height: 2px;
  background: rgba(255,255,255,0.12);
  z-index: 1;
}
.ps-connector:first-child { right: 50%; }
.ps-connector:nth-child(3) { left: 50%; }
.left-hidden:first-child { display: none; }
.right-hidden:nth-child(3) { display: none; }

.ps-content h5 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.ps-content p { font-size: 0.82rem; color: rgba(255,255,255,0.65); line-height: 1.6; max-width: 140px; margin: 0 auto; }

.process-connector-down {
  text-align: center;
  margin: 10px 0;
  position: relative;
}
.process-connector-down::before {
  content: '';
  position: absolute;
  top: 50%; right: calc(50% + 0px);
  width: calc(33.33% - 36px);
  height: 2px;
  background: rgba(255,255,255,0.12);
  transform: translateY(-50%);
}
.process-connector-down::after {
  content: '';
  position: absolute;
  top: 50%; left: calc(50% + 0px);
  width: calc(33.33% - 36px);
  height: 2px;
  background: rgba(255,255,255,0.12);
  transform: translateY(-50%);
}

.btn-process-cta {
  background: var(--grad-orange);
  color: var(--white);
  border: none;
  border-radius: 14px;
  padding: 16px 40px;
  font-size: 1rem;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: var(--shadow-orange);
}
.btn-process-cta:hover {
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(242,154,46,0.5);
}

/* ============================================================
   APPLICATION FORM
   ============================================================ */
.form-premium-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.form-card-header {
  background: var(--light-gray);
  border-bottom: 1px solid var(--border-light);
  padding: 28px 36px;
}
.form-card-header h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.form-secure-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(34,197,94,0.1);
  color: #16a34a;
  border: 1px solid rgba(34,197,94,0.25);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
}

.form-card-body { padding: 36px; }

/* Floating Inputs */
.float-input-group {
  position: relative;
  margin-bottom: 0;
}

.float-input {
  width: 100%;
  padding: 20px 16px 8px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  resize: none;
}
.float-input:focus {
  border-color: var(--blue-secondary);
  box-shadow: 0 0 0 4px rgba(18,63,122,0.07);
}

.float-label {
  position: absolute;
  top: 15px; left: 16px;
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: var(--transition);
  pointer-events: none;
  font-weight: 500;
}

.float-input:focus ~ .float-label,
.float-input:not(:placeholder-shown) ~ .float-label {
  top: 6px;
  font-size: 0.72rem;
  color: var(--blue-secondary);
}

.input-accent-line {
  position: absolute;
  bottom: 0; left: 14px; right: 14px;
  height: 2px;
  background: var(--grad-blue);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.35s ease;
}
.float-input:focus ~ .input-accent-line { transform: scaleX(1); }

.float-textarea { min-height: 110px; padding-top: 24px; }

/* Custom Select */
.custom-select-wrap { position: relative; }
.custom-select-label {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 6px;
}
.custom-select-input {
  width: 100%;
  padding: 14px 40px 14px 14px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  outline: none;
  transition: var(--transition);
  appearance: none;
  cursor: pointer;
}
.custom-select-input:focus {
  border-color: var(--blue-secondary);
  box-shadow: 0 0 0 3px rgba(18,63,122,0.08);
}
.select-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.85rem;
  pointer-events: none;
}

.btn-form-submit {
  background: var(--grad-orange);
  color: var(--white);
  border: none;
  border-radius: 12px;
  padding: 16px 48px;
  font-size: 1rem;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: var(--shadow-orange);
}
.btn-form-submit:hover {
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(242,154,46,0.5);
}

.form-note { font-size: 0.82rem; color: var(--text-muted); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 40px 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  position: relative;
}

.testi-quote {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 4rem;
  color: rgba(242,154,46,0.12);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

.testi-stars { margin-bottom: 20px; color: var(--orange-primary); font-size: 1rem; letter-spacing: 2px; }

.testi-text {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 28px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}

.testi-avatar {
  width: 48px; height: 48px;
  background: var(--grad-orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
}
.blue-avatar { background: var(--grad-blue); }
.green-avatar { background: linear-gradient(135deg, #16a34a, #22c55e); }

.testi-name { font-weight: 700; color: var(--text-dark); font-size: 0.95rem; }
.testi-loc { font-size: 0.8rem; color: var(--text-muted); }

.testi-system {
  display: flex;
  align-items: center;
  background: rgba(11,45,92,0.06);
  color: var(--blue-primary);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
}

.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
}

.testi-btn {
  width: 44px; height: 44px;
  background: var(--white);
  border: 2px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--blue-primary);
  transition: var(--transition);
  cursor: pointer;
}
.testi-btn:hover {
  background: var(--blue-primary);
  color: var(--white);
  border-color: var(--blue-primary);
}

.testi-dots { display: flex; gap: 8px; align-items: center; }
.testi-dot {
  width: 8px; height: 8px;
  background: var(--border-light);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}
.testi-dot.active { background: var(--orange-primary); width: 22px; border-radius: 4px; }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
  background: var(--grad-blue);
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(242,154,46,0.07) 0%, transparent 70%);
  border-radius: 50%;
}

.contact-details { }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 28px;
}
.contact-icon-wrap {
  width: 50px; height: 50px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--orange-primary);
  flex-shrink: 0;
  transition: var(--transition);
}
.orange-icon { background: rgba(242,154,46,0.15); border-color: rgba(242,154,46,0.25); }
.contact-item:hover .contact-icon-wrap {
  background: var(--orange-primary);
  color: var(--white);
  transform: scale(1.05);
}

.contact-label { font-size: 0.8rem; color: rgba(255,255,255,0.55); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 3px; }
.contact-value { color: rgba(255,255,255,0.9); font-size: 0.95rem; font-weight: 500; line-height: 1.6; }
.contact-value:hover { color: var(--orange-primary); }

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border: none;
  border-radius: 12px;
  padding: 12px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover {
  background: #1ebe5c;
  color: var(--white);
  transform: translateY(-3px);
}

.btn-call-now {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  padding: 12px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
}
.btn-call-now:hover {
  background: rgba(255,255,255,0.18);
  color: var(--white);
  transform: translateY(-3px);
}

/* Map */
.map-wrapper { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.map-placeholder {
  height: 380px;
  min-height: 300px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.map-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.map-overlay-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.map-pin-animated { position: relative; margin-bottom: 16px; display: inline-block; }
.map-pin-icon { font-size: 3rem; color: var(--orange-primary); animation: mapBounce 1.5s ease-in-out infinite; }
@keyframes mapBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.map-pin-pulse {
  position: absolute;
  bottom: -4px; left: 50%;
  transform: translateX(-50%);
  width: 24px; height: 8px;
  background: rgba(0,0,0,0.3);
  border-radius: 50%;
  animation: shadowPulse 1.5s ease-in-out infinite;
}
@keyframes shadowPulse {
  0%, 100% { width: 24px; opacity: 0.5; }
  50% { width: 16px; opacity: 0.2; }
}

.map-location-tag {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  padding: 14px 22px;
  border-radius: 12px;
  font-size: 0.88rem;
  text-align: center;
  margin-bottom: 4px;
}
.map-addr { font-size: 0.8rem; color: rgba(255,255,255,0.65); margin-top: 4px; }

.btn-map-open {
  background: var(--grad-orange);
  color: var(--white);
  border: none;
  border-radius: 10px;
  padding: 10px 22px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
}
.btn-map-open:hover { color: var(--white); transform: translateY(-2px); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: #060e1c; }

.footer-top { padding: 72px 0 48px; border-bottom: 1px solid rgba(255,255,255,0.07); }

.footer-tagline { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.8; margin-bottom: 20px; max-width: 300px; }

.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 1rem;
  transition: var(--transition);
}
.social-link:hover { background: var(--orange-primary); color: var(--white); border-color: var(--orange-primary); transform: translateY(-3px); }

.footer-heading {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--orange-primary);
  display: inline-block;
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 4px;
}
.footer-links a:hover { color: var(--orange-primary); transform: translateX(4px); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
.footer-contact-item i { color: var(--orange-primary); font-size: 0.9rem; margin-top: 2px; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-contact-item a:hover { color: var(--orange-primary); }

.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.55);
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  margin-right: 8px;
  margin-bottom: 8px;
}
.cert-badge i { color: var(--orange-primary); }

.footer-bottom {
  padding: 20px 0;
  color: rgba(255,255,255,0.3);
  font-size: 0.82rem;
  display: flex;
  align-items: center;
}

/* ============================================================
   BACK TO TOP & TOAST
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 48px; height: 48px;
  background: var(--grad-blue);
  color: var(--white);
  border: none;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(20px);
  z-index: 999;
}
.back-to-top.show { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--grad-orange); transform: translateY(-4px); box-shadow: var(--shadow-orange); }

.toast-notification {
  position: fixed;
  bottom: 30px; left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #16a34a;
  color: var(--white);
  padding: 16px 28px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
  z-index: 9999;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap;
  display: flex;
  align-items: center;
}
.toast-notification.show { transform: translateX(-50%) translateY(0); }

/* ============================================================
   RIPPLE EFFECT
   ============================================================ */
.ripple-btn { position: relative; overflow: hidden; }
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transform: scale(0);
  animation: rippleAnim 0.6s linear;
  pointer-events: none;
}
@keyframes rippleAnim {
  to { transform: scale(4); opacity: 0; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
  .section-pad { padding: 72px 0; }
  .hero-slide { height: auto; min-height: 100vh; padding: 120px 0 80px; }
  .scroll-indicator { display: none; }
  .about-img-badge { right: 0; top: 14px; }
}

@media (max-width: 767.98px) {
  .section-pad { padding: 60px 0; }
  .hero-slide { padding: 100px 0 70px; }
  .hero-title { font-size: clamp(1.8rem, 6vw, 2.4rem); }
  .hero-subtitle { font-size: 0.95rem; }
  .hero-buttons { flex-direction: column; }
  .btn-hero-primary, .btn-hero-outline, .btn-hero-white, .btn-hero-outline-white {
    text-align: center;
    width: 100%;
  }
  .topbar-info { justify-content: center; }
  .carousel-control-prev, .carousel-control-next { display: none; }
  .form-card-header, .form-card-body { padding: 20px; }
  .testimonial-card { padding: 28px 20px 24px; }
  .testi-author { flex-wrap: wrap; }
  .testi-system { width: 100%; justify-content: center; margin-top: 8px; }
  .process-row::after { display: none; }
  .ps-content p { max-width: 100%; }
  .contact-item { gap: 12px; }
  .hero-badge { font-size: 0.72rem; padding: 6px 14px; }
  .subsidy-highlight-box .sh-num { font-size: 1.1rem; }
  .split-card { padding: 28px 20px; }
}

@media (max-width: 575.98px) {
  .logo-main { font-size: 0.9rem; }
  .btn-nav-cta { padding: 8px 16px; font-size: 0.82rem; }
  .why-card { padding: 24px 18px; }
  .solution-card { padding: 26px 20px; }
  .pm-cta-card { padding: 24px 20px; }
  .about-img-badge { right: 10px; }
  .sh-num { font-size: 1rem !important; }
  .sh-lbl { font-size: 0.72rem !important; }
  .map-placeholder { height: 300px; }
  .form-card-body { padding: 16px; }
  .testi-quote { font-size: 2.8rem; top: 14px; right: 16px; }
}

/* ============================================================
   ADDITIONAL POLISH
   ============================================================ */

/* Smooth page load fade-in */
body { animation: pageFade 0.4s ease; }
@keyframes pageFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Focus visible - accessibility */
:focus-visible {
  outline: 2px solid var(--orange-primary);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Better button active states */
.btn-hero-primary:active,
.btn-solution:active,
.btn-pm-apply:active,
.btn-form-submit:active,
.btn-process-cta:active {
  transform: translateY(0) scale(0.98);
  box-shadow: none;
}

/* Consistent select focus ring */
.custom-select-input:focus {
  border-color: var(--blue-secondary);
  box-shadow: 0 0 0 4px rgba(18,63,122,0.07);
}

/* Smoother card hover on split section */
.split-card {
  border-radius: var(--radius);
  padding: 40px 36px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.split-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

/* Fix hero badge pulse animation */
.hero-badge i {
  animation: badgePulse 2.5s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.65; }
}

/* Stat badge cards row gap */
.stat-badge-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 20px 14px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Back to top - smooth reveal */
.back-to-top {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 48px; height: 48px;
  background: var(--grad-blue);
  color: var(--white);
  border: none;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(20px);
  z-index: 999;
}
.back-to-top.show { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--grad-orange); transform: translateY(-4px); box-shadow: var(--shadow-orange); }
