/*
Theme Name: Rudransh Solartech v30.006
Theme URI: https://rudranshsolartech.com
Author: Rudransh Solartech
Author URI: https://rudranshsolartech.com
Description: Custom multi-page solar tech theme with SEO landing pages, lead calculator, dynamic careers system, and FluentCRM integration.
Version: 30.007
License: Proprietary
Text Domain: rudranshsolartech
*/
/* ============================================================
   RUDRANSH SOLARTECH — Design System & Landing Page Styles
   Performance-first CSS with zero dependencies
   ============================================================ */

/* ---------- CSS CUSTOM PROPERTIES / DESIGN TOKENS ---------- */
:root {
  /* Brand Colors */
  --brand-orange: #f97316;
  --brand-amber: #f59e0b;
  --brand-solar: #fbbf24;
  --brand-deep: #ea580c;
  --brand-green: #22c55e;
  --brand-navy: #0f172a;

  /* Light Theme */
  --bg-primary: #ffffff;
  --bg-primary-rgb: 255, 255, 255;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f1f5f9;
  --bg-card: #ffffff;
  --bg-glass: rgba(255, 255, 255, 0.8);
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-tertiary: #94a3b8;
  --text-on-brand: #ffffff;
  --border-color: #e2e8f0;
  --border: #e2e8f0;
  --border-subtle: #f1f5f9;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
  --shadow-glow: 0 0 40px rgba(249, 115, 22, 0.3);
  --input-bg: #f8fafc;

  /* Gradients */
  --gradient-brand: linear-gradient(135deg, #f97316 0%, #f59e0b 50%, #fbbf24 100%);
  --gradient-hero: linear-gradient(160deg, #0f172a 0%, #1e293b 40%, #0f172a 100%);
  --gradient-cta: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  --gradient-card: linear-gradient(145deg, rgba(249, 115, 22, 0.05) 0%, rgba(251, 191, 36, 0.05) 100%);

  /* Typography */
  --font-primary: 'Inter', system-ui, -apple-system, sans-serif;
  --font-hindi: 'Noto Sans Devanagari', 'Inter', sans-serif;
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-lg: 1.125rem;
  --fs-xl: 1.25rem;
  --fs-2xl: 1.5rem;
  --fs-3xl: 1.875rem;
  --fs-4xl: 2.25rem;
  --fs-5xl: 3rem;
  --fs-6xl: 3.75rem;
  --fs-hero: clamp(2.25rem, 5vw, 4rem);

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-section: clamp(4rem, 8vw, 7rem);

  /* Borders */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Z-Index */
  --z-sticky: 100;
  --z-header: 200;
  --z-mobile-nav: 250;
  --z-modal: 300;
  --z-float: 400;
}

/* ---------- DARK THEME ---------- */
[data-theme="dark"] {
  --bg-primary: #0b1120;
  --bg-secondary: #111827;
  --bg-tertiary: #1e293b;
  --bg-card: #151f32;
  --bg-glass: rgba(15, 23, 42, 0.85);
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-tertiary: #64748b;
  --border-color: #1e293b;
  --border: #1e293b;
  --border-subtle: #1e293b;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.5);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 60px rgba(249, 115, 22, 0.2);
  --input-bg: #1e293b;
  --gradient-card: linear-gradient(145deg, rgba(249, 115, 22, 0.08) 0%, rgba(251, 191, 36, 0.06) 100%);
}

/* ---------- HINDI FONT ---------- */
[data-lang="hi"] {
  --font-primary: 'Noto Sans Devanagari', 'Inter', system-ui, sans-serif;
}

/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 80px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-primary);
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  transition: background-color var(--transition-base), color var(--transition-base);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--brand-orange);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--brand-deep);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* ---------- PAGE LOAD ---------- */
@keyframes pageReveal {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

body {
  animation: pageReveal 0.6s ease-out;
}

/* ---------- SCROLL ANIMATIONS ---------- */
.anim-slide-up,
.anim-fade-in,
.anim-zoom-in,
.anim-slide-left,
.anim-slide-right {
  opacity: 1;
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}

.anim-slide-up {
  transform: none;
}

.anim-zoom-in {
  transform: none;
}

.anim-fade-in {
  transform: none;
}

.anim-slide-left {
  transform: none;
}

.anim-slide-right {
  transform: none;
}

.is-visible {
  opacity: 1 !important;
  transform: translateY(0) scale(1) translateX(0) !important;
}

.anim-delay-1 {
  transition-delay: 0.12s;
}

.anim-delay-2 {
  transition-delay: 0.24s;
}

.anim-delay-3 {
  transition-delay: 0.36s;
}

.anim-delay-4 {
  transition-delay: 0.48s;
}

.anim-delay-5 {
  transition-delay: 0.60s;
}

/* Glow pulse for CTAs */
@keyframes glowPulse {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.4);
  }

  50% {
    box-shadow: 0 0 40px rgba(249, 115, 22, 0.7), 0 0 80px rgba(249, 115, 22, 0.3);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes scrollDown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(8px);
  }
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes particleFade {
  0% {
    opacity: 0;
    transform: scale(0) translateY(0);
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: scale(1.5) translateY(-200px);
  }
}

/* Gradient shimmer for hero text */
@keyframes gradientShimmer {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Pulse ring for WhatsApp float */
@keyframes pulseRing {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }

  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Icon pulse on hover */
@keyframes iconPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.12);
  }
}

/* Shine sweep for testimonial cards */
@keyframes shineSweep {
  0% {
    left: -80%;
  }

  100% {
    left: 120%;
  }
}

/* Step dot pulse */
@keyframes dotPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.6);
    opacity: 0.5;
  }
}

/* Subtle bounce for scroll indicator */
@keyframes gentleBounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-6px);
  }
}

/* Section tag shimmer */
@keyframes tagShimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 14px 28px;
  font-family: var(--font-primary);
  font-size: var(--fs-base);
  font-weight: 600;
  border: 2px solid transparent;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn-primary {
  background: var(--gradient-cta);
  color: #fff;
  border-color: transparent;
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}

.btn-primary:hover::after {
  left: 120%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg), 0 0 30px rgba(249, 115, 22, 0.25);
  color: #fff;
}

.btn-primary:active {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-glow {
  animation: glowPulse 2.5s infinite;
}

.btn-glow:hover {
  animation: none;
  box-shadow: 0 0 50px rgba(249, 115, 22, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border-color);
}

.btn-outline:hover {
  border-color: var(--brand-orange);
  color: var(--brand-orange);
  background: rgba(249, 115, 22, 0.08);
}

.btn-white {
  background: #fff;
  color: var(--brand-deep);
  border-color: #fff;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--brand-deep);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline-white:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.btn-sm {
  padding: 10px 20px;
  font-size: var(--fs-sm);
}

.btn-full {
  width: 100%;
}

.btn-submit {
  font-size: var(--fs-lg);
  padding: 16px 32px;
}

/* ---------- ANNOUNCEMENT BAR ---------- */
.announcement-bar {
  background: var(--gradient-brand);
  color: #fff;
  padding: 10px 0;
  font-size: var(--fs-sm);
  font-weight: 500;
  position: relative;
  z-index: var(--z-header);
}

.announcement-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.btn-announcement {
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: var(--fs-xs);
  transition: all var(--transition-fast);
}

.btn-announcement:hover {
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
}

/* ---------- HEADER ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--transition-base);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

/* ── Liquid Glass header on scroll (mobile-first, subtle) ─────── */
@media (max-width: 768px) {
  .header {
    position: sticky;
    top: 0;
    transition: background 0.3s ease, backdrop-filter 0.3s ease,
                box-shadow 0.3s ease, border-color 0.3s ease;
  }

  /* Resting state — light glass */
  .header:not(.scrolled) {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  }

  [data-theme="dark"] .header:not(.scrolled) {
    background: rgba(15, 15, 20, 0.68);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  /* Scrolled state — deeper glass with liquid shimmer */
  .header.scrolled {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(24px) saturate(200%) brightness(1.06);
    -webkit-backdrop-filter: blur(24px) saturate(200%) brightness(1.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow:
      0 4px 24px rgba(0, 0, 0, 0.08),
      0 1px 0 rgba(255, 255, 255, 0.8) inset,
      0 -1px 0 rgba(255, 255, 255, 0.3) inset;
  }

  [data-theme="dark"] .header.scrolled {
    background: rgba(12, 12, 18, 0.60);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
      0 4px 24px rgba(0, 0, 0, 0.35),
      0 1px 0 rgba(255, 255, 255, 0.06) inset;
  }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: var(--space-lg);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  flex-shrink: 0;
}

.logo img {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-name {
  font-size: var(--fs-lg);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.logo-tagline {
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--brand-orange);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* Desktop Nav */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.nav-link {
  padding: 8px 14px;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--brand-orange);
  background: rgba(249, 115, 22, 0.08);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.toggle-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
  font-size: var(--fs-sm);
  font-weight: 700;
}

.toggle-btn:hover {
  border-color: var(--brand-orange);
  color: var(--brand-orange);
}

.toggle-btn svg {
  width: 18px;
  height: 18px;
}

/* Theme toggle icon logic */
.icon-moon {
  display: none;
}

[data-theme="dark"] .icon-sun {
  display: none;
}

[data-theme="dark"] .icon-moon {
  display: block;
}

.lang-label {
  font-size: 14px;
  font-weight: 700;
}

.btn-header-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 8px 18px;
  background: var(--gradient-cta);
  color: #fff;
  font-size: var(--fs-sm);
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  text-decoration: none;
}

.btn-header-cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  color: #fff;
}

.btn-header-cta .btn-icon {
  width: 16px;
  height: 16px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav */
.nav-mobile {
  display: none;
  flex-direction: column;
  padding: var(--space-lg);
  background: var(--bg-card);
  border-top: 1px solid var(--border-color);
  gap: var(--space-xs);
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile .nav-link {
  padding: 12px 16px;
  font-size: var(--fs-base);
}

.btn-mobile-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  margin-top: var(--space-sm);
  background: var(--gradient-cta);
  color: #fff;
  font-weight: 600;
  border-radius: var(--radius-md);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  background: url('/wp-content/themes/theme-fixed/assets/hero_drone.png') center/cover no-repeat;
  color: #fff;
  padding: var(--space-4xl) 0 var(--space-3xl);
  overflow: hidden;
  min-height: 78vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14, 23, 38, 0.92) 0%, rgba(14, 23, 38, 0.7) 40%, rgba(20, 184, 166, 0.35) 100%);
  z-index: 1;
}

.hero>* {
  z-index: 2;
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-solar);
  opacity: 0;
  animation: particleFade 4s infinite;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 80%, rgba(249, 115, 22, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(251, 191, 36, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 90%, rgba(34, 197, 94, 0.06) 0%, transparent 40%);
  pointer-events: none;
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  pointer-events: none;
  z-index: 1;
}

.hero-orbit-1 {
  width: 380px;
  height: 380px;
  top: -120px;
  right: -80px;
  animation: orbitSpin 24s linear infinite;
}

.hero-orbit-2 {
  width: 260px;
  height: 260px;
  bottom: -90px;
  left: -40px;
  animation: orbitSpin 18s linear infinite reverse;
}

@keyframes orbitSpin {
  100% {
    transform: rotate(360deg);
  }
}

/* Earth / Nature elements */
.hero-earth-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.earth-leaf {
  position: absolute;
  opacity: 0.7;
}

.earth-leaf-1 {
  width: 120px;
  height: 120px;
  top: 10%;
  right: 8%;
  animation: float 8s ease-in-out infinite, leafSpin 20s linear infinite;
}

.earth-leaf-2 {
  width: 180px;
  height: 180px;
  bottom: 5%;
  left: 3%;
  animation: float 10s ease-in-out infinite 2s;
}

.earth-leaf-3 {
  width: 60px;
  height: 60px;
  top: 60%;
  right: 25%;
  animation: float 6s ease-in-out infinite 1s;
}

@keyframes leafSpin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Hero Slogan */
.hero-slogan {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.12), rgba(34, 197, 94, 0.06));
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: var(--radius-full);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: #86efac;
  letter-spacing: 0.04em;
  margin-bottom: var(--space-md);
}

.hero-slogan svg {
  width: 16px;
  height: 16px;
  color: #22c55e;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 8px 18px;
  background: rgba(249, 115, 22, 0.15);
  border: 1px solid rgba(249, 115, 22, 0.3);
  border-radius: var(--radius-full);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--brand-solar);
  margin-bottom: var(--space-lg);
}

.hero-badge svg {
  width: 16px;
  height: 16px;
}

.hero-title {
  font-size: var(--fs-hero);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-lg);
}

.hero-highlight {
  color: var(--brand-solar);
}

.hero-gradient-text {
  background: linear-gradient(135deg, #f97316 0%, #fbbf24 30%, #f59e0b 60%, #f97316 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShimmer 4s ease-in-out infinite;
}

.hero-subtitle {
  font-size: var(--fs-lg);
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: var(--space-xl);
  max-width: 540px;
}

/* USP Chips */
.hero-usps {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-2xl);
}

.usp-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: #e2e8f0;
  backdrop-filter: blur(8px);
  transition: all var(--transition-base);
}

.usp-chip:hover {
  background: rgba(249, 115, 22, 0.2);
  border-color: rgba(249, 115, 22, 0.4);
  transform: translateY(-2px);
}

.usp-chip svg {
  width: 16px;
  height: 16px;
  color: var(--brand-solar);
}

/* Hero CTAs */
.hero-ctas {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-2xl);
}

.hero .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.05);
}

.hero .btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.8);
  color: #fff;
}

/* Trust Badges - Redesigned */
.hero-trust-badges {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding-top: var(--space-xl);
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: 12px 20px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}
.trust-badge:hover {
  transform: translateY(-3px);
  border-color: rgba(34, 197, 94, 0.3);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}
.trust-badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.15);
  color: var(--brand-solar);
}
.trust-badge-icon svg { width: 22px; height: 22px; }
.trust-badge-info {
  display: flex;
  flex-direction: column;
}
.trust-badge-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}
.trust-badge-label {
  font-size: var(--fs-xs);
  color: #94a3b8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hero Form */
.hero-form-wrapper {
  position: relative;
}

.hero-tilt-layer {
  transform-style: preserve-3d;
  transition: transform 280ms ease, box-shadow 280ms ease;
  will-change: transform;
}

.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-xl);
  color: var(--text-primary);
  transition: border-color var(--transition-slow), box-shadow var(--transition-slow);
}

.form-card:hover {
  border-color: rgba(249, 115, 22, 0.3);
  box-shadow: var(--shadow-xl), 0 0 40px rgba(249, 115, 22, 0.08);
}

.form-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.form-trust-inline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: var(--space-md);
}

.form-trust-inline span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-subtle);
  background: var(--bg-secondary);
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--text-secondary);
}

.form-trust-inline svg {
  width: 14px;
  height: 14px;
  color: var(--brand-green);
}

.form-badge-free {
  display: inline-block;
  padding: 4px 16px;
  background: rgba(34, 197, 94, 0.12);
  color: var(--brand-green);
  font-size: var(--fs-xs);
  font-weight: 700;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
  margin-bottom: var(--space-sm);
}

.form-title {
  font-size: var(--fs-2xl);
  font-weight: 800;
  margin-bottom: var(--space-xs);
}

.form-subtitle {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
}

/* Form Fields */
.lead-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form-group label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-wrapper svg {
  position: absolute;
  left: 14px;
  width: 18px;
  height: 18px;
  color: var(--text-tertiary);
  pointer-events: none;
}

.input-wrapper input,
.input-wrapper select {
  width: 100%;
  padding: 12px 14px 12px 44px;
  font-family: var(--font-primary);
  font-size: var(--fs-base);
  color: var(--text-primary);
  background: var(--input-bg);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  outline: none;
  transition: all var(--transition-fast);
  appearance: none;
  -webkit-appearance: none;
}

.input-wrapper input:focus,
.input-wrapper select:focus {
  border-color: var(--brand-orange);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
}

.input-wrapper input::placeholder {
  color: var(--text-tertiary);
}

/* Select arrow */
.input-wrapper select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-disclaimer {
  font-size: var(--fs-xs);
  color: var(--text-tertiary);
  text-align: center;
  margin-top: var(--space-xs);
}

.form-social-proof {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 8px;
}

.proof-chip {
  font-size: var(--fs-xs);
  text-align: center;
  color: var(--text-secondary);
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 8px;
}

.why-us .section-subtitle {
  max-width: 740px;
}

.why-card h3 {
  font-size: 1.1rem;
}

.why-card p {
  font-size: 0.95rem;
  line-height: 1.65;
}

.form-disclaimer a {
  text-decoration: underline;
}

/* Form Success */
.form-success {
  text-align: center;
  padding: var(--space-2xl);
}

.success-icon svg {
  width: 64px;
  height: 64px;
  color: var(--brand-green);
  margin-bottom: var(--space-md);
}

.form-success h3 {
  font-size: var(--fs-2xl);
  margin-bottom: var(--space-sm);
}

.form-success p {
  color: var(--text-secondary);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  animation: gentleBounce 2s ease-in-out infinite;
}

.scroll-mouse {
  width: 26px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
  transition: border-color var(--transition-base);
}

.scroll-indicator:hover .scroll-mouse {
  border-color: rgba(255, 255, 255, 0.6);
}

.scroll-dot {
  width: 4px;
  height: 8px;
  background: #fff;
  border-radius: 4px;
  animation: scrollDown 1.5s infinite;
}

/* ---------- PARTNER TRUST STRIP ---------- */
.partner-strip {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: var(--space-2xl) 0;
}

.partner-strip-label {
  text-align: center;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-lg);
}

.partner-strip-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.strip-logo {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-base);
}

.strip-logo:hover {
  transform: scale(1.15);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-orange);
}

.strip-logo img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: grayscale(0%);
  transition: filter var(--transition-base);
}

.strip-logo:hover img {
  filter: grayscale(0%);
}

.strip-logo-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
}

.strip-divider {
  width: 1px;
  height: 36px;
  background: var(--border-color);
  flex-shrink: 0;
  margin: 0 var(--space-sm);
}

/* Real Logo containers (for Banking & Solar Partner sections) */
.bank-logo-real {
  width: 88px;
  height: 88px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-sm);
  background: #fff;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all var(--transition-base);
}

.bank-card:hover .bank-logo-real {
  transform: scale(1.08);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-orange);
}

.bank-logo-real img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.bank-logo-real span {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: var(--fs-lg);
  font-weight: 800;
}

.partner-logo-real {
  width: 76px;
  height: 76px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-xs);
  background: #fff;
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  transition: all var(--transition-base);
}

.partner-card:hover .partner-logo-real {
  transform: scale(1.1);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-orange);
}

.partner-logo-real img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.partner-logo-real span {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

/* ---------- TRUST MARQUEE ---------- */
.trust-marquee {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 14px 0;
  overflow: hidden;
}

.marquee-track {
  overflow: hidden;
}

.marquee-content {
  display: flex;
  gap: var(--space-2xl);
  white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text-secondary);
}

.marquee-item svg {
  width: 16px;
  height: 16px;
  color: var(--brand-orange);
}

/* ---------- SECTION COMMON ---------- */
.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-tag {
  display: inline-block;
  padding: 6px 18px;
  background: linear-gradient(90deg, rgba(249, 115, 22, 0.12), rgba(251, 191, 36, 0.15), rgba(249, 115, 22, 0.12));
  background-size: 200% auto;
  color: var(--brand-orange);
  font-size: var(--fs-sm);
  font-weight: 600;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
  letter-spacing: 0.02em;
  border: 1px solid rgba(249, 115, 22, 0.15);
  transition: all var(--transition-base);
}

.is-visible .section-tag {
  animation: tagShimmer 3s ease-in-out 1;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
}

.section-subtitle {
  font-size: var(--fs-lg);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ---------- WHY CHOOSE US ---------- */
.why-us {
  padding: var(--space-section) 0;
  background: var(--bg-primary);
}

.why-grid {
  display: flex;
  gap: var(--space-xl);
}

.why-swiper {
  overflow: hidden;
  max-width: 1180px;
  margin: 0 auto;
}

.why-swiper .swiper-slide {
  height: auto;
  display: flex;
}

.why-pagination {
  margin-top: var(--space-lg);
  text-align: center;
  display: block;
}


.why-card {
  padding: var(--space-2xl);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  width: 100%;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(249, 115, 22, 0.15);
  border-color: rgba(249, 115, 22, 0.4);
}

.why-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  background: rgba(249, 115, 22, 0.1);
  border-radius: var(--radius-md);
  color: var(--brand-orange);
  transition: all var(--transition-base);
}

.why-card:hover .why-icon {
  background: var(--gradient-cta);
  color: #fff;
  animation: iconPulse 0.6s ease;
}

.why-icon svg {
  width: 28px;
  height: 28px;
}

.why-card h3 {
  font-size: var(--fs-xl);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.why-card p {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ---------- FORM TABS ---------- */
.form-tabs {
  display: flex;
  gap: 4px;
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  padding: 4px;
  margin-bottom: var(--space-lg);
}

.form-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 16px;
  border: none;
  background: transparent;
  color: var(--text-secondary);
  font-family: var(--font-primary);
  font-size: var(--fs-sm);
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.form-tab svg {
  width: 16px;
  height: 16px;
}

.form-tab.active {
  background: var(--brand-orange);
  color: #fff;
  box-shadow: 0 2px 8px rgba(249, 115, 22, 0.3);
}

.form-tab:not(.active):hover {
  background: var(--bg-tertiary);
}

/* ---------- GOVT SCHEME SECTION ---------- */
.govt-scheme {
  padding: var(--space-section) 0;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.bg-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(249, 115, 22, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249, 115, 22, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  animation: gridFloat 20s linear infinite;
}

@keyframes gridFloat {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 60px 60px;
  }
}

.scheme-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
  max-width: 100%;
  overflow: hidden;
}

.scheme-leaders {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.leader-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  transition: all var(--transition-base);
  max-width: 100%;
  overflow: hidden;
}

.leader-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-orange);
}

.leader-photo-placeholder {
  width: 120px;
  height: 120px;
  margin: 0 auto var(--space-md);
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 3px solid var(--brand-orange);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-tertiary);
  font-size: var(--fs-xs);
  overflow: hidden;
}

.leader-photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leader-photo-placeholder svg {
  width: 48px;
  height: 48px;
}

.leader-card h4 {
  font-size: var(--fs-lg);
  font-weight: 700;
  margin-bottom: 2px;
}

.leader-card>p:not(.leader-quote) {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
}

.leader-quote {
  font-size: var(--fs-sm);
  color: var(--brand-orange);
  font-style: italic;
  line-height: 1.6;
}

.scheme-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  min-width: 0;
}

/* Trust Badges - Redesigned */
.hero-trust-badges {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding-top: var(--space-xl);
  flex-wrap: wrap;
}

.scheme-benefit-card {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  transition: var(--transition-base);
}

.scheme-benefit-card.highlight {
  border-left: 4px solid var(--brand-orange);
  background: rgba(249, 115, 22, 0.03);
}

.scheme-benefit-card.highlight-alt {
  border-left: 4px solid #005a9c; /* UPNEDA Blue */
  background: rgba(0, 90, 156, 0.03);
}

.upneda-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  background: #f0fdf4;
  border: 1px dashed #22c55e;
  border-radius: var(--radius-md);
  color: #15803d;
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: var(--space-md);
}

.scheme-benefit-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(249, 115, 22, 0.1);
  border-radius: var(--radius-md);
  color: var(--brand-orange);
  flex-shrink: 0;
}

.scheme-benefit-icon svg {
  width: 24px;
  height: 24px;
}

.scheme-benefit-card h4 {
  font-size: var(--fs-lg);
  font-weight: 700;
  margin-bottom: 2px;
  overflow-wrap: anywhere;
}

.scheme-amount {
  font-size: var(--fs-2xl);
  font-weight: 800;
  color: var(--brand-orange);
  overflow-wrap: anywhere;
}

.scheme-amount span {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--text-secondary);
}

.scheme-note {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  margin-top: 2px;
}

/* ---------- BANKING PARTNERS ---------- */
.banking-partners {
  padding: var(--space-section) 0;
  background: var(--bg-secondary);
}

.bank-grid {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
  margin-bottom: var(--space-2xl);
}

.bank-card {
  text-align: center;
  transition: all var(--transition-base);
}

.bank-card:hover {
  transform: translateY(-4px);
}

.bank-logo {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-sm);
  color: #fff;
  font-size: var(--fs-lg);
  font-weight: 800;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.bank-card:hover .bank-logo {
  transform: scale(1.1);
  box-shadow: var(--shadow-lg);
}

.bank-card p {
  font-size: var(--fs-xs);
  color: var(--text-secondary);
  font-weight: 500;
  max-width: 100px;
}

.bank-bottom {
  display: flex;
  justify-content: center;
  gap: var(--space-2xl);
  flex-wrap: wrap;
}

.bank-feature {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text-secondary);
}

.bank-feature svg {
  width: 18px;
  height: 18px;
  color: var(--brand-green);
}

/* ---------- SOLAR PANEL PARTNERS ---------- */
.solar-partners {
  padding: var(--space-section) 0;
  background: var(--bg-primary);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: var(--space-lg);
  max-width: 900px;
  margin: 0 auto;
}

.partner-card {
  text-align: center;
  transition: all var(--transition-base);
}

.partner-card:hover {
  transform: translateY(-4px);
}

.partner-logo {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-xs);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.partner-card:hover .partner-logo {
  transform: scale(1.12);
  box-shadow: var(--shadow-md);
}

.partner-card p {
  font-size: var(--fs-xs);
  color: var(--text-secondary);
  font-weight: 500;
}

/* ---------- TEAM SECTION ---------- */
.team-section {
  padding: var(--space-section) 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.bg-solar-rays {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(249, 115, 22, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
}

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  text-align: center;
  transition: all var(--transition-base);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-orange);
}

.team-photo {
  width: 140px;
  height: 140px;
  margin: 0 auto var(--space-lg);
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--brand-orange);
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.2);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.team-card:hover .team-photo img {
  transform: scale(1.08);
}

.team-card h4 {
  font-size: var(--fs-lg);
  font-weight: 700;
  margin-bottom: 2px;
}

.team-role {
  font-size: var(--fs-sm);
  color: var(--brand-orange);
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.team-quote {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.6;
}

/* Office Section */
.office-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  overflow: hidden;
  max-width: 100%;
  margin: 0 auto;
}

.office-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 300px;
}

.office-info {
  padding: var(--space-2xl);
  min-width: 0;
}

.office-info h3 {
  font-size: var(--fs-2xl);
  font-weight: 800;
  margin-bottom: var(--space-sm);
}

.office-info>p {
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.office-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.office-details div {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  overflow-wrap: anywhere;
}

.office-details svg {
  width: 18px;
  height: 18px;
  color: var(--brand-orange);
  flex-shrink: 0;
}

.office-details a {
  color: var(--text-primary);
  text-decoration: none;
}

.office-details a:hover {
  color: var(--brand-orange);
}

/* ---------- SERVICES ---------- */
.services {
  padding: var(--space-section) 0;
  background: var(--bg-secondary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), 0 8px 30px rgba(249, 115, 22, 0.1);
  border-color: rgba(249, 115, 22, 0.3);
}

.service-img {
  height: 200px;
  overflow: hidden;
  background: var(--bg-tertiary);
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-img img {
  transform: scale(1.08);
}

.service-body {
  padding: var(--space-xl);
}

.service-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(249, 115, 22, 0.1);
  border-radius: var(--radius-sm);
  color: var(--brand-orange);
  margin-bottom: var(--space-md);
}

.service-icon svg {
  width: 22px;
  height: 22px;
}

.service-body h3 {
  font-size: var(--fs-xl);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.service-body p {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

/* ---------- SOLAR CALCULATOR ---------- */
.calculator {
  padding: var(--space-section) 0;
  background: var(--bg-primary);
}

.calc-wrapper {
  max-width: 640px;
  margin: 0 auto;
}

.calc-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
}

.calc-input-section {
  margin-bottom: var(--space-2xl);
}

.calc-label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
}

.calc-slider-wrapper {
  position: relative;
  margin-bottom: var(--space-xl);
}

.calc-slider {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: var(--bg-tertiary);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--brand-orange);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(249, 115, 22, 0.4);
  transition: transform var(--transition-fast);
}

.calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.calc-slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 50%;
  background: var(--brand-orange);
  cursor: pointer;
}

.calc-bill-display {
  text-align: center;
  font-size: var(--fs-3xl);
  font-weight: 800;
  color: var(--brand-orange);
  margin-top: var(--space-md);
}

.calc-system-display {
  text-align: center;
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: var(--text-primary);
  padding: var(--space-md);
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
}

.calc-results {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.calc-result-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-base);
}

.calc-result-item:hover {
  border-color: var(--brand-orange);
}

.calc-result-item.highlight {
  background: rgba(249, 115, 22, 0.08);
  border-color: rgba(249, 115, 22, 0.2);
}

.calc-result-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(249, 115, 22, 0.1);
  border-radius: var(--radius-sm);
  color: var(--brand-orange);
  flex-shrink: 0;
}

.calc-result-icon svg {
  width: 20px;
  height: 20px;
}

.calc-result-value {
  display: block;
  font-size: var(--fs-xl);
  font-weight: 800;
  color: var(--text-primary);
}

.calc-result-label {
  font-size: var(--fs-xs);
  color: var(--text-secondary);
}

/* New Calculator Layout */
.calc-metrics-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.calc-metric {
  background: var(--bg-secondary);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  text-align: center;
}

.calc-label-sm {
  display: block;
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.calc-metric-value {
  font-size: var(--fs-xl);
  font-weight: 800;
  color: var(--text-primary);
}

.calc-results-new {
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-xl);
}

.result-main {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.result-circle {
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: var(--gradient-brand);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 32px rgba(249, 115, 22, 0.3);
}

.result-circle span {
  font-size: var(--fs-lg);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.result-circle small {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.85);
  font-weight: 600;
}

.result-breakdown {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  flex: 1;
}

.breakdown-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.breakdown-item span {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
}

.breakdown-item strong {
  font-size: var(--fs-base);
  font-weight: 700;
  color: var(--brand-orange);
}

.result-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.stat-box {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.stat-box svg {
  width: 24px;
  height: 24px;
  color: var(--brand-green);
  flex-shrink: 0;
}

.stat-info {
  display: flex;
  flex-direction: column;
}

.stat-info span {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--text-primary);
}

.stat-info small {
  font-size: var(--fs-xs);
  color: var(--text-secondary);
}


/* ---------- HOW IT WORKS ---------- */
.how-it-works {
  padding: var(--space-section) 0;
  background: var(--bg-secondary);
}

.steps-timeline {
  display: flex;
  position: relative;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  gap: var(--space-md);
  perspective: 1000px;
}

/* Background Progress Line */
.timeline-progress-bar {
  position: absolute;
  top: 25px; /* Aligns roughly with center of step numbers */
  left: 10%;
  right: 10%;
  height: 2px;
  background: rgba(255, 255, 255, 0.05);
  z-index: 0;
}

.timeline-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--brand-solar), var(--brand-amber), transparent);
  width: 0;
  animation: progressTimeline 4s ease-in-out infinite;
}

@keyframes progressTimeline {
  0% { transform: translateX(-100%); width: 50%; opacity: 0; }
  50% { opacity: 1; }
  100% { transform: translateX(200%); width: 50%; opacity: 0; }
}

.step-card {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.step-card:hover {
  transform: translateY(-10px) rotateX(8deg);
}

.step-number-3d {
  position: relative;
  width: 50px;
  height: 50px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-num-face {
  z-index: 2;
  font-size: 1.25rem;
  font-weight: 900;
  color: #fff;
  background: var(--gradient-cta);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
  transition: transform var(--transition-base);
}

.step-card:hover .step-num-face {
  transform: translateZ(25px) scale(1.1);
}

.step-ring {
  position: absolute;
  inset: 0;
  border: 2px dashed rgba(249, 115, 22, 0.4);
  border-radius: 50%;
  animation: spinRing 12s linear infinite;
}

.step-pulse {
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: 50%;
  animation: pulseOuter 2.5s ease-out infinite;
}

@keyframes spinRing {
  100% { transform: rotate(360deg); }
}

@keyframes pulseOuter {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

.step-content-3d {
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-xl);
  padding: var(--space-lg) var(--space-md);
  transition: all var(--transition-base);
  min-height: 220px;
}

.step-card:hover .step-content-3d {
  background: rgba(30, 41, 59, 0.7);
  border-color: rgba(249, 115, 22, 0.3);
  transform: translateZ(10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.step-icon {
  width: 48px;
  height: 48px;
  background: rgba(34, 197, 94, 0.1);
  color: var(--brand-solar);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  transition: transform var(--transition-base), color var(--transition-base);
}

.step-icon svg { width: 22px; height: 22px; }

.step-card:hover .step-icon {
  transform: translateZ(15px) scale(1.1);
  color: var(--brand-green);
}

.step-card h3 {
  font-size: var(--fs-md);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.step-card p {
  font-size: var(--fs-sm);
  color: #94a3b8;
  line-height: 1.5;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
  padding: var(--space-section) 0;
  background: var(--bg-primary);
}

.testimonials-carousel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.04), transparent);
  pointer-events: none;
}

.testimonial-card:hover::before {
  animation: shineSweep 0.8s ease-out;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(249, 115, 22, 0.1);
  border-color: rgba(249, 115, 22, 0.25);
}

.testimonial-stars {
  color: var(--brand-amber);
  font-size: var(--fs-lg);
  margin-bottom: var(--space-md);
}

.testimonial-text {
  font-size: var(--fs-base);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-sm);
}

.author-avatar {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-brand);
  color: #fff;
  font-weight: 700;
  font-size: var(--fs-lg);
  border-radius: 50%;
}

.author-name {
  display: block;
  font-weight: 600;
  font-size: var(--fs-sm);
}

.author-location {
  font-size: var(--fs-xs);
  color: var(--text-tertiary);
}

.testimonial-source {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--fs-xs);
  color: var(--text-tertiary);
}

.testimonial-source svg {
  width: 12px;
  height: 12px;
}

/* ---------- GALLERY ---------- */
.gallery {
  padding: var(--space-section) 0;
  background: var(--bg-secondary);
}

.gallery-swiper {
  padding: 50px 0;
}

.gallery-swiper .gallery-item {
  width: 320px;
  height: 420px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-2xl);
}

.gallery-swiper .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  border-radius: 0 0 var(--radius-2xl) var(--radius-2xl);
}

.gallery-overlay span {
  color: #fff;
  font-weight: 600;
  font-size: var(--fs-sm);
}

.gallery-pagination {
  bottom: 0 !important;
}

/* Districts Marquee */
.districts-marquee-wrapper {
  margin-top: 60px;
  text-align: center;
}

.marquee-label {
  font-size: var(--fs-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-tertiary);
  margin-bottom: 24px;
}

.districts-marquee {
  width: 100%;
  overflow: hidden;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  white-space: nowrap;
}

.marquee-content {
  display: inline-flex;
  gap: 40px;
  animation: marqueeDistricts 40s linear infinite;
}

.marquee-content span {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-secondary);
  position: relative;
}

.marquee-content span::after {
  content: ' • ';
  margin-left: 40px;
  color: var(--brand-orange);
  opacity: 0.5;
}

@keyframes marqueeDistricts {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .gallery-swiper .gallery-item {
    width: 260px;
    height: 340px;
  }
  
  .marquee-content {
    animation-duration: 25s;
  }
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-lg);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 40%, transparent 100%);
  color: #fff;
  font-size: var(--fs-sm);
  font-weight: 600;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- LOCATIONS ---------- */
.locations {
  padding: var(--space-section) 0;
  background: var(--bg-primary);
}

.locations-scroll-wrapper {
  margin-bottom: var(--space-xl);
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.locations-scroll-track {
  overflow: hidden;
  width: 100%;
}

.locations-scroll-content {
  display: flex;
  gap: var(--space-md);
  width: max-content;
  animation: scrollLocations 45s linear infinite;
}

.locations-scroll-content:hover {
  animation-play-state: paused;
}

@keyframes scrollLocations {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.location-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 10px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: var(--fs-sm);
  color: var(--text-primary);
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: default;
}

.location-chip:hover {
  border-color: var(--brand-orange);
  background: rgba(249, 115, 22, 0.08);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 4px 16px rgba(249, 115, 22, 0.12);
}

.location-chip svg {
  width: 16px;
  height: 16px;
  color: var(--brand-orange);
}

.locations-note {
  text-align: center;
  font-size: var(--fs-sm);
  color: var(--text-secondary);
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
  padding: var(--space-3xl) 0;
  background: var(--gradient-hero);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(249, 115, 22, 0.15) 0%, transparent 70%),
    radial-gradient(ellipse at 80% 80%, rgba(34, 197, 94, 0.08) 0%, transparent 50%);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2xl);
  position: relative;
  flex-wrap: wrap;
}

.cta-content {
  max-width: 560px;
}

.cta-content h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  margin-bottom: var(--space-md);
}

.cta-content p {
  color: #cbd5e1;
  font-size: var(--fs-base);
}

.cta-slogan {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: var(--space-md);
  padding: 6px 16px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: var(--radius-full);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: #86efac;
  letter-spacing: 0.03em;
}

.cta-slogan svg {
  width: 14px;
  height: 14px;
  color: #22c55e;
}

.cta-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* ---------- FAQ ---------- */
.faq-section {
  padding: var(--space-section) 0;
  background-color: var(--bg-primary);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .faq-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    max-width: 1000px;
  }
}

.faq-column {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.faq-item:hover {
  border-color: rgba(249, 115, 22, 0.4);
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.08);
}

.faq-item.active {
  border-color: var(--brand-orange);
  box-shadow: 0 4px 24px rgba(249, 115, 22, 0.12);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: var(--space-lg);
  background: transparent;
  border: none;
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--text-primary);
  font-family: var(--font-primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.faq-item.active .faq-question {
  color: var(--brand-orange);
}

.faq-question span {
  padding-right: var(--space-md);
  line-height: 1.4;
}

.faq-icon {
  width: 24px;
  height: 24px;
  color: var(--brand-orange);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  flex-shrink: 0;
  background: rgba(249, 115, 22, 0.08);
  border-radius: 50%;
  padding: 2px;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: rgba(249, 115, 22, 0.15);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  background: var(--bg-secondary);
}

.faq-answer p {
  padding: var(--space-sm) var(--space-lg) var(--space-lg);
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ---------- CONTACT ---------- */
.contact-section {
  padding: var(--space-section) 0;
  background: var(--bg-secondary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.contact-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.contact-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(249, 115, 22, 0.1);
  border-radius: var(--radius-md);
  color: var(--brand-orange);
  flex-shrink: 0;
}

.contact-icon svg {
  width: 22px;
  height: 22px;
}

.contact-item h4 {
  font-size: var(--fs-sm);
  font-weight: 700;
  margin-bottom: 2px;
}

.contact-item p,
.contact-item a {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
}

.contact-socials {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.social-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.social-link:hover {
  border-color: var(--brand-orange);
  background: rgba(249, 115, 22, 0.1);
  color: var(--brand-orange);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--brand-navy);
  color: #94a3b8;
  padding: var(--space-3xl) 0 var(--space-xl);
  border-top: 3px solid rgba(249, 115, 22, 0.35);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.footer-logo img {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
}

.footer .logo-name {
  color: #f1f5f9;
}

.footer .logo-tagline {
  color: var(--brand-orange);
}

.footer-about p {
  font-size: var(--fs-sm);
  line-height: 1.7;
}

.footer-col h4 {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: var(--space-lg);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-col ul a {
  font-size: var(--fs-sm);
  color: #94a3b8;
  display: inline-block;
  padding: 3px 0;
  transition: color var(--transition-fast);
}

.footer-col ul a:hover {
  color: var(--brand-orange);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: var(--fs-xs);
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer-slogan {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #86efac;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ---------- STICKY MOBILE CTA ---------- */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--z-float);
  background: var(--bg-card);
  border-top: 1px solid var(--border-color);
  padding: var(--space-sm);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.sticky-mobile-cta a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 8px;
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.sticky-mobile-cta a svg {
  width: 20px;
  height: 20px;
}

.sticky-call:hover {
  color: var(--brand-orange);
}

.sticky-whatsapp {
  color: #25D366 !important;
}

.sticky-survey {
  background: var(--gradient-cta) !important;
  color: #fff !important;
  border-radius: var(--radius-full) !important;
}

/* ---------- WHATSAPP FLOAT ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: var(--z-float);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-base);
  animation: float 3s ease-in-out infinite, pulseRing 3s ease-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.15);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
  color: #fff;
  animation: none;
}

@media (max-width: 768px) {
  .whatsapp-float {
    display: none !important;
  }
}

/* ---------- SOLAR PANEL PARTNERS MARQUEE ---------- */
.partners-marquee-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  white-space: nowrap;
  padding: var(--space-lg) 0;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.partners-marquee {
  display: inline-flex;
  gap: var(--space-2xl);
  animation: scrollMarquee 35s linear infinite;
  will-change: transform;
}

.partners-marquee:hover {
  animation-play-state: paused;
}

@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - (var(--space-2xl) / 2))); }
}

.partner-card {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 12px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  min-width: 88px;
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.partner-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(249, 115, 22, 0.15);
  border-color: rgba(249, 115, 22, 0.4);
}

.partner-logo-real img {
  height: 42px;
  width: auto;
  object-fit: contain;
  filter: grayscale(0%) opacity(1);
  transition: filter var(--transition-base), transform var(--transition-base);
}

.partner-card:hover .partner-logo-real img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

.partner-card p {
  display: none;
}

@media (min-width: 1025px) {
  .hero-inner {
    grid-template-columns: 1.15fr 0.95fr;
    gap: clamp(1.75rem, 3.8vw, 3.25rem);
  }

  .hero-content {
    max-width: 720px;
  }

  .hero-subtitle {
    max-width: 620px;
    font-size: 1.1rem;
  }

  .hero-form-wrapper {
    max-width: 520px;
    justify-self: end;
    width: 100%;
  }

  .hero-trust-badges {
    gap: var(--space-md);
    padding-top: var(--space-lg);
  }

  .trust-badge {
    padding: 10px 14px;
  }

  .why-card {
    min-height: 290px;
    padding: 28px 24px;
  }

  .scheme-grid {
    max-width: 1120px;
    margin: 0 auto;
    gap: var(--space-2xl);
  }

  .office-section {
    max-width: 1120px;
  }

  .partners-marquee {
    gap: var(--space-lg);
  }

  .partner-card {
    min-width: 120px;
    padding: 12px 14px;
  }

  .partner-logo-real img {
    height: 50px;
  }

  .services,
  .govt-scheme,
  .banking-partners,
  .solar-partners,
  .team-section,
  .how-it-works,
  .testimonials,
  .gallery-section,
  .locations,
  .faq-section,
  .contact {
    padding: clamp(64px, 8vh, 96px) 0;
  }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .nav-desktop {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .btn-header-cta span {
    display: none;
  }

  .btn-header-cta {
    padding: 10px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-subtitle {
    margin: 0 auto var(--space-xl);
  }

  .hero-usps {
    justify-content: center;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-trust-badges { justify-content: center; }

  .hero {
    min-height: auto;
    padding: var(--space-3xl) 0;
  }

  .why-grid {
    gap: var(--space-lg);
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-carousel {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .scheme-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .office-section {
    grid-template-columns: 1fr;
  }

  .partners-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .cta-inner {
    justify-content: center;
    text-align: center;
  }

  .cta-actions {
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .announcement-inner {
    font-size: 11px;
    flex-wrap: nowrap;
    gap: var(--space-xs);
    justify-content: space-between;
    padding: 0 var(--space-sm);
  }

  .announcement-inner p {
    white-space: nowrap;
    overflow: hidden;
    position: relative;
    width: 100%;
    margin: 0;
  }

  .announcement-inner p span {
    display: inline-block;
    padding-left: 100%;
    animation: scrollAnnouncement 15s linear infinite;
  }

  @keyframes scrollAnnouncement {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
  }

  .btn-announcement {
    white-space: nowrap;
    font-size: 10px;
    padding: 4px 12px;
    flex-shrink: 0;
    z-index: 2;
  }

  /* .header sticky + glass handled by the liquid-glass block above */
  .header-inner {
    height: 60px;
    gap: 8px;
  }

  .logo {
    gap: 6px;
  }

  .logo img {
    width: 34px;
    height: 34px;
  }

  .logo-title {
    font-size: 16px;
  }

  .logo-subtitle {
    font-size: 9px;
    letter-spacing: 1px;
  }

  .header-actions {
    gap: 6px;
  }

  .toggle-btn {
    width: 32px;
    height: 32px;
  }

  .toggle-btn svg {
    width: 16px;
    height: 16px;
  }

  .lang-label {
    font-size: 13px;
  }

  .btn-icon-mobile {
    display: none !important;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    width: 100%;
  }

  .hero-content {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .form-card {
    padding: var(--space-lg);
    margin: 0 -0.5rem;
    box-sizing: border-box;
    max-width: 100vw;
  }  .hero-title {
    font-size: clamp(1.85rem, 6vw, 2.2rem);
    line-height: 1.2;
    margin-bottom: var(--space-sm);
  }

  .hero-subtitle {
    font-size: 0.95rem;
    max-width: 100%;
    margin: 0 auto var(--space-lg);
    line-height: 1.5;
    padding: 0 var(--space-sm);
  }

  .hero-badge {
    display: inline-flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 0 auto var(--space-md);
    width: fit-content;
    text-align: center;
    font-size: 12px;
    padding: 6px 14px;
    line-height: 1.4;
  }

  .hero-usps {
    justify-content: center;
    gap: 6px;
  }

  .usp-chip {
    font-size: 11px;
    padding: 6px 12px;
  }

  .hero-ctas {
    justify-content: center;
    gap: 10px;
  }

  .hero-orbit {
    display: none;
  }

  .hero-tilt-layer {
    transform: none !important;
  }

  .hero .btn-primary, 
  .hero .btn-outline {
    font-size: 13px;
    padding: 10px 18px;
    width: 100%;
    max-width: 250px;
  }

  .why-grid {
    gap: var(--space-md);
  }

  .why-swiper {
    max-width: 340px;
    margin: 0 auto;
  }

  .why-swiper .swiper-slide {
    display: flex;
    justify-content: center;
  }

  .why-card {
    width: 100%;
    max-width: 320px;
    padding: var(--space-lg);
    margin: 0 auto;
  }

  .why-card h3 {
    font-size: var(--fs-lg);
  }

  .why-card p {
    font-size: var(--fs-xs);
    line-height: 1.55;
  }

  .why-pagination {
    display: block;
  }

  .step-connector {
    display: none;
  }

  .steps-timeline {
    flex-direction: column;
    gap: 40px;
    padding-left: 30px;
    position: relative;
  }

  .timeline-progress-bar {
    width: 3px;
    height: 100%;
    left: 10px;
    top: 0;
    transform: none;
  }

  .step-card {
    display: flex;
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    gap: 20px;
    background: transparent;
    padding: 0;
    box-shadow: none;
    border: none;
  }

  .step-number-3d {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
  }

  .step-num-face {
    font-size: 1.1rem;
  }

  .step-content-3d {
    background: var(--bg-card);
    padding: 20px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    flex: 1;
  }

  .step-icon {
    display: none; /* Icon redundant on mobile 3D layout */
  }

  .timeline-progress-fill {
    width: 100%;
    height: 50%;
    background: linear-gradient(180deg, transparent, var(--brand-orange), transparent);
    animation: progressTimelineVertical 3s ease-in-out infinite;
  }

  @keyframes progressTimelineVertical {
    0% { transform: translateY(-100%); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(200%); opacity: 0; }
  }

  .step-card {
    max-width: 100%;
    width: 100%;
  }

  .calc-card {
    padding: var(--space-lg);
  }

  .calc-results-new {
    width: 100%;
    overflow: hidden;
  }

  .result-stats {
    grid-template-columns: 1fr;
  }

  .stat-box {
    min-width: 0;
    padding: var(--space-md);
  }

  .stat-info {
    min-width: 0;
  }

  .stat-info span {
    font-size: var(--fs-base);
    overflow-wrap: anywhere;
  }

  .calculator .btn-full,
  .govt-scheme .btn-full {
    white-space: normal;
    line-height: 1.35;
    text-align: center;
    padding: 12px 16px;
  }

  .scheme-leaders {
    flex-direction: column;
  }

  .leader-card {
    width: 100%;
  }

  .scheme-grid {
    grid-template-columns: 1fr;
  }

  .scheme-benefit-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: var(--space-md);
  }

  .scheme-benefit-card > div {
    width: 100%;
  }

  .scheme-details .btn-full {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .bank-bottom {
    gap: var(--space-md);
  }

  .bank-bottom .bank-feature {
    font-size: var(--fs-xs);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }

  .office-section {
    width: 100%;
    max-width: 100%;
  }

  .office-photo,
  .office-info {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .office-photo img {
    min-height: 220px;
  }

  .office-details div,
  .office-info p,
  .office-info a {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .office-info .btn {
    width: 100%;
    max-width: 100%;
    white-space: normal;
    line-height: 1.35;
    text-align: center;
  }

  .whatsapp-float {
    bottom: 80px;
    right: 16px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .contact-map {
    height: 300px;
    margin: 0 -15px;
    border-radius: 0;
  }

  .contact-map iframe {
    height: 100% !important;
  }

  .result-main {
    flex-direction: column;
    text-align: center;
    gap: var(--space-md);
  }

  .result-circle {
    margin: 0 auto;
    width: 120px;
    height: 120px;
  }

  .result-breakdown {
    width: 100%;
    align-items: center;
  }

  .breakdown-item {
    align-items: center;
  }

  .sticky-mobile-cta {
    display: flex;
  }

  .form-social-proof {
    grid-template-columns: 1fr;
  }

  .form-trust-inline {
    display: none;
  }
}

@media (max-width: 480px) {
  .form-card {
    padding: var(--space-xl);
  }

  .hero-trust-badges { flex-direction: column; align-items: stretch; }
  .trust-badge { justify-content: flex-start; }

  .header-inner {
    height: 60px;
  }

  .logo img {
    width: 36px;
    height: 36px;
  }

  .logo-name {
    font-size: var(--fs-base);
  }

  .why-swiper {
    max-width: 300px;
  }

  .why-card {
    max-width: 280px;
    padding: 14px;
  }
}

/* ---------- PRINT ---------- */
@media print {

  .header,
  .announcement-bar,
  .sticky-mobile-cta,
  .whatsapp-float,
  .scroll-indicator,
  .hero-particles {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }
}

/* ============================================================
   V8 FIXES — All 8 Bugs Patched
   ============================================================ */

/* ---- FIX 1 & 5: Visible Logo Pills (brand strip + solar partners) ---- */
.partner-strip-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.strip-logo-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: #fff;
  min-width: 70px;
  min-height: 40px;
  box-shadow: var(--shadow-md);
  cursor: default;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  white-space: nowrap;
}

.strip-logo-pill:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--shadow-lg);
}

.strip-divider {
  width: 1px;
  height: 36px;
  background: var(--border-color);
  flex-shrink: 0;
  margin: 0 4px;
}

/* Solar partner logo pills marquee */
.partners-logo-marquee {
  display: flex;
  gap: 16px;
  animation: scrollMarquee 30s linear infinite;
  will-change: transform;
  width: max-content;
}

.partners-logo-marquee:hover {
  animation-play-state: paused;
}

.partner-logo-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: #fff;
  white-space: nowrap;
  min-height: 44px;
  box-shadow: var(--shadow-md);
  cursor: default;
  transition: transform var(--transition-fast);
}

.partner-logo-pill:hover {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

/* ---- FIX 2: Why Carousel — Single Card, Centered, Full Width ---- */

/* Override why-grid display:flex that was fighting Swiper */
.why-swiper .swiper-wrapper {
  align-items: stretch;
}

.why-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: stretch;
  height: auto;
}

.why-swiper .why-card {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Nav arrow styling for why carousel */
.why-btn-prev,
.why-btn-next {
  color: var(--brand-orange) !important;
}

.why-btn-prev::after,
.why-btn-next::after {
  font-size: 1.2rem !important;
  font-weight: 900;
}

/* ---- FIX 3: Leader Avatar Initials (PM/CM circles) ---- */
.leader-avatar-initials {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  box-shadow: 0 8px 24px rgba(249,115,22,0.3);
  border: 4px solid rgba(255,255,255,0.3);
  flex-shrink: 0;
}

/* Leader portrait photo (real images) */
.leader-avatar-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto var(--space-md);
  overflow: hidden;
  border: 4px solid rgba(255,153,51,0.6);
  box-shadow: 0 8px 28px rgba(249,115,22,0.35);
  flex-shrink: 0;
  background: linear-gradient(135deg, #FF9933 0%, #f97316 100%);
}
.leader-avatar-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* FIX 3: Govt scheme mobile overflow prevention */
.govt-scheme {
  overflow: hidden;
}

.scheme-grid {
  overflow: hidden;
  word-break: break-word;
}

.scheme-leaders {
  min-width: 0;
  max-width: 100%;
}

.leader-card {
  min-width: 0;
  box-sizing: border-box;
}

/* FIX 3 Mobile overflow for govt scheme */
@media (max-width: 768px) {
  .scheme-grid {
    grid-template-columns: 1fr !important;
    gap: var(--space-xl);
    padding: 0;
  }

  .scheme-leaders {
    flex-direction: column;
    gap: var(--space-lg);
  }

  .leader-card {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }

  .scheme-details {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .scheme-amount,
  .scheme-benefit-card h4 {
    font-size: var(--fs-lg) !important;
  }
}

/* ---- FIX 6: Office/Headquarter section overflow ---- */
.office-section {
  box-sizing: border-box;
  width: 100%;
  overflow: hidden;
}

@media (max-width: 768px) {
  .office-section {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    border-radius: var(--radius-lg);
  }

  .office-photo img {
    width: 100%;
    height: 220px;
    min-height: unset;
    object-fit: cover;
  }

  .office-info {
    padding: var(--space-lg);
    width: 100%;
    box-sizing: border-box;
    min-width: 0;
  }

  .office-info h3 {
    font-size: var(--fs-xl) !important;
    word-break: break-word;
  }

  .office-details div {
    flex-wrap: wrap;
    word-break: break-word;
    overflow-wrap: anywhere;
    font-size: var(--fs-xs);
  }
}

/* ---- FIX 7: Compact Solar Calculator ---- */
.calculator {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  background: var(--bg-secondary);
}

.calc-wrapper {
  max-width: 560px;
  margin: 0 auto;
}

.calc-card {
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
}

.calc-bill-display {
  font-size: var(--fs-2xl);
  font-weight: 800;
  color: var(--brand-orange);
  text-align: center;
  margin-top: var(--space-sm);
}

.calc-results {
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.calc-result-item {
  padding: var(--space-md);
}

.calc-result-value {
  font-size: var(--fs-lg);
}

/* Compact layout on mobile */
@media (max-width: 600px) {
  .calc-results {
    grid-template-columns: 1fr 1fr;
  }

  .calc-card {
    padding: var(--space-lg);
  }

  .result-main {
    flex-direction: column;
    text-align: center;
    gap: var(--space-md);
  }

  .result-circle {
    margin: 0 auto;
    width: 100px;
    height: 100px;
  }

  .result-breakdown {
    width: 100%;
  }

  .result-stats {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
  }

  .stat-box {
    flex-direction: column;
    text-align: center;
    gap: 6px;
    padding: var(--space-sm);
  }
}

/* ---- FIX 8: Premium Footer Redesign ---- */
.footer {
  background: linear-gradient(160deg, #0b1120 0%, #111827 50%, #0d1726 100%);
  color: #94a3b8;
  padding: var(--space-4xl) 0 var(--space-xl);
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, transparent, #f97316, #fbbf24, #f97316, transparent) 1;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(249,115,22,0.6) 30%, rgba(251,191,36,0.8) 50%, rgba(249,115,22,0.6) 70%, transparent);
}

.footer::after {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(249,115,22,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.footer-logo img {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(249,115,22,0.3);
}

.footer .logo-name {
  font-size: var(--fs-xl);
  font-weight: 900;
  background: linear-gradient(90deg, #fff 0%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer .logo-tagline {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--brand-orange);
  letter-spacing: 0.2em;
}

.footer-about .footer-desc {
  font-size: var(--fs-sm);
  line-height: 1.75;
  color: #64748b;
  margin-bottom: var(--space-lg);
  max-width: 300px;
}

/* Footer social icons */
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: var(--space-lg);
}

.footer-social-btn {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: #64748b;
  transition: all var(--transition-base);
  text-decoration: none;
}

.footer-social-btn:hover {
  background: rgba(249,115,22,0.15);
  border-color: rgba(249,115,22,0.3);
  color: var(--brand-orange);
  transform: translateY(-2px);
}

.footer-social-btn svg {
  width: 16px;
  height: 16px;
}

.footer-col h4 {
  font-size: var(--fs-xs);
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: var(--space-lg);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  position: relative;
  padding-bottom: var(--space-sm);
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--gradient-cta);
  border-radius: 2px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  font-size: var(--fs-sm);
  color: #475569;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 0;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.footer-col ul a::before {
  content: '→';
  color: var(--brand-orange);
  opacity: 0;
  transform: translateX(-6px);
  transition: all var(--transition-fast);
  font-size: var(--fs-xs);
}

.footer-col ul a:hover {
  color: var(--brand-orange);
  padding-left: 4px;
}

.footer-col ul a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* Contact info in footer */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: var(--fs-sm);
  color: #475569;
  margin-bottom: var(--space-md);
  line-height: 1.5;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--brand-orange);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item a {
  color: #475569;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-contact-item a:hover {
  color: var(--brand-orange);
}

/* Footer bottom bar */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: var(--fs-xs);
  color: #334155;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer-bottom p {
  color: #334155;
}

.footer-slogan {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #22c55e;
  font-weight: 600;
  font-size: var(--fs-xs);
  letter-spacing: 0.03em;
}

/* Footer trust badges */
.footer-trust-row {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255,255,255,0.04);
  flex-wrap: wrap;
}

.footer-trust-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-trust-chip svg {
  width: 14px;
  height: 14px;
  color: var(--brand-green);
}

/* Responsive footer */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer-about .footer-desc {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: var(--space-xs);
  }

  .footer-trust-row {
    justify-content: center;
  }
}


/* ============================================================
   V9 DESKTOP ENHANCEMENTS
   ============================================================ */
.impact-section{position:relative;background:linear-gradient(135deg,#0f172a 0%,#1e293b 60%,#1a1a2e 100%);padding:80px 0;overflow:hidden}
.impact-bg-glow{position:absolute;width:600px;height:600px;background:radial-gradient(circle,rgba(249,115,22,.12) 0%,transparent 70%);top:-150px;left:50%;transform:translateX(-50%);pointer-events:none}
.impact-header{text-align:center;margin-bottom:48px}
.impact-eyebrow{display:inline-block;background:rgba(249,115,22,.15);color:var(--brand-orange);border:1px solid rgba(249,115,22,.3);border-radius:100px;padding:6px 18px;font-size:.78rem;font-weight:600;letter-spacing:.08em;text-transform:uppercase;margin-bottom:16px}
.impact-header h2{color:#fff;font-size:clamp(1.6rem,3vw,2.4rem);font-weight:800;margin-bottom:12px}
.impact-header p{color:rgba(255,255,255,.55);font-size:1rem}
.impact-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:20px}
@media(min-width:768px){.impact-grid{grid-template-columns:repeat(3,1fr)}}
@media(min-width:1024px){.impact-grid{grid-template-columns:repeat(6,1fr);gap:16px}}
.impact-card{background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.08);border-radius:16px;padding:24px 16px 20px;text-align:center;transition:transform .3s ease,background .3s ease;position:relative;overflow:hidden}
.impact-card::before{content:'';position:absolute;inset:0;background:radial-gradient(circle at 50% -20%,var(--ring-color,rgba(249,115,22,.1)),transparent 70%);pointer-events:none}
.impact-card:hover{transform:translateY(-6px);background:rgba(255,255,255,.08)}
.impact-icon-ring{width:52px;height:52px;border-radius:50%;background:var(--ring-color,rgba(249,115,22,.15));display:flex;align-items:center;justify-content:center;margin:0 auto 14px;color:var(--icon-color,#f97316)}
.impact-icon-ring svg{width:22px;height:22px}
.impact-num{font-size:clamp(1.4rem,2.5vw,1.8rem);font-weight:800;color:#fff;line-height:1.1;margin-bottom:6px}
.impact-label{font-size:.8rem;font-weight:600;color:rgba(255,255,255,.8);margin-bottom:4px}
.impact-sub{font-size:.7rem;color:rgba(255,255,255,.4);margin-bottom:12px;line-height:1.4}
.impact-bar{height:4px;background:rgba(255,255,255,.1);border-radius:100px;overflow:hidden}
.impact-bar-fill{height:100%;background:linear-gradient(90deg,#f97316,#fbbf24);border-radius:100px;transition:width 1.2s ease}
.why-desktop-grid{display:none}
.why-mobile-carousel{display:block}
@media(min-width:1024px){.why-desktop-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:8px}.why-mobile-carousel{display:none}.why-desktop-grid .why-card{height:100%;display:flex;flex-direction:column}.why-desktop-grid .why-card p{flex:1}}
.why-card-tag{display:inline-block;margin-top:14px;padding:4px 12px;background:rgba(249,115,22,.1);border:1px solid rgba(249,115,22,.25);color:var(--brand-orange);border-radius:100px;font-size:.72rem;font-weight:600;letter-spacing:.03em;align-self:flex-start}
.calc-desktop-grid{display:flex;flex-direction:column;gap:24px;max-width:560px;margin:0 auto}
@media(min-width:1024px){.calc-desktop-grid{flex-direction:row;max-width:100%;align-items:stretch;gap:28px}.calc-desktop-grid .calc-card{flex:1;margin:0;max-width:none}.calc-input-panel,.calc-results-panel{display:flex;flex-direction:column}}
.calc-panel-header{display:flex;align-items:center;gap:10px;font-size:1rem;font-weight:700;color:var(--brand-orange);margin-bottom:20px;padding-bottom:12px;border-bottom:1px solid var(--border-color)}
.calc-panel-header svg{width:18px;height:18px}
.calc-roi-bar{margin:20px 0;padding:16px;background:rgba(249,115,22,.05);border:1px solid rgba(249,115,22,.15);border-radius:12px;flex:1}
.calc-roi-header{display:flex;justify-content:space-between;font-size:.85rem;font-weight:600;margin-bottom:12px;color:var(--text-secondary)}
.calc-roi-header strong{color:var(--brand-orange)}
.calc-roi-track{position:relative;height:10px;background:var(--border-color);border-radius:100px;margin-bottom:8px}
.calc-roi-fill{position:absolute;left:0;top:0;height:100%;background:linear-gradient(90deg,#f97316,#fbbf24);border-radius:100px;transition:width .6s ease}
.calc-roi-labels{display:flex;justify-content:space-between;font-size:.68rem;color:var(--text-tertiary);margin-top:6px}
.lifetime-bar-section{margin-top:auto;padding-top:20px;border-top:1px solid var(--border-color)}
.lifetime-label{display:flex;justify-content:space-between;font-size:.85rem;font-weight:600;color:var(--text-secondary);margin-bottom:10px}
.lifetime-label strong{color:var(--brand-orange);font-size:1rem}
.lifetime-progress{height:12px;background:var(--border-color);border-radius:100px;overflow:hidden;margin-bottom:8px}
.lifetime-fill{height:100%;width:60%;background:linear-gradient(90deg,#22c55e,#86efac);border-radius:100px;transition:width .8s ease}
.lifetime-note{font-size:.72rem;color:var(--text-tertiary)}
.comparison-section{padding:80px 0;background:var(--bg-section)}
.comparison-table-wrap{overflow-x:auto;border-radius:20px;box-shadow:0 4px 32px rgba(0,0,0,.08);border:1px solid var(--border-color)}
.comparison-table{width:100%;border-collapse:collapse;font-size:.9rem}
.comparison-table thead th{padding:18px 20px;font-weight:700;font-size:1rem;text-align:center;border-bottom:2px solid var(--border-color)}
.comp-feature-col{text-align:left!important;color:var(--text-secondary);background:var(--bg-card);width:28%}
.comp-solar-col{background:linear-gradient(180deg,rgba(249,115,22,.08),rgba(249,115,22,.03));color:var(--brand-orange);border-left:2px solid rgba(249,115,22,.3)}
.comp-solar-col svg,.comp-grid-col svg{width:16px;height:16px;margin-right:6px;vertical-align:middle}
.comp-grid-col{background:var(--bg-card);color:var(--text-secondary)}
.comparison-table tbody tr td{padding:14px 20px;border-bottom:1px solid var(--border-color);vertical-align:middle}
.comparison-table tbody tr td:first-child{font-weight:600;color:var(--text-primary);background:var(--bg-card)}
.comparison-table tbody .comp-solar{background:rgba(249,115,22,.04);border-left:2px solid rgba(249,115,22,.2);text-align:center}
.comparison-table tbody .comp-grid{text-align:center;background:var(--bg-card);color:var(--text-secondary)}
.comparison-table .comp-alt td{background:var(--bg-section)!important}
.comparison-table .comp-alt .comp-solar{background:rgba(249,115,22,.06)!important}
.comp-good{color:#16a34a;font-weight:600}
.comp-bad{color:#dc2626;font-weight:600}
.comparison-table tfoot td{padding:18px 20px;text-align:center}
.comparison-table tfoot .comp-solar{background:rgba(249,115,22,.06);border-left:2px solid rgba(249,115,22,.2)}
.comp-cta-col{text-align:center!important}
@media(max-width:767px){.comparison-section{padding:50px 0}.comparison-table{font-size:.8rem}.comparison-table thead th,.comparison-table tbody td,.comparison-table tfoot td{padding:10px 12px}}
.faq-desktop-layout{display:flex;flex-direction:column;gap:32px}
.faq-main-col{flex:1}
.faq-sidebar{display:none}
@media(min-width:1100px){.faq-desktop-layout{flex-direction:row;align-items:flex-start;gap:40px}.faq-main-col{flex:1;min-width:0}.faq-sidebar{display:block;width:320px;flex-shrink:0;position:sticky;top:100px}}
.faq-sidebar-card{background:var(--bg-card);border:1px solid var(--border-color);border-radius:20px;padding:28px 24px;box-shadow:0 8px 32px rgba(0,0,0,.07)}
.faq-sidebar-icon{width:52px;height:52px;background:linear-gradient(135deg,rgba(249,115,22,.15),rgba(251,191,36,.1));border-radius:14px;display:flex;align-items:center;justify-content:center;color:var(--brand-orange);margin-bottom:14px}
.faq-sidebar-icon svg{width:24px;height:24px}
.faq-sidebar-card h4{font-size:1rem;font-weight:700;color:var(--text-primary);margin-bottom:8px}
.faq-sidebar-card p{font-size:.85rem;color:var(--text-secondary);margin-bottom:14px;line-height:1.5}
.faq-sidebar-card .btn{width:100%;text-align:center;justify-content:center;font-size:.85rem}
.faq-sidebar-card .btn svg{width:15px;height:15px}
.faq-sidebar-divider{height:1px;background:var(--border-color);margin:20px 0}
.faq-sidebar-trust{margin-top:18px;display:flex;flex-direction:column;gap:8px}
.faq-sidebar-trust div{display:flex;align-items:center;gap:8px;font-size:.8rem;color:var(--text-secondary)}
.faq-sidebar-trust svg{width:14px;height:14px;color:var(--brand-orange);flex-shrink:0}
@media(min-width:1024px){.services .services-grid{grid-template-columns:repeat(4,1fr);gap:20px}.services .service-card{display:flex;flex-direction:column}.services .service-body{flex:1;display:flex;flex-direction:column}.services .service-body p{flex:1}.bank-grid{grid-template-columns:repeat(3,1fr);max-width:560px;margin:0 auto 32px}.strip-logo-pill{padding:12px 28px;font-size:1rem;min-width:100px}}

/* ============================================================
   REFINED HERO ANIMATIONS (Replaces busy particles)
   ============================================================ */
@keyframes smoothFadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up-1, .fade-up-2, .fade-up-3, .fade-up-4, .fade-up-5, .fade-up-6 {
  opacity: 0;
  animation: smoothFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.2s; }
.fade-up-3 { animation-delay: 0.3s; }
.fade-up-4 { animation-delay: 0.4s; }
.fade-up-5 { animation-delay: 0.5s; }
.fade-up-6 { animation-delay: 0.6s; }

/* Keep hero background clean and modern */
.hero {
  position: relative;
  overflow: hidden;
}

/* ============================================================
   V9.2 DESKTOP & WIZARD ENHANCEMENTS 
   ============================================================ */
/* Social Proof Header */
.social-proof-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
}
.avatar-group {
  display: flex;
  margin-right: 4px;
}
.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--surface);
  margin-left: -10px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.avatar:first-child { margin-left: 0; }
.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rating-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 0.75rem;
  color: var(--text-light);
  line-height: 1.2;
}
.stars {
  color: #F59E0B;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

/* Wizard Progress */
.wizard-progress {
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  margin-bottom: 8px;
  overflow: hidden;
}
.progress-bar-fill {
  height: 100%;
  background: var(--brand-orange);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.wizard-steps-indicator {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-light);
}
.step-dot.active {
  color: var(--brand-orange);
}

/* Wizard Steps */
.wizard-step {
  display: none;
  animation: smoothFadeUp 0.3s ease forwards;
}
.wizard-step.active {
  display: block;
}
/* Searchable Combobox */
.combobox-wrapper {
  position: relative;
}
.combobox-chevron {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  pointer-events: none;
}
.combobox-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  max-height: 280px; /* enough for ~5-6 items */
  overflow-y: auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  z-index: 100;
  margin-top: 4px;
  padding: 0;
  list-style: none;
  display: none;
}
.combobox-dropdown.active {
  display: block;
}
.combobox-dropdown li {
  padding: 12px 16px;
  cursor: pointer;
  border-bottom: 1px solid var(--border);
  transition: all 0.2s ease;
}
.combobox-dropdown li:last-child {
  border-bottom: none;
}
.combobox-dropdown li:hover, .combobox-dropdown li.selected {
  background: rgba(249, 115, 22, 0.05); /* very light orange */
  color: var(--brand-orange);
}
.combobox-dropdown .no-results {
  padding: 12px 16px;
  color: var(--text-light);
  font-style: italic;
  cursor: default;
}
.combobox-dropdown .no-results:hover {
  background: var(--bg-card);
  color: var(--text-light);
}

.wizard-actions {
  display: flex;
  gap: 16px; /* increased gap slightly */
  margin-top: 48px; /* increased from 32px to add space */
  padding-top: 24px; /* increased from 16px to add breathing room */
  border-top: 1px solid var(--border);
}
.wizard-actions .btn {
  flex: 1;
}

/* Dynamic Savings Alert */
.dynamic-savings-alert {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #166534;
  border-radius: 8px;
  padding: 12px;
  margin: 16px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  animation: smoothFadeUp 0.3s ease;
}
.dynamic-savings-alert.hidden {
  display: none !important;
}
.dynamic-savings-alert strong {
  font-size: 1.05rem;
  color: #15803d;
}
.dark-theme .dynamic-savings-alert {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
}
.dark-theme .dynamic-savings-alert strong {
  color: #22c55e;
}

/* Micro Trust Badges */
.micro-trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.micro-trust-badges span {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  color: var(--text-light);
  font-weight: 500;
}
.micro-trust-badges i {
  width: 14px;
  height: 14px;
  color: var(--brand-green);
}

/* Pincode Matching Status */
.pincode-status {
  font-size: 0.82rem;
  margin-top: 6px;
  display: block;
  min-height: 1.2em;
  transition: all 0.3s ease;
}
.pincode-status.valid {
  color: #166534;
}
.pincode-status.invalid {
  color: #991b1b;
}
.pincode-status.loading {
  color: #6b7280;
  opacity: 0.7;
}
.pincode-status:empty {
  display: none;
}

/* ============================================================
   CONTENT DESIGN SYSTEM (For Inner Pages & Posts)
   ============================================================ */
.entry-content {
  color: var(--text-primary);
  font-size: var(--fs-base);
  line-height: 1.8;
}
.entry-content p {
  margin-bottom: var(--space-lg);
}
.entry-content h1, .entry-content h2, .entry-content h3,
.entry-content h4, .entry-content h5, .entry-content h6 {
  color: var(--text-primary);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  font-weight: 800;
  line-height: 1.2;
}
.entry-content h2 { font-size: 2rem; }
.entry-content h3 { font-size: 1.5rem; }
.entry-content ul, .entry-content ol {
  padding-left: var(--space-xl);
  margin-bottom: var(--space-lg);
}
.entry-content li {
  margin-bottom: var(--space-sm);
}
.entry-content blockquote {
  border-left: 4px solid var(--brand-orange);
  padding: var(--space-md) var(--space-lg);
  background: var(--bg-secondary);
  border-radius: var(--radius-sm);
  font-style: italic;
  margin: var(--space-xl) 0;
}
.entry-content img {
  border-radius: var(--radius-lg);
  margin: var(--space-xl) 0;
  box-shadow: var(--shadow-md);
}
.entry-content figure {
  margin: var(--space-xl) 0;
}
.entry-content figcaption {
  text-align: center;
  font-size: var(--fs-xs);
  color: var(--text-tertiary);
  margin-top: var(--space-sm);
}
.inner-hero .hero-title {
  background: linear-gradient(90deg, #fff 0%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


/* WordPress Menu Active States */
.primary-menu .current-menu-item > a,
.primary-menu .current_page_item > a,
.nav-desktop .current-menu-item a,
.nav-mobile .current-menu-item a {
  color: var(--brand-orange) !important;
  background: rgba(249, 115, 22, 0.08) !important;
}

/* ============================================================
   CAREERS SYSTEM STYLES
   ============================================================ */
.career-form-wrapper { max-width: 600px; margin: 40px auto; background: var(--bg-card); padding: 40px; border-radius: 16px; box-shadow: var(--shadow-xl); border: 1px solid var(--border); }
.career-progress-container { height: 6px; background: var(--border); margin-bottom: 30px; border-radius: 3px; overflow: hidden; }
.career-progress-bar { height: 100%; width: 50%; background: var(--gradient-brand); transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.career-step { display: none; }
.career-step.active { display: block; animation: fadeInSlide 0.4s ease-out; }
@keyframes fadeInSlide { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.career-step h3 { margin-bottom: 25px; font-size: 22px; font-weight: 700; color: var(--text-primary); }
.career-next-btn, #career-submit-btn { width: 100%; padding: 14px; background: var(--brand-amber); color: white; border: none; border-radius: var(--radius-sm); font-weight: 700; font-size: 16px; cursor: pointer; transition: all 0.2s; }
.career-next-btn:hover, #career-submit-btn:hover { background: var(--brand-orange); transform: translateY(-2px); }
.form-buttons { display: flex; gap: 15px; margin-top: 20px; }
.career-prev-btn { flex: 0 0 100px; background: var(--bg-tertiary); color: var(--text-secondary); padding: 14px; border: none; border-radius: var(--radius-sm); font-weight: 600; cursor: pointer; }
#career-form-response { margin-top: 20px; text-align: center; font-size: 14px; }
.career-error { color: #ef4444; } .career-success { color: #10b981; }
#career-submit-btn:disabled { opacity: 0.7; cursor: not-allowed; background: var(--text-tertiary); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
@media (max-width: 480px) { .grid-2 { grid-template-columns: 1fr; } }


/* ============================================================
   LANDING PAGES — Residential & Commercial Solar
   ============================================================ */
.lp-hero { position: relative; padding: clamp(100px, 14vw, 160px) 0 clamp(60px, 8vw, 100px); background: var(--gradient-hero); overflow: hidden; color: #fff; }
.lp-hero__gradient { position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 20%, rgba(249,115,22,0.15) 0%, transparent 60%), radial-gradient(ellipse at 20% 80%, rgba(251,191,36,0.08) 0%, transparent 50%); }
.lp-hero__inner { position: relative; z-index: 2; max-width: 820px; }
.lp-hero__title { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.15; margin-bottom: var(--space-lg); letter-spacing: -0.02em; }
.lp-highlight { color: var(--brand-amber); }
.lp-gradient-text { background: var(--gradient-brand); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.lp-hero__subtitle { font-size: var(--fs-lg); color: #cbd5e1; line-height: 1.7; margin-bottom: var(--space-xl); max-width: 680px; }
.lp-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(249,115,22,0.15); border: 1px solid rgba(249,115,22,0.3); padding: 8px 16px; border-radius: var(--radius-full); font-size: var(--fs-sm); font-weight: 600; color: var(--brand-amber); margin-bottom: var(--space-lg); }
.lp-badge i { width: 16px; height: 16px; }
.lp-hero__usps { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: var(--space-xl); }
.lp-usp-chip { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); padding: 8px 14px; border-radius: var(--radius-full); font-size: var(--fs-sm); font-weight: 500; color: #e2e8f0; backdrop-filter: blur(4px); }
.lp-usp-chip i { width: 16px; height: 16px; color: var(--brand-amber); }
.lp-hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.lp-trust-strip { background: var(--bg-secondary); border-bottom: 1px solid var(--border); padding: 16px 0; }
.lp-trust-strip__inner { display: flex; justify-content: center; flex-wrap: wrap; gap: 24px; }
.lp-trust-chip { display: inline-flex; align-items: center; gap: 6px; font-size: var(--fs-sm); font-weight: 600; color: var(--text-secondary); }
.lp-trust-chip i { width: 16px; height: 16px; color: var(--brand-orange); }
.lp-section { padding: var(--space-section) 0; background: var(--bg-primary); }
.lp-section--alt { background: var(--bg-secondary); }
.lp-section--form { background: var(--gradient-hero); }
.lp-section__header { text-align: center; margin-bottom: var(--space-3xl); max-width: 700px; margin-left: auto; margin-right: auto; }
.lp-section__tag { display: inline-flex; align-items: center; gap: 6px; font-size: var(--fs-xs); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--brand-orange); margin-bottom: var(--space-md); }
.lp-section__tag i { width: 14px; height: 14px; }
.lp-section__header h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); font-weight: 800; color: var(--text-primary); margin-bottom: var(--space-md); line-height: 1.2; }
.lp-section__header p { font-size: var(--fs-lg); color: var(--text-secondary); line-height: 1.7; }
.lp-section--form .lp-section__header h2, .lp-section--form .lp-section__header p { color: #fff; }
.lp-pain-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.lp-pain-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; transition: transform var(--transition-base), box-shadow var(--transition-base); }
.lp-pain-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.lp-pain-card__icon { width: 48px; height: 48px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.lp-pain-card__icon i { width: 24px; height: 24px; }
.lp-pain-card h3 { font-size: var(--fs-lg); font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.lp-pain-card p { font-size: var(--fs-base); color: var(--text-secondary); line-height: 1.6; }
.lp-process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; }
.lp-process-step { text-align: center; padding: 28px 20px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); position: relative; transition: transform var(--transition-base), box-shadow var(--transition-base); }
.lp-process-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.lp-process-step__number { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--gradient-brand); color: #fff; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: var(--fs-sm); }
.lp-process-step__icon { width: 56px; height: 56px; background: rgba(249,115,22,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 12px auto 16px; }
.lp-process-step__icon i { width: 24px; height: 24px; color: var(--brand-orange); }
.lp-process-step h3 { font-size: var(--fs-base); font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.lp-process-step p { font-size: var(--fs-sm); color: var(--text-secondary); line-height: 1.6; }
.lp-comparison-table-wrap { overflow-x: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.lp-comparison-table { width: 100%; border-collapse: collapse; min-width: 650px; background: var(--bg-card); }
.lp-comparison-table th, .lp-comparison-table td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--border); font-size: var(--fs-sm); line-height: 1.6; color: var(--text-primary); }
.lp-comparison-table thead th { background: var(--brand-navy); color: #fff; font-weight: 700; font-size: var(--fs-sm); white-space: nowrap; }
.lp-comparison-table thead th i { width: 16px; height: 16px; vertical-align: -2px; margin-right: 4px; }
.lp-col-bad { background: rgba(239,68,68,0.04); color: var(--text-secondary) !important; }
.lp-col-good { background: rgba(34,197,94,0.04); }
.lp-comparison-table tbody tr:hover { background: rgba(249,115,22,0.03); }
.lp-roi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; margin-bottom: var(--space-3xl); }
.lp-roi-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; text-align: center; transition: transform var(--transition-base), box-shadow var(--transition-base); }
.lp-roi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.lp-roi-card__value { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; background: var(--gradient-brand); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; margin-bottom: 8px; }
.lp-roi-card__value span { font-size: 0.5em; font-weight: 700; }
.lp-roi-card h3 { font-size: var(--fs-base); font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.lp-roi-card p { font-size: var(--fs-sm); color: var(--text-secondary); line-height: 1.6; }
.lp-depreciation-box { background: var(--bg-card); border: 1px solid var(--border); border-left: 4px solid var(--brand-orange); border-radius: var(--radius-lg); padding: 28px; max-width: 600px; margin: 0 auto; }
.lp-depreciation-box h3 { font-size: var(--fs-lg); font-weight: 700; color: var(--text-primary); margin-bottom: 20px; display: flex; align-items: center; gap: 8px; }
.lp-depreciation-box h3 i { width: 20px; height: 20px; color: var(--brand-orange); }
.lp-dep-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border-subtle); }
.lp-dep-row--total { border-bottom: none; border-top: 2px solid var(--brand-orange); margin-top: 4px; padding-top: 14px; font-weight: 700; }
.lp-dep-label { color: var(--text-secondary); font-size: var(--fs-sm); }
.lp-dep-value { font-weight: 700; color: var(--text-primary); font-size: var(--fs-sm); }
.lp-dep-highlight { color: var(--brand-green) !important; }
.lp-dep-note { font-size: var(--fs-xs); color: var(--text-tertiary); margin-top: 16px; font-style: italic; }
.lp-usecase-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.lp-usecase-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; transition: transform var(--transition-base), box-shadow var(--transition-base); }
.lp-usecase-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.lp-usecase-card__icon { width: 48px; height: 48px; background: rgba(249,115,22,0.1); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.lp-usecase-card__icon i { width: 24px; height: 24px; color: var(--brand-orange); }
.lp-usecase-card h3 { font-size: var(--fs-base); font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.lp-usecase-card p { font-size: var(--fs-sm); color: var(--text-secondary); line-height: 1.6; }
.lp-faq-list { max-width: 720px; margin: 0 auto; }
.lp-faq-item { border: 1px solid var(--border); border-radius: var(--radius-md); margin-bottom: 12px; overflow: hidden; background: var(--bg-card); transition: box-shadow var(--transition-base); }
.lp-faq-item:hover { box-shadow: var(--shadow-sm); }
.lp-faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 18px 20px; background: none; border: none; cursor: pointer; font-family: inherit; font-size: var(--fs-base); font-weight: 600; color: var(--text-primary); text-align: left; gap: 12px; }
.lp-faq-icon { width: 20px; height: 20px; flex-shrink: 0; color: var(--text-tertiary); transition: transform var(--transition-base); }
.lp-faq-item.active .lp-faq-icon { transform: rotate(180deg); color: var(--brand-orange); }
.lp-faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; }
.lp-faq-item.active .lp-faq-answer { max-height: 300px; padding: 0 20px 18px; }
.lp-faq-answer p { font-size: var(--fs-sm); color: var(--text-secondary); line-height: 1.7; }
.lp-form-wrapper { max-width: 640px; margin: 0 auto; background: var(--bg-card); border-radius: var(--radius-xl); padding: clamp(28px, 5vw, 48px); box-shadow: var(--shadow-xl); }
.lp-form-header { text-align: center; margin-bottom: var(--space-xl); }
.lp-form-header__badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(239,68,68,0.08); color: #ef4444; padding: 6px 14px; border-radius: var(--radius-full); font-size: var(--fs-xs); font-weight: 700; margin-bottom: 16px; }
.lp-form-live-dot { width: 8px; height: 8px; background: #ef4444; border-radius: 50%; display: inline-block; animation: lp-pulse 1.5s infinite; }
@keyframes lp-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.lp-form-header h2 { font-size: var(--fs-2xl); font-weight: 800; color: var(--text-primary); margin-bottom: 8px; }
.lp-form-header p { font-size: var(--fs-sm); color: var(--text-secondary); }
.lp-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.lp-form-group { margin-bottom: 16px; }
.lp-form-group label { display: flex; align-items: center; gap: 6px; font-size: var(--fs-sm); font-weight: 600; color: var(--text-secondary); margin-bottom: 6px; }
.lp-form-group label i { width: 14px; height: 14px; color: var(--brand-orange); }
.lp-form-group input, .lp-form-group select { width: 100%; padding: 12px 14px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-family: inherit; font-size: var(--fs-base); background: var(--input-bg); color: var(--text-primary); transition: border-color var(--transition-fast), box-shadow var(--transition-fast); }
.lp-form-group input:focus, .lp-form-group select:focus { outline: none; border-color: var(--brand-orange); box-shadow: 0 0 0 3px rgba(249,115,22,0.1); }
.lp-form-group input.error, .lp-form-group select.error { border-color: #ef4444; }
.lp-form-submit { width: 100%; padding: 16px; font-size: var(--fs-lg); margin-top: 8px; }
.lp-form-trust { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; margin-top: 16px; font-size: var(--fs-xs); color: var(--text-tertiary); font-weight: 600; }
.lp-form-trust span { display: inline-flex; align-items: center; gap: 4px; }
.lp-form-trust i { width: 12px; height: 12px; }
.lp-form-response { text-align: center; margin-top: 12px; font-size: var(--fs-sm); }
.lp-form-response.success { color: var(--brand-green); } .lp-form-response.error { color: #ef4444; }
.lp-form-success { text-align: center; padding: 40px 20px; }
.lp-success-icon { width: 64px; height: 64px; background: rgba(34,197,94,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.lp-success-icon i { width: 32px; height: 32px; color: var(--brand-green); }
.lp-form-success h3 { font-size: var(--fs-2xl); font-weight: 800; color: var(--text-primary); margin-bottom: 12px; }
.lp-form-success p { color: var(--text-secondary); margin-bottom: 20px; }
.lp-sticky-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: var(--z-float); background: var(--bg-card); border-top: 1px solid var(--border); box-shadow: 0 -4px 20px rgba(0,0,0,0.1); padding: 8px 12px; gap: 8px; }
.lp-sticky-btn { flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px; padding: 12px 8px; border-radius: var(--radius-sm); font-size: var(--fs-sm); font-weight: 700; text-decoration: none; transition: all var(--transition-fast); }
.lp-sticky-btn i { width: 18px; height: 18px; }
.lp-sticky-btn--call { background: var(--bg-tertiary); color: var(--text-primary); }
.lp-sticky-btn--wa { background: #25d366; color: #fff; }
.lp-sticky-btn--form { background: var(--brand-orange); color: #fff; }
.fade-up-1, .fade-up-2, .fade-up-3, .fade-up-4, .fade-up-5 { opacity: 0; transform: translateY(20px); animation: lpFadeUp 0.6s ease forwards; }
.fade-up-1 { animation-delay: 0.1s; } .fade-up-2 { animation-delay: 0.2s; } .fade-up-3 { animation-delay: 0.35s; } .fade-up-4 { animation-delay: 0.5s; } .fade-up-5 { animation-delay: 0.65s; }
@keyframes lpFadeUp { to { opacity: 1; transform: translateY(0); } }
@media (max-width: 768px) { .lp-hero__inner { max-width: 100%; } .lp-form-grid { grid-template-columns: 1fr; } .lp-sticky-cta { display: flex; } .lp-form-wrapper { padding: 24px 16px; } .lp-process-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .lp-process-grid { grid-template-columns: 1fr; } .lp-hero__usps { flex-direction: column; } .lp-hero__ctas { flex-direction: column; } .lp-hero__ctas .btn { width: 100%; justify-content: center; } }


/* ============================================================
   v30.005 ENHANCEMENTS — Sticky CTA & Landing Page striping
   ============================================================ */

/* ============================================================
   v30.007 — PREMIUM WIZARD & TECH LP ENHANCEMENTS
   ============================================================ */

/* --- Career Wizard Stepper --- */
.career-form-wrapper {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 32px;
    padding: 40px;
    box-shadow: 0 40px 100px -20px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 40px auto;
}

.wizard-stepper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    position: relative;
}

.wizard-stepper::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: #e2e8f0;
    z-index: 1;
}

.wizard-step-indicator {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 60px;
}

.step-bubble {
    width: 54px;
    height: 54px;
    background: #fff;
    border: 3px solid #e2e8f0;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #64748b;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.step-bubble svg { width: 22px; height: 22px; }

.wizard-step-indicator.active .step-bubble {
    background: var(--brand-orange);
    border-color: var(--brand-orange);
    color: #fff;
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 30px rgba(249, 115, 22, 0.3);
}

.wizard-step-indicator.completed .step-bubble {
    background: #10b981;
    border-color: #10b981;
    color: #fff;
}

.step-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94a3b8;
}

.active .step-label { color: var(--brand-orange); }

/* --- Form Fields Polish --- */
.career-form-wrapper .form-group label {
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 10px;
    display: block;
}

.career-form-wrapper input,
.career-form-wrapper select,
.career-form-wrapper textarea {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.career-form-wrapper input:focus,
.career-form-wrapper select:focus,
.career-form-wrapper textarea:focus {
    background: #fff;
    border-color: var(--brand-orange);
    box-shadow: 0 0 0 5px rgba(249, 115, 22, 0.1);
    transform: translateY(-2px);
}

/* --- Comparison Table (LP Pages) --- */
.tech-table {
    width: 100%;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.tech-table th {
    background: #0f172a;
    color: #fff;
    padding: 24px;
    text-align: left;
    font-size: 1.1rem;
}

.tech-table td {
    padding: 20px 24px;
    border-bottom: 1px solid #f1f5f9;
}

.tech-table tr:last-child td { border: none; }

.highlight-standard {
    background: rgba(249, 115, 22, 0.05);
    font-weight: 700;
    color: #0d3278;
}

/* --- Speed Banner --- */
.speed-banner {
    background: linear-gradient(90deg, #f97316 0%, #fb923c 100%);
    color: #fff;
    padding: 15px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: 0 10px 25px rgba(249,115,22,0.3);
}

@media (max-width: 600px) {
    .career-form-wrapper { padding: 25px; margin: 20px; }
    .step-label { display: none; }
    .wizard-stepper { margin-bottom: 30px; }
}


/* ============================================================
   THEME FIXES v3 — Mobile, Marquee, Animations
   ============================================================ */

/* ---- Fix: Hide sticky-wa pill on mobile (conflicts with footer sticky-cta) ---- */
@media (max-width: 768px) {
  .sticky-wa { display: none !important; }
}

/* ---- Fix: Announcement bar single line on mobile ---- */
@media (max-width: 640px) {
  .announcement-bar { font-size: 11px; padding: 7px 0; }
  .announcement-inner { gap: 10px; }
  .announcement-inner p { font-size: 11px; }
}

/* ---- Fix: WhatsApp float sits above sticky-mobile-cta on mobile ---- */
@media (max-width: 768px) {
  .whatsapp-float { bottom: 80px; right: 16px; width: 48px; height: 48px; }
}

/* ---- Global Marquee: works on all pages ---- */
.global-marquee {
  background: linear-gradient(90deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  padding: 0;
  overflow: hidden;
  border-top: 1px solid rgba(249,115,22,.15);
  border-bottom: 1px solid rgba(249,115,22,.15);
}
.global-marquee .marquee-track {
  overflow: hidden;
  position: relative;
  white-space: nowrap;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.global-marquee .marquee-content {
  display: inline-flex;
  align-items: center;
  animation: marqueeScroll 28s linear infinite;
  padding: 14px 0;
  gap: 0;
}
.global-marquee .marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 32px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,.85);
  white-space: nowrap;
  border-right: 1px solid rgba(249,115,22,.25);
}
.global-marquee .marquee-item i,
.global-marquee .marquee-item svg {
  width: 15px;
  height: 15px;
  color: #f97316;
  flex-shrink: 0;
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}





/* ---- Enhanced animations for all pages ---- */
@keyframes slideInLeft { from{opacity:0;transform:translateX(-30px)} to{opacity:1;transform:translateX(0)} }
@keyframes slideInRight { from{opacity:0;transform:translateX(30px)} to{opacity:1;transform:translateX(0)} }
@keyframes zoomIn { from{opacity:0;transform:scale(.92)} to{opacity:1;transform:scale(1)} }
@keyframes shimmerPulse { 0%,100%{opacity:1} 50%{opacity:.7} }

.anim-slide-left { opacity:0; transform:translateX(-30px); transition:opacity .6s ease, transform .6s ease; }
.anim-slide-left.visible { opacity:1; transform:translateX(0); }
.anim-slide-right { opacity:0; transform:translateX(30px); transition:opacity .6s ease, transform .6s ease; }
.anim-slide-right.visible { opacity:1; transform:translateX(0); }
.anim-zoom { opacity:0; transform:scale(.92); transition:opacity .6s ease, transform .6s ease; }
.anim-zoom.visible { opacity:1; transform:scale(1); }

/* ---- Blog page improvements ---- */
.blog-card { animation-fill-mode: both; }

/* ---- Fix: language button always visible ---- */
#lang-toggle { cursor:pointer; user-select:none; }
.lang-label { pointer-events:none; }



/* ---- Better focus styles for accessibility ---- */
.hamburger:focus { outline: 2px solid #f97316; outline-offset: 2px; border-radius: 4px; }
.toggle-btn:focus { outline: 2px solid #f97316; outline-offset: 2px; }

/* ---- Improved card hover animations ---- */
.why-card, .service-card, .solution-card {
  transition: transform .3s ease, box-shadow .3s ease !important;
}
.why-card:hover, .service-card:hover {
  transform: translateY(-8px) !important;
}






/* ============================================================
   RUDRANSH v3 PATCH — Minimal targeted fixes only
   ============================================================ */

/* Announcement bar: single line on all screens */
.announcement-bar { overflow: hidden; }
.announcement-inner { flex-wrap: nowrap !important; overflow: hidden; white-space: nowrap; }
@media (max-width: 480px) { .announcement-bar { font-size: 11px; padding: 7px 0; } }

/* Desktop nav: ensure visible above 1024px */
@media (min-width: 1025px) {
  .nav-desktop { display: flex !important; }
  .hamburger { display: none !important; }
  .nav-mobile { display: none !important; }
}

/* Mobile nav: show when .open class added by JS */
@media (max-width: 1024px) {
  .nav-desktop { display: none !important; }
  .hamburger { display: flex !important; }
  .nav-mobile.open { display: flex !important; }
}

/* Hamburger tap target — bigger & more visible */
.hamburger {
  min-width: 36px;
  min-height: 36px;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.hamburger span { background: #f97316; }

/* WhatsApp float above sticky bar on mobile */
@media (max-width: 768px) {
  .whatsapp-float { bottom: 80px !important; right: 16px !important; }
  .sticky-wa { display: none !important; }
  .sticky-mobile-cta { display: flex !important; }
}

/* Global marquee for non-home pages */
.global-marquee {
  background: linear-gradient(90deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  overflow: hidden;
  border-top: 1px solid rgba(249,115,22,.15);
  border-bottom: 1px solid rgba(249,115,22,.15);
}
.global-marquee .marquee-track {
  overflow: hidden;
  white-space: nowrap;
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.global-marquee .marquee-content {
  display: inline-flex;
  align-items: center;
  animation: marqueeScroll 28s linear infinite;
  padding: 14px 0;
}
.global-marquee .marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 28px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,.85);
  white-space: nowrap;
  border-right: 1px solid rgba(249,115,22,.2);
}
.global-marquee .marquee-item svg,
.global-marquee .marquee-item i { color: #f97316; width:14px; height:14px; flex-shrink:0; }
@keyframes marqueeScroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* Extra animations */
@keyframes slideInLeft { from{opacity:0;transform:translateX(-30px)} to{opacity:1;transform:translateX(0)} }
@keyframes slideInRight { from{opacity:0;transform:translateX(30px)} to{opacity:1;transform:translateX(0)} }
.anim-slide-left { opacity:0; transform:translateX(-30px); transition:opacity .6s ease,transform .6s ease; }
.anim-slide-left.visible { opacity:1; transform:translateX(0); }
.anim-slide-right { opacity:0; transform:translateX(30px); transition:opacity .6s ease,transform .6s ease; }
.anim-slide-right.visible { opacity:1; transform:translateX(0); }
.anim-zoom { opacity:0; transform:scale(.93); transition:opacity .6s ease,transform .6s ease; }
.anim-zoom.visible { opacity:1; transform:scale(1); }

/* ============================================================
   FOOTER ENHANCEMENTS v2 — New elements
   ============================================================ */

.footer-top-wave {
  margin-bottom: -2px;
  line-height: 0;
}
.footer-top-wave svg {
  width: 100%;
  height: 60px;
  display: block;
}

.footer-cert-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 12px 0 16px;
}
.footer-cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(249,115,22,0.12);
  border: 1px solid rgba(249,115,22,0.25);
  color: var(--brand-orange);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}
[data-theme="dark"] .footer-cert-badge {
  background: rgba(249,115,22,0.15);
  border-color: rgba(249,115,22,0.3);
}

.footer-col-heading {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--brand-orange);
  display: inline-block;
}

.footer-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-link-list a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color var(--transition-fast), padding-left var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-link-list a:hover {
  color: var(--brand-orange);
  padding-left: 4px;
}
.footer-link-list--small a {
  font-size: 0.8rem;
}

.footer-legal-links {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
}
.footer-legal-links h5 {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 10px;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.8rem;
}
.footer-bottom-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.footer-bottom-links a:hover { color: var(--brand-orange); }
.footer-bottom-links span { color: var(--text-tertiary); }

/* ── nav-desktop-list reset (fixes WP menu numbering) ── */
.nav-desktop .nav-desktop-list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; align-items: center; gap: 4px;
}
.nav-desktop .nav-desktop-list li { list-style: none; }
.nav-desktop .nav-desktop-list > li > a { 
  display: inline-flex; align-items: center;
  padding: 6px 12px; border-radius: var(--radius-sm);
  font-size: 0.875rem; font-weight: 500;
  color: var(--text-primary); text-decoration: none;
  transition: color var(--transition-fast), background var(--transition-fast);
}
.nav-desktop .nav-desktop-list > li > a:hover { color: var(--brand-orange); background: var(--bg-tertiary); }

/* ============================================================
   SEO PAGES — Inner page layout
   ============================================================ */
.page-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 80px 24px 80px;
}
.page-inner h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.2;
}
.page-inner .page-meta {
  font-size: 0.8rem;
  color: var(--text-tertiary);
  margin-bottom: 36px;
  display: flex; gap: 16px; flex-wrap: wrap;
}
.page-inner h2 {
  font-size: 1.35rem; font-weight: 700;
  color: var(--text-primary); margin: 36px 0 12px;
  padding-left: 12px;
  border-left: 4px solid var(--brand-orange);
}
.page-inner h3 {
  font-size: 1.1rem; font-weight: 600;
  color: var(--text-primary); margin: 24px 0 8px;
}
.page-inner p, .page-inner li {
  font-size: 0.975rem; line-height: 1.8;
  color: var(--text-secondary); margin-bottom: 14px;
}
.page-inner ul, .page-inner ol { padding-left: 24px; margin-bottom: 16px; }
.page-inner li { margin-bottom: 6px; }
.page-inner a { color: var(--brand-orange); text-decoration: underline; }
.page-inner .page-highlight-box {
  background: linear-gradient(135deg, rgba(249,115,22,0.08), rgba(251,191,36,0.08));
  border: 1px solid rgba(249,115,22,0.2);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin: 24px 0;
}
.page-inner .contact-cta-box {
  background: var(--gradient-cta);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  text-align: center;
  margin-top: 48px;
}
.page-inner .contact-cta-box h3 { color: #fff; margin: 0 0 8px; font-size: 1.25rem; }
.page-inner .contact-cta-box p { color: rgba(255,255,255,0.85); margin-bottom: 16px; }
.page-inner .contact-cta-box a.btn {
  display: inline-block;
  background: #fff; color: var(--brand-deep);
  font-weight: 700; font-size: 0.9rem;
  padding: 10px 24px; border-radius: var(--radius-full);
  text-decoration: none; transition: transform var(--transition-fast);
}
.page-inner .contact-cta-box a.btn:hover { transform: translateY(-2px); }


/* ============================================================
   PARTNERS SECTION — Full redesign with marquee animation
   ============================================================ */

.partners-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 56px 0 48px;
  overflow: hidden;
}

.partners-header {
  text-align: center;
  margin-bottom: 40px;
}
.partners-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-orange);
  margin-bottom: 8px;
}
.partners-title {
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.25;
}
.partners-subtitle {
  font-size: 0.9rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Row label */
.partners-row {
  margin-bottom: 28px;
}
.partners-row:last-child { margin-bottom: 0; }

.partners-row-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-tertiary);
  margin-bottom: 14px;
  padding-left: 4px;
}
.partners-row-icon { font-size: 1rem; }

/* Scrolling track */
.partners-track-wrap {
  overflow: hidden;
  position: relative;
  /* Fade edges */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.partners-track {
  display: flex;
  align-items: stretch;
  gap: 16px;
  width: max-content;
  animation: partnersScroll 22s linear infinite;
}

.partners-track--reverse {
  animation: partnersScrollReverse 26s linear infinite;
}

@keyframes partnersScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes partnersScrollReverse {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.partners-track:hover,
.partners-track--reverse:hover {
  animation-play-state: paused;
}

/* Individual partner card */
.partner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  cursor: default;
  transition: transform var(--transition-base);
}
.partner-card:hover { transform: translateY(-4px); }

.partner-logo-wrap {
  width: 120px;
  height: 72px;
  background: var(--bg-card);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base), border-color var(--transition-base);
  overflow: hidden;
  position: relative;
}
.partner-card:hover .partner-logo-wrap {
  box-shadow: var(--shadow-md);
  border-color: var(--brand-orange);
}

.partner-logo-wrap img {
  max-width: 90px;
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.partner-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: calc(var(--radius-md) - 2px);
  position: absolute; inset: 0;
}
.partner-fallback span {
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-align: center;
  line-height: 1.2;
}

.partner-name {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-tertiary);
  text-align: center;
  white-space: nowrap;
  margin: 0;
}

/* Dark mode adjustments */
[data-theme="dark"] .partner-logo-wrap {
  background: var(--bg-tertiary);
  border-color: var(--border-color);
}
[data-theme="dark"] .partner-logo-wrap img {
  filter: brightness(0.9) contrast(1.1);
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .partners-track,
  .partners-track--reverse {
    animation: none;
  }
  .partners-track-wrap {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .partners-section { padding: 40px 0 36px; }
  .partner-logo-wrap { width: 100px; height: 60px; padding: 10px 12px; }
  .partner-logo-wrap img { max-width: 76px; max-height: 38px; }
  .partners-track { gap: 12px; }
}


/* ================================================================
   RUDRANSH FIXES — Header, Hamburger, Partner Logos
   ================================================================ */

/* 1. Hide phone number pill on mobile (shows in header-actions on all screens currently) */
@media (max-width: 1024px) {
  .header-phone-pill {
    display: none !important;
  }
}

/* 2. Hamburger — better look: thicker bars, rounded, orange tint on active */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  background: var(--bg-card, #fff);
  border: 1.5px solid var(--border-color, #e5e7eb);
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, border-color 0.2s;
}

.hamburger:hover,
.hamburger.active {
  background: #fff3eb;
  border-color: #f97316;
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2.5px;
  background: var(--text-primary, #111);
  border-radius: 3px;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.2s;
}

.hamburger.active span {
  background: #f97316;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* 3. Mobile nav — cleaner slide-down panel */
.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 16px 20px 20px;
  background: var(--bg-card, #fff);
  border-top: 2px solid #f97316;
  gap: 2px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 300;
  animation: mobileNavIn 0.22s ease forwards;
}

@keyframes mobileNavIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.nav-mobile.open {
  display: flex;
}

.mobile-section-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary, #6b7280);
  padding: 0 8px 8px;
  border-bottom: 1px solid var(--border-color, #e5e7eb);
  margin-bottom: 4px;
}

.nav-mobile .nav-link {
  padding: 10px 12px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 8px;
  transition: background 0.15s;
  text-decoration: none;
  color: var(--text-primary, #111);
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-mobile .nav-link:hover {
  background: #fff7ed;
  color: #f97316;
}

.btn-mobile-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 16px;
  margin-top: 10px;
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  border-radius: 10px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.btn-mobile-cta:hover { opacity: 0.9; color: #fff; }

.mobile-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 10px 0 0;
  font-size: 12px;
  color: var(--text-secondary, #6b7280);
}

/* Make header position relative so absolute mobile nav works */
.header {
  position: relative;
}

/* 4. Header — on mobile, hide WhatsApp Us button text to save space */
@media (max-width: 768px) {
  .btn-header-cta span {
    display: none;
  }
  .btn-header-cta {
    padding: 8px 10px;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    justify-content: center;
  }
  .btn-header-cta .btn-icon {
    width: 18px;
    height: 18px;
    margin: 0;
  }
}

/* 5. Partner logos — use local SVG assets reliably */
.partner-logo-wrap img[src*="wikimedia"],
.partner-logo-wrap img[src*="upload.wikimedia"] {
  /* override any broken external wikimedia images */
  display: block;
}


/* ================================================================
   FIX: Services dropdown z-index + positioning
   The nav-dropdown was appearing behind/over the announcement bar
   because it had no stacking context. Fixed below.
   ================================================================ */

/* Announcement bar must sit BELOW the header dropdown */
.announcement-bar {
  position: relative;
  z-index: 190 !important; /* below header (200) so dropdown overlays it */
}

/* Header wrapper — ensure it creates proper stacking context */
.header {
  z-index: 200;
  isolation: isolate; /* creates its own stacking context */
}

/* Services dropdown parent — must be relative for absolute child */
.nav-item-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

/* The dropdown panel itself */
.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  padding: 8px;
  z-index: 9999; /* always on top of everything */
  flex-direction: column;
  gap: 2px;
}

/* Show on hover */
.nav-item-dropdown:hover .nav-dropdown,
.nav-item-dropdown:focus-within .nav-dropdown {
  display: flex;
}

/* Dropdown links */
.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--text-primary);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}

.nav-dropdown a:hover {
  background: #fff7ed;
  color: var(--brand-orange);
}

.nav-dropdown a svg,
.nav-dropdown a i {
  width: 16px;
  height: 16px;
  color: var(--brand-orange);
  flex-shrink: 0;
}

/* Small arrow indicator on the Services nav link */
.nav-item-dropdown > .nav-link::after {
  content: '▾';
  margin-left: 4px;
  font-size: 10px;
  opacity: 0.6;
}

