*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --amber:   #F5A000;
  --orange:  #E8580A;
  --deep:    #0A0F2E;
  --dark:    #0D1B4B;
  --cream:   #FFF8EE;
  --gold:    #FFD166;
  --light:   #FFF3DC;
  --gray:    #6B6B6B;
  --white:   #FFFFFF;
  /* EV Colors */
  --ev-green:  #1A6FF5;
  --ev-teal:   #0A4DB5;
  --ev-dark:   #001F5C;
  --ev-light:  #EEF4FF;
}

html { 
  scroll-behavior: smooth; 
  overflow-x: hidden; 
  width: 100%; 
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--deep);
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

/* ── NAVBAR ── */
nav {
  position: fixed; 
  top: 0; 
  width: 100%; 
  z-index: 1000;
  background: rgba(10,15,46,0.96);
  backdrop-filter: blur(10px);
  display: flex; 
  align-items: center; 
  justify-content: space-between;
  padding: 0 3%;
  height: 68px;
  border-bottom: 2px solid var(--amber);
}

.nav-logo { 
  height: 50px; 
  width: auto; 
  object-fit: contain; 
  display: block; 
}

.nav-links { 
  display: flex; 
  gap: 1.1rem; 
  list-style: none; 
  align-items: center; 
}

.nav-links a {
  color: var(--cream); 
  text-decoration: none;
  font-size: 0.8rem; 
  font-weight: 500;
  position: relative; 
  padding-bottom: 3px;
  transition: color 0.3s; 
  white-space: nowrap;
}

.nav-links a::after {
  content: ''; 
  position: absolute; 
  bottom: 0; 
  left: 0;
  width: 0; 
  height: 2px; 
  background: var(--amber);
  transition: width 0.3s;
}

.nav-links a:hover { color: var(--amber); }

.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--amber); 
  color: var(--dark) !important;
  padding: 8px 16px; 
  border-radius: 4px;
  font-weight: 700 !important;
}

.nav-cta:hover { 
  background: var(--orange) !important; 
  color: #fff !important; 
}

.nav-cta::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none; 
  flex-direction: column;
  justify-content: space-between;
  width: 30px; 
  height: 22px;
  background: transparent; 
  border: none;
  cursor: pointer; 
  padding: 0; 
  z-index: 1100;
}

.hamburger span {
  display: block; 
  width: 100%; 
  height: 3px;
  background: var(--amber); 
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(9.5px) rotate(45deg); }

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

.hamburger.open span:nth-child(3) { transform: translateY(-9.5px) rotate(-45deg); }

.franchise-banner {
  width: 100%;
  line-height: 0; /* removes tiny gap under inline img */
}
.franchise-banner img {
  width: 100%;
  height: auto;   /* keeps full image visible, no cropping, scales on mobile */
  display: block;
}

/* ── HERO ── */
#home {
  min-height: 100vh; 
  width: 100%;
  background:
    linear-gradient(135deg, rgba(10,15,46,0.80) 0%, rgba(13,27,75,0.85) 50%, rgba(10,15,46,0.80) 100%),
    url('Background.png') center/contain no-repeat;
    background-color: #0A0F2E;
  display: flex; 
  align-items: center; 
  justify-content: center;
  position: relative; 
  overflow: hidden; 
  padding-top: 68px;
}

.hero-eyebrow {
  display: inline-block;
  background: rgba(245,160,0,0.15);
  border: 1px solid var(--amber);
  color: var(--amber);
  font-size: 0.75rem; 
  font-weight: 700;
  letter-spacing: 2px; 
  text-transform: uppercase;
  padding: 6px 14px; 
  border-radius: 2px; 
  margin-bottom: 1.2rem;
}

.hero-content {
  position: relative; 
  z-index: 2;
  max-width: 1100px; 
  width: 90%;
  display: flex; 
  align-items: center; 
  justify-content: space-between;
  gap: 3rem; 
  flex-wrap: wrap; 
  box-sizing: border-box; 
  padding-top: 15px;
}

.hero-text { 
  flex: 1; 
  min-width: 300px; 
}

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900; 
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1.1; 
  color: var(--white); 
  margin-bottom: 0.5rem;
}

.hero-title span { 
  color: var(--amber); 
  display: block; 
  font-size: 40px; 
}

.hero-subtitle {
  font-size: 1.05rem; 
  color: #F0F0F0; 
  line-height: 1.7;
  margin: 1.2rem 0 2rem; 
  max-width: 520px;
}

.hero-btns { 
  display: flex; 
  gap: 1rem; 
  flex-wrap: wrap; 
}

.btn-primary {
  background: linear-gradient(135deg, var(--amber), var(--orange));
  color: var(--dark); 
  font-weight: 700; 
  font-size: 0.95rem;
  padding: 14px 32px; 
  border-radius: 4px;
  text-decoration: none; 
  border: none; 
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(245,160,0,0.4);
}

.btn-primary:hover { 
  transform: translateY(-2px); 
  box-shadow: 0 8px 30px rgba(245,160,0,0.5); 
}

.btn-outline {
  background: transparent; 
  color: var(--amber); 
  font-weight: 600;
  padding: 13px 28px; 
  border-radius: 4px;
  border: 2px solid var(--amber); 
  text-decoration: none;
  transition: all 0.3s; 
  font-size: 0.95rem;
}

.btn-outline:hover { 
  background: var(--amber); 
  color: var(--dark); 
}

.btn-ev {
  background: linear-gradient(135deg, var(--ev-green), var(--ev-teal));
  color: white; 
  font-weight: 700; 
  font-size: 0.95rem;
  padding: 14px 32px; 
  border-radius: 4px;
  text-decoration: none; 
  border: none; 
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(0,184,107,0.4);
}

.btn-ev:hover { transform: translateY(-2px); }

/* Hero dual cards */
.hero-dual-cards { 
  flex: 0 0 340px; 
  display: flex; 
  flex-direction: column; 
  gap: 1rem; 
  min-width: 280px; 
}

.solar-card, .ev-card {
  border-radius: 12px; 
  padding: 1.5rem;
  backdrop-filter: blur(12px); 
  width: 100%; 
  box-sizing: border-box;
}

.solar-card {
  background: rgba(10, 15, 46, 0.75);
  border: 1px solid rgba(245, 160, 0, 0.6);
  box-shadow: 0 4px 20px rgba(245, 160, 0, 0.15);
}

.ev-card {
  background: rgba(0, 51, 38, 0.75);
  border: 1px solid rgba(0, 184, 107, 0.6);
  box-shadow: 0 4px 20px rgba(0, 184, 107, 0.15);
}

.solar-card h3 { 
  color: var(--amber); 
  font-family: 'Montserrat',sans-serif; 
  font-size:0.9rem; 
  font-weight:700; 
  text-transform:uppercase; 
  letter-spacing:1px; 
  margin-bottom:0.8rem; 
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(245, 160, 0, 0.3); 
}

.ev-card h3 { 
  color: var(--ev-green); 
  font-family: 'Montserrat',sans-serif; 
  font-size:0.9rem; 
  font-weight:700; 
  text-transform:uppercase; 
  letter-spacing:1px; 
  margin-bottom:0.8rem; 
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(0, 184, 107, 0.3);
}

.saving-item { 
  display:flex; 
  justify-content:space-between; 
  align-items:center; 
  padding:7px 0; 
  border-bottom:1px solid rgba(255,255,255,0.08); 
}

.saving-item:last-child { border-bottom:none; }

.saving-label { 
  color:#E0E0E0; 
  font-size:0.82rem; 
}

.saving-value { 
  font-family:'Montserrat',sans-serif; 
  font-weight:700; 
  color:var(--gold); 
  font-size:0.92rem; 
  text-align: right; 
}

.ev-value { 
  color: #4DFFA0; 
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  text-align: right;
}

/* Hero stats */
.hero-stats { 
  display:flex; 
  gap:1.5rem; 
  margin-top:2rem; 
  flex-wrap:wrap; 
}

.stat { text-align:center; }

.stat-num { 
  font-family:'Montserrat',sans-serif; 
  font-size:1.6rem; 
  font-weight:900; 
  color:var(--amber); 
  display:block; 
}

.stat-label { 
  font-size:0.68rem; 
  color:#DDD; 
  text-transform:uppercase; 
  letter-spacing:1px; 
}

/* ── SECTION COMMON ── */
section { 
  padding: 80px 5%; 
  width:100%; 
  box-sizing:border-box; 
}
.section-tag { 
  display:inline-block; 
  color:var(--orange); 
  font-weight:700; 
  font-size:0.75rem; 
  letter-spacing:2px; 
  text-transform:uppercase; 
  margin-bottom:0.6rem; 
}
.section-tag-ev { color: var(--ev-green) !important; }

.section-title { 
  font-family:'Montserrat',sans-serif; 
  font-size:clamp(1.8rem,3.5vw,2.8rem); 
  font-weight:900; 
  line-height:1.15; 
  color:var(--dark); 
  margin-bottom:1rem; 
  word-break:break-word; 
  overflow-wrap:break-word; 
  max-width:100%; 
}

.section-title span { color:var(--amber); }

.section-title span.ev { color:var(--ev-green); }

.section-desc { 
  color:var(--gray); 
  max-width:580px; 
  line-height:1.75; 
  font-size:1rem;
  padding-bottom: 20px;
}

.section-center { text-align:center; }

.section-center .section-desc { margin:0 auto; }

.divider { width:60px; 
  height:4px; 
  background:linear-gradient(to right,var(--amber),var(--orange)); 
  border-radius:2px; 
  margin:1rem 0 1.5rem; 
}

.divider-ev { 
  background:linear-gradient(to right,var(--ev-green),var(--ev-teal)) !important; 
}

.divider-center { 
  margin:1rem auto 1.5rem; 
}



/* ── WHY US ── */
#why {
  background:
    linear-gradient(135deg, rgba(13,27,75,0.82) 0%, rgba(10,15,46,0.82) 100%),
    url('https://images.unsplash.com/photo-1611365892117-00ac5ef43c90?w=1920&q=80') center/cover no-repeat fixed;
}

#why .section-title { color:var(--white); }

#why .section-desc { color:#BBB; }

.why-grid { 
  display:grid; 
  grid-template-columns:repeat(3,1fr); 
  gap:1.5rem; 
  margin-top:3rem; 
}

.why-card {
  background: var(--dark); 
  border:1px solid rgba(245,160,0,0.4);
  border-radius:10px; 
  padding:2rem;
  transition:border-color 0.3s,transform 0.3s;
  backdrop-filter:blur(8px);
}

.why-card:hover { 
  border-color:var(--amber); 
  transform:translateY(-4px); 
}

.why-card.ev-card-why { border-color:rgba(0,184,107,0.4); }

.why-card.ev-card-why:hover { border-color:var(--ev-green); }

.why-icon { 
  font-size:2.2rem; 
  margin-bottom:1rem; 
  display:block; 
}

.why-card h4 { 
  font-family:'Montserrat',sans-serif; 
  font-weight:700; 
  font-size:1rem; 
  color:var(--amber); 
  margin-bottom:0.5rem; 
}

.why-card.ev-card-why h4 { color:var(--ev-green); }

.why-card p { 
  color:#E8E8E8; 
  font-size:0.9rem; 
  line-height:1.65; 
}

.why-divider {
  grid-column: 1 / -1;
  border: none;
  border-top: 1px dashed rgba(255,255,255,0.2);
  margin: 0.5rem 0;
}

.why-section-label {
  grid-column: 1 / -1;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem; 
  font-weight: 700;
  letter-spacing: 2px; 
  text-transform: uppercase;
  padding: 6px 14px; 
  border-radius: 20px;
  display: inline-block; 
  width: fit-content;
}

.solar-label { 
  background: rgba(245,160,0,0.15); 
  color: var(--amber); 
  border: 1px solid var(--amber); 
}

.ev-label-tag { 
  background: rgba(0,184,107,0.15); 
  color: var(--ev-green); 
  border: 1px solid var(--ev-green); 
}

/* ── ABOUT ── */
#about {
  background:
    linear-gradient(135deg, rgba(255,248,238,0.93) 0%, rgba(255,243,220,0.93) 100%),
    url('https://images.unsplash.com/photo-1509391366360-2e959784a276?w=1920&q=80') center/cover no-repeat fixed;
}

.about-grid { 
  display:grid; 
  grid-template-columns:1fr 1fr; 
  gap:4rem; 
  align-items:start; 
  margin-top:2rem; 
}
.about-info p { 
  color:var(--gray); 
  line-height:1.8; 
  margin-bottom:1rem; 
}

.about-info p strong { color: var(--deep); }

.about-badges { 
  display:flex; 
  gap:1rem; 
  flex-wrap:wrap; 
  margin-top:1.5rem; 
}

.badge { 
  background:var(--light); 
  border:1px solid var(--amber); 
  border-radius:4px; 
  padding:8px 16px; 
  font-size:0.82rem; 
  font-weight:600; 
  color:var(--dark); 
}

.badge-ev { 
  background: var(--ev-light); 
  border-color: var(--ev-green); 
  color: var(--ev-teal); 
}

.about-highlights { 
  display:grid; 
  grid-template-columns:1fr 1fr; 
  gap:1.2rem; 
  padding-top:3.5rem; 
  width:100%; 
  box-sizing:border-box; 
}

.highlight-box { 
  background:linear-gradient(135deg,var(--amber),var(--orange)); 
  border-radius:10px; 
  padding:1.5rem; 
  text-align:center; 
  color:var(--dark); 
}

.highlight-box.dark-box { 
  background:var(--dark); 
  color:var(--white); 
  border:1px solid var(--amber); 
}

.highlight-box.ev-box { 
  background:linear-gradient(135deg,var(--ev-green),var(--ev-teal)); 
  color:white; 
}

.highlight-box .h-num { 
  font-family:'Montserrat',sans-serif; 
  font-size:2rem; 
  font-weight:900; 
  display:block; 
  word-break:break-word; 
}

.highlight-box.dark-box .h-num { color:var(--amber); }

.highlight-box.ev-box .h-num { color:white; }

.highlight-box .h-label { 
  font-size:0.72rem; 
  font-weight:600; 
  text-transform:uppercase; 
  letter-spacing:1px; 
  margin-top:4px; 
  display:block; 
}

.highlight-box.dark-box .h-label { color:#AAA; }

.address-box { 
  margin-top:1.5rem; 
  background:var(--light); 
  border-left:4px solid var(--amber); 
  padding:1rem 1.2rem; 
  border-radius:0 8px 8px 0; 
  font-size:0.9rem; 
  color:var(--dark); 
  line-height:1.7; 
}

.address-map-row { 
  display:flex; 
  gap:1.5rem; 
  align-items:stretch; 
  margin-top:1.5rem; 
}

.address-map-row .address-box { 
  flex:1; 
  margin-top:0; 
}

.address-map-row .map-wrapper { flex:1; }

.map-wrapper { 
  border-radius:12px; 
  overflow:hidden; 
  border:2px solid var(--amber); 
  box-shadow:0 4px 20px rgba(245,160,0,0.2); 
}

.map-wrapper iframe { 
  display:block; 
  width:100%; 
  height:250px; 
}

.tagline { 
  font-size:1.05rem; 
  font-weight:600; 
  color:var(--amber); 
  margin-bottom:1.5rem; 
  font-style:italic; 
}

/* ── PRODUCTS / SOLUTIONS ── */
#products {
  background:
    linear-gradient(135deg, rgba(255,245,224,0.96) 0%, rgba(255,248,238,0.96) 100%),
    url('https://images.unsplash.com/photo-1508514177221-188b1cf16e9d?w=1920&q=80') center/cover no-repeat fixed;
}

#products .section-title span{
  color: #00B86B;
}

#panel-ev {
  background:
    linear-gradient(135deg, rgba(0,31,92,0.97) 0%, rgba(0,20,70,0.97) 100%),
    url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1920&q=80') center/cover no-repeat fixed;
  margin: 2rem -5% -80px;
  padding: 3rem 5% 80px;
}

#panel-ev .ev-section-header h3 { color: var(--amber); }

#panel-ev .ev-section-header p { color: #B2DFDB; }

#panel-ev .why-card.ev-card-why { background: rgba(255,255,255,0.06); }

@media (max-width: 768px) {
  #panel-ev { 
    margin: 1.5rem -4% -60px; 
    padding: 2rem 4% 60px; 
  }
}

.ev-section-header {
  margin-top: 2rem; /* pushes it down */
  padding-top: 2rem;  /* optional extra spacing */
  padding-bottom: 3rem;
}

.ev-section-header h3 {
  color: var(--amber) !important;
}

.ev-section-header p {
  color: #333333; /* example: dark gray */
}

.product-tabs-wrapper { margin-bottom: 2rem; }

.product-category-tabs {
  display: flex; 
  gap: 1rem; 
  justify-content: center;
  margin-bottom: 2rem; 
  flex-wrap: wrap;
}

.cat-tab {
  padding: 12px 32px; 
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; 
  font-size: 0.95rem;
  cursor: pointer; 
  border: 2px solid var(--amber);
  background: transparent; 
  color: var(--dark);
  transition: all 0.3s;
}

.cat-tab.active-solar, .cat-tab:hover { 
  background: var(--amber); 
  color: var(--dark); 
}

.cat-tab.ev-cat { border-color: var(--ev-green); }

.cat-tab.active-ev { 
  background: var(--ev-green); 
  color: white; 
  border-color: var(--ev-green); 
}

.cat-tab.ev-cat:hover { 
  background: var(--ev-green); 
  color: white; 
}

.product-panel { display: none; }

.product-panel.active { display: block; }

.tab-bar { 
  display:flex; 
  gap:0.5rem; 
  flex-wrap:wrap; 
  margin:2rem 0; 
  justify-content:center; 
}

.tab-btn { 
  padding:10px 24px; 
  border-radius:4px; 
  border:2px solid var(--amber); 
  background:transparent; 
  color:var(--dark); 
  font-weight:600; 
  cursor:pointer; 
  font-size:0.88rem; 
  transition:all 0.25s; 
  font-family:'Montserrat',sans-serif; 
}

.tab-btn.active, .tab-btn:hover { 
  background:var(--amber); 
  color:var(--dark); 
}

.tab-content { display:none; }

.tab-content.active { display:block; }

.product-grid { 
  display:grid; 
  grid-template-columns:repeat(3,1fr); 
  gap:1.5rem; 
}

.product-card { 
  background:var(--white); 
  border-radius:12px; 
  border:1px solid #F0D890; 
  overflow:hidden; 
  box-shadow:0 2px 16px rgba(232,88,10,0.07); 
  transition:transform 0.3s,box-shadow 0.3s; 
}

.product-card:hover { 
  transform:translateY(-5px); 
  box-shadow:0 8px 32px rgba(232,88,10,0.15); 
}

.product-header { 
  background:linear-gradient(135deg,var(--amber),var(--orange)); 
  padding:1.2rem 1.5rem; 
  display:flex; 
  justify-content:space-between; 
  align-items:center; 
}

.product-header h3 { 
  font-family:'Montserrat',sans-serif; 
  font-weight:900; 
  font-size:1.4rem; 
  color:var(--dark); 
}

.product-header .phase-tag { 
  background:rgba(26,16,0,0.25); 
  color:var(--dark); 
  font-size:0.7rem; 
  font-weight:700; 
  padding:4px 10px; 
  border-radius:20px; 
}

.product-body { padding:1.5rem; }

.specs-list { 
  list-style:none; 
  margin-bottom:1.2rem; 
}

.specs-list li { 
  display:flex; 
  align-items:flex-start; 
  gap:8px; 
  font-size:0.85rem; 
  color:var(--gray); 
  padding:5px 0; 
  border-bottom:1px dashed #F0D890; 
}

.specs-list li:last-child { border-bottom:none; }

.specs-list li::before { 
  content:'▸'; 
  color:var(--amber); 
  flex-shrink:0; 
  margin-top:1px; 
}

.price-row { 
  display:flex; 
  justify-content:space-between; 
  align-items:center; 
  background:var(--light); 
  padding:12px 14px; 
  border-radius:8px; 
  margin-top:1rem; 
}

.price-main { 
  font-family:'Montserrat',sans-serif; 
  font-weight:900; 
  font-size:1.4rem; 
  color:var(--orange); 
}

.price-sub { 
  font-size:0.72rem; 
  color:var(--gray); 
}

.subsidy-chip { 
  background:var(--amber); 
  color:var(--dark); 
  font-size:0.72rem; 
  font-weight:700; 
  padding:4px 10px; 
  border-radius:20px; 
}

.warranty-strip { 
  display:flex; 
  gap:0.8rem; 
  margin-top:1rem; 
  flex-wrap:wrap; 
}

.w-tag { 
  background:#FFF3DC; 
  border:1px solid #F0D890; 
  font-size:0.7rem; 
  font-weight:600; 
  color:var(--dark); 
  padding:4px 10px; 
  border-radius:20px; 
}

.panel-link {
  cursor: pointer;;
  color: var(--amber);
  font-weight: 600;
  transition: color 0.2s;
}

.panel-link:hover {
  color: var(--orange, #F5A000);
}

.battery-link {
  cursor: pointer;
  color: var(--amber);
  font-weight: 600;
  transition: color 0.2s;
}

.battery-link:hover {
  color: var(--orange, #F5A000);
}

.battery-modal-img {
  display: block;
  max-width: 220px;
  width: 100%;
  margin: 0 auto 1.5rem;
  border-radius: 8px;
}

.modal-product-img {
  display: block;
  max-width: 360px;
  width: 100%;
  margin: 0 auto 1.5rem;
  border-radius: 8px;
}

.inverter-link {
  cursor: pointer;
  color: var(--amber);
  font-weight: 600;
  transition: color 0.2s;
}

.inverter-link:hover {
  color: var(--orange, #F5A000);
}

.pdf-frame-wrap {
  width: 100%;
  height: 480px;
  margin-bottom: 1.2rem;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
}

.pdf-frame {
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 768px) {
  .pdf-frame-wrap { height: 340px; }
}

/* EV Scooter Cards */
.ev-product-grid { 
  display:grid; 
  grid-template-columns:repeat(3,1fr); 
  gap:1.5rem; 
  margin-top:1.5rem; 
}

.ev-product-card { 
  background:var(--white); 
  border-radius:12px; 
  border:1px solid #B2DFDB; 
  overflow:hidden; 
  box-shadow:0 2px 16px rgba(0,184,107,0.07); 
  transition:transform 0.3s,box-shadow 0.3s; 
}

.ev-product-card:hover { 
  transform:translateY(-5px); 
  box-shadow:0 8px 32px rgba(0,184,107,0.2); 
}

.ev-product-header { 
  background:linear-gradient(135deg,var(--ev-green),var(--ev-teal)); 
  padding:1.2rem 1.5rem; 
}

.ev-product-header h3 { 
  font-family:'Montserrat',sans-serif; 
  font-weight:900; 
  font-size:1.1rem; 
  color:white; 
}

.ev-product-header .ev-model-tag { 
  background:rgba(255,255,255,0.2); 
  color:white; 
  font-size:0.7rem; 
  font-weight:700; 
  padding:3px 10px; 
  border-radius:20px; 
  margin-top:4px; 
  display:inline-block; 
}
.ev-product-body { padding:1.5rem; }

.ev-specs-list { 
  list-style:none; 
  margin-bottom:1.2rem; 
}

.ev-specs-list li { 
  display:flex; 
  align-items:flex-start; 
  gap:8px; 
  font-size:0.85rem; 
  color:var(--gray); 
  padding:5px 0; 
  border-bottom:1px dashed #B2DFDB; 
}

.ev-specs-list li:last-child { border-bottom:none; }

.ev-specs-list li::before { 
  content:'⚡'; 
  font-size:0.7rem; 
  flex-shrink:0; 
  margin-top:2px; 
}

.ev-price-row { 
  display:flex; 
  justify-content:space-between; 
  align-items:center; 
  background:var(--ev-light); 
  padding:12px 14px; 
  border-radius:8px; 
  margin-top:1rem; 
}

.ev-price-main { 
  font-family:'Montserrat',sans-serif; 
  font-weight:900; 
  font-size:1.1rem; 
  color:var(--ev-teal); 
}

.ev-price-retail { 
  font-family:'Montserrat',sans-serif; 
  font-weight:700; 
  font-size:0.95rem; 
  color:var(--ev-green); 
}

.ev-price-label { 
  font-size:0.68rem; 
  color:var(--gray); 
  display:block; 
}
.ev-warranty-strip { 
  display:flex; 
  gap:0.8rem; 
  margin-top:1rem; 
  flex-wrap:wrap; 
}
.ev-w-tag { 
  background:var(--ev-light); 
  border:1px solid var(--ev-green); 
  font-size:0.7rem; 
  font-weight:600; 
  color:var(--ev-teal); 
  padding:4px 10px; 
  border-radius:20px; 
}

.ev-features-strip { 
  display:flex; 
  gap:0.5rem; 
  flex-wrap:wrap; 
  margin-top:0.8rem; 
}

.ev-feature { 
  background:#F0FFF8; 
  border:1px solid #B2DFDB; 
  font-size:0.68rem; 
  font-weight:600; 
  color:var(--ev-teal); 
  padding:3px 8px; 
  margin-bottom: 2rem; 
  border-radius:20px; 
}

.ev-img-placeholder { 
  width:100%; 
  height: 180px; 
  background:linear-gradient(135deg,#E8FFF6,#B2DFDB); 
  display:flex; 
  align-items:center; 
  justify-content:center; 
  font-size:3rem; 
}

.ev-img-placeholder img {
  max-width: 120%;
  max-height: 140%;
  width: auto;
  height: auto;
  object-position: center;
  object-fit: contain;
} 

.ev-section-header { 
  text-align:center; 
  margin-bottom:2rem; 
}

.ev-section-header h3 { 
  font-family:'Montserrat',sans-serif; 
  font-size:1.5rem; 
  font-weight:900; 
  color:var(--ev-teal); 
  margin-bottom:0.5rem; 
}
.ev-section-header p { 
  color:var(--gray); 
  font-size:0.9rem; 
}

/* ── CALCULATOR ── */
.calc-section {
  background:
    linear-gradient(135deg, rgba(13,27,75,0.88) 0%, rgba(10,15,46,0.88) 100%),
    url('https://images.unsplash.com/photo-1611365892117-00ac5ef43c90?w=1920&q=80') center/cover no-repeat fixed;
  padding: 80px 5%;
}

.calc-section .section-title { color:var(--white); }

.calc-card { 
  max-width:860px; 
  margin:3rem auto 0; 
  display:grid; 
  grid-template-columns:1fr 1fr; 
  gap:2rem; 
  background:rgba(255,255,255,0.05); 
  border:1px solid rgba(245,160,0,0.3); 
  border-radius:16px; 
  padding:2.5rem; 
}

.calc-label { 
  display:block; 
  font-weight:600; 
  font-size:0.9rem; 
  color:var(--gold); 
  margin-bottom:8px; 
}

.calc-input { 
  width:100%; 
  padding:12px 16px; 
  background:rgba(255,255,255,0.08); 
  border:1.5px solid rgba(245,160,0,0.3); 
  border-radius:8px; 
  color:var(--white); 
  font-size:1rem; 
  font-family:'Inter',sans-serif; 
  outline:none; 
  transition:border-color 0.3s; 
}

.calc-input:focus { border-color:var(--amber); }
.calc-input option { 
  background:#0D1B4B; 
  color:white; 
}

.calc-btn { 
  width:100%; 
  margin-top:1.5rem; 
  padding:14px; 
  background:linear-gradient(135deg,var(--amber),var(--orange)); 
  border:none; 
  border-radius:8px; 
  font-family:'Montserrat',sans-serif; 
  font-weight:700; 
  font-size:1rem; 
  color:var(--dark); 
  cursor:pointer; 
  transition:transform 0.2s,box-shadow 0.2s; 
  box-shadow:0 4px 16px rgba(245,160,0,0.3); 
}

.calc-btn:hover { 
  transform:translateY(-2px); 
  box-shadow:0 8px 24px rgba(245,160,0,0.5); 
}

.calc-result { 
  display:none; 
  animation:fadeIn 0.4s ease; 
}

.calc-result.show { display:block; }

@keyframes fadeIn { 
  from{
    opacity:0;
    transform:translateY(10px);
  }
  to{
    opacity:1;
    transform:none;
  } 
}
.result-title { 
  font-family:'Montserrat',sans-serif; 
  color:var(--amber); 
  font-size:1.1rem; 
  margin-bottom:1.2rem; 
}

.result-grid { 
  display:grid; 
  grid-template-columns:1fr 1fr; 
  gap:1rem; 
}

.result-box { 
  background:rgba(255,255,255,0.06); 
  border:1px solid rgba(245,160,0,0.2); 
  border-radius:10px; 
  padding:1rem; 
  text-align:center; 
}

.result-num { 
  display:block; 
  font-family:'Montserrat',sans-serif; 
  font-weight:900; 
  font-size:1.2rem; 
  color:var(--amber); 
}

.result-label { 
  display:block; 
  font-size:0.75rem; 
  color:#AAA; 
  margin-top:4px; 
  text-transform:uppercase; 
  letter-spacing:0.5px; 
}

.result-banner { 
  margin-top:1.2rem; 
  background:linear-gradient(135deg,var(--amber),var(--orange)); 
  color:var(--dark); 
  padding:12px; 
  border-radius:8px; 
  text-align:center; 
  font-weight:600; 
  font-size:0.9rem; 
}

.result-reason { 
  margin-top:1rem; 
  background:rgba(245,160,0,0.08); 
  border:1px solid rgba(245,160,0,0.3); 
  border-left:4px solid var(--amber); 
  border-radius:8px; 
  padding:12px 16px; 
  font-size:0.88rem; 
  color:#CCC; 
  line-height:1.6; 
}

/* ── TESTIMONIALS ── */
#testimonials {
  background:
    linear-gradient(135deg, rgba(10,15,46,0.90) 0%, rgba(13,27,75,0.90) 100%),
    url('https://images.unsplash.com/photo-1466611653911-95081537e5b7?w=1920&q=80') center/cover no-repeat fixed;
}

#testimonials .section-title { color:var(--white); }

.testi-grid { 
  display:grid; 
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); 
  gap:1.5rem; 
  margin-top:3rem; 
}

.testi-card { 
  background:rgba(255,255,255,0.05); 
  border:1px solid rgba(245,160,0,0.2); 
  border-radius:12px; 
  padding:1.8rem; 
  transition:border-color 0.3s; 
}

.testi-card:hover { border-color:var(--amber); }

.testi-card.ev-testi { border-color:rgba(0,184,107,0.2); }

.testi-card.ev-testi:hover { border-color:var(--ev-green); }

.stars { 
  color:var(--amber); 
  font-size:1.1rem; 
  margin-bottom:0.8rem; 
}

.testi-text { 
  color:#CCC; 
  font-size:0.92rem; 
  line-height:1.75; 
  font-style:italic; 
  margin-bottom:1.2rem; 
}

.testi-badge { 
  display:inline-block; 
  font-size:0.68rem; 
  font-weight:700; 
  padding:3px 10px; 
  border-radius:20px; 
  margin-bottom:0.8rem; 
}

.solar-testi-badge { 
  background:rgba(245,160,0,0.2); 
  color:var(--amber); 
  border:1px solid var(--amber); 
}

.ev-testi-badge { 
  background:rgba(0,184,107,0.2); 
  color:var(--ev-green); 
  border:1px solid var(--ev-green); 
}

.testi-author { 
  display:flex; 
  align-items:center; 
  gap:0.8rem; 
}

.author-avatar { 
  width:44px; 
  height:44px; 
  border-radius:50%; 
  background:linear-gradient(135deg,var(--amber),var(--orange)); 
  display:flex; 
  align-items:center; 
  justify-content:center; 
  font-family:'Montserrat',sans-serif; 
  font-weight:900; 
  color:var(--dark); 
  font-size:1rem; 
  flex-shrink:0; 
}

.author-avatar.ev-avatar { 
  background:linear-gradient(135deg,var(--ev-green),var(--ev-teal)); 
  color:white; 
}

.author-name { 
  font-weight:600; 
  color:var(--white); 
  font-size:0.9rem; 
}
.author-loc { 
  color:#888; 
  font-size:0.78rem; 
}

/* ── CONTACT ── */
#contact {
  background:
    linear-gradient(135deg, rgba(255,248,238,0.93) 0%, rgba(255,243,220,0.93) 100%),
    url('https://images.unsplash.com/photo-1509391366360-2e959784a276?w=1920&q=80') center/cover no-repeat fixed;
}
.contact-grid { 
  display:grid; 
  grid-template-columns:1fr 1.2fr; 
  gap:4rem; 
  align-items:start; 
  margin-top:3rem; 
}
.contact-info h3 { 
  font-family:'Montserrat',sans-serif; 
  font-size:1.2rem; 
  font-weight:700; 
  color:var(--dark); 
  margin-bottom:1.5rem; 
}

.contact-item { 
  display:flex; 
  gap:1rem; 
  align-items:flex-start; 
  margin-bottom:1.5rem; 
}

.contact-icon { 
  width:44px; 
  height:44px; 
  flex-shrink:0; 
  background:linear-gradient(135deg,var(--amber),var(--orange)); 
  border-radius:8px; 
  display:flex; 
  align-items:center; 
  justify-content:center; 
  font-size:1.2rem; 
}

.contact-item-text strong { 
  display:block; 
  font-weight:600; 
  color:var(--dark); 
  font-size:0.85rem; 
  text-transform:uppercase; 
  letter-spacing:0.5px; 
  margin-bottom:3px; 
}

.contact-item-text span, .contact-item-text a { 
  color:var(--gray); 
  font-size:0.9rem; 
  text-decoration:none; 
  line-height:1.6; 
  display:block; 
}

.contact-item-text a:hover { color:var(--amber); }

.contact-form { 
  background:var(--white); 
  border-radius:14px; 
  padding:2.5rem; 
  box-shadow:0 4px 32px rgba(232,88,10,0.08); 
  border:1px solid #F0D890; 
}

.contact-form h3 { 
  font-family:'Montserrat',sans-serif; 
  font-size:1.3rem; 
  font-weight:700; 
  color:var(--dark); 
  margin-bottom:1.5rem; 
}

.form-row { 
  display:grid; 
  grid-template-columns:1fr 1fr; 
  gap:1rem; 
}

.form-group { margin-bottom:1rem; }

.form-group label { 
  display:block; 
  font-size:0.82rem; 
  font-weight:600; 
  color:var(--dark); 
  margin-bottom:5px; 
  text-transform:uppercase; 
  letter-spacing:0.5px; 
}

.form-group input, .form-group select, .form-group textarea { 
  width:100%; 
  padding:11px 14px; 
  border:1.5px solid #E8D8B0; 
  border-radius:6px; 
  font-size:0.9rem; 
  font-family:'Inter',sans-serif; 
  background:var(--cream); 
  color:var(--dark); 
  transition:border-color 0.25s; 
  outline:none; 
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color:var(--amber); }

.form-group textarea { 
  resize:vertical; 
  min-height:110px; 
}

.form-submit { 
  width:100%; 
  padding:14px; 
  background:linear-gradient(135deg,var(--amber),var(--orange)); 
  border:none; 
  border-radius:6px; 
  cursor:pointer; 
  font-family:'Montserrat',sans-serif; 
  font-weight:700; 
  font-size:1rem; 
  color:var(--dark); 
  transition:transform 0.2s,box-shadow 0.2s; 
  box-shadow:0 4px 16px rgba(245,160,0,0.35); 
  margin-top:0.5rem; 
}

.form-submit:hover { 
  transform:translateY(-2px); 
  box-shadow:0 8px 24px rgba(245,160,0,0.45); 
}

/* ══ SOCIAL MEDIA LINKS ══ */
.social-links {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 8px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1.5px solid #F0D890;
  color: var(--dark);
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
  color: var(--white) !important;
}

.social-links{
  display:flex;
  gap:12px;
  margin-top:15px;
  flex-wrap:wrap;
}

.social-links a{
  width:44px;
  height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#fff;
  border:1px solid #e5e5e5;
  border-radius:10px;
  color:#0A0F2E;
  text-decoration:none;
  font-size:20px;
  transition:.3s ease;
}

.social-links a:hover{
  transform:translateY(-3px);
  border-color:#F5A000;
  color:#F5A000;
  box-shadow:0 8px 20px rgba(245,160,0,.25);
}

/* Brand-specific hover colors */
.social-link.facebook:hover  { 
  background: #1877F2; 
  border-color: #1877F2; 
}

.social-link.instagram:hover { 
  background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4); 
  border-color: #DD2A7B; 
}

.social-link.linkedin:hover  { 
  background: #0A66C2; 
  border-color: #0A66C2; 
}
.social-link.youtube:hover   { 
  background: #FF0000; 
  border-color: #FF0000; 
}
.social-link.twitter:hover   { 
  background: #000000; 
  border-color: #000000; 
}
.social-link.whatsapp:hover  { 
  background: #25D366; 
  border-color: #25D366; 
}

/* Mobile responsive */
@media (max-width: 600px) {
  .social-link {
    width: 38px;
    height: 38px;
  }
  .social-links {
    gap: 0.5rem;
  }
}

/* ══ VIEW DETAILS BUTTON ══ */
.view-details-btn {
  width: 100%;
  margin-top: 1rem;
  padding: 10px 0;
  background: transparent;
  border: 1.5px solid var(--amber);
  color: var(--amber);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.view-details-btn:hover {
  background: var(--amber);
  color: var(--dark);
}

.ev-product-card .view-details-btn {
  border-color: var(--ev-green);
  color: var(--ev-green);
}

.ev-product-card .view-details-btn:hover {
  background: var(--ev-green);
  color: white;
}

/* ══ MODAL OVERLAY ══ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  overflow-y: auto;
}
.modal-overlay.active {
  display: flex;
}

/* ══ MODAL BOX ══ */
.modal-box {
  background: var(--white);
  border-radius: 16px;
  max-width: 680px;
  width: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  animation: modalSlideIn 0.3s ease;
  margin: auto;
}
@keyframes modalSlideIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══ MODAL CLOSE BUTTON ══ */
.modal-close {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(0,0,0,0.1);
  border: none;
  width: 34px; height: 34px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  color: #333;
  z-index: 10;
  transition: background 0.2s;
}
.modal-close:hover { background: rgba(0,0,0,0.2); }

/* ══ MODAL HEADER BAND ══ */
.modal-header-band {
  padding: 1.8rem 2rem 1.4rem;
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}
.modal-header-band.solar-band {
  background: linear-gradient(135deg, var(--dark), var(--deep));
  border-bottom: 3px solid var(--amber);
}
.modal-header-band.ev-band {
  background: linear-gradient(135deg, var(--ev-dark), #001030);
  border-bottom: 3px solid var(--ev-green);
}
.modal-icon {
  font-size: 3rem;
  line-height: 1;
  flex-shrink: 0;
}
.modal-icon img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  padding: 6px;
}
.modal-header-text { flex: 1; }
.modal-product-type {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.4rem;
}
.solar-band .modal-product-type { color: var(--amber); }
.ev-band    .modal-product-type { color: #60B8FF; }
.modal-product-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.4rem;
}
.modal-product-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
}
.solar-band .modal-product-tag { background: rgba(245,160,0,0.2); color: var(--gold); }
.ev-band    .modal-product-tag { background: rgba(26,111,245,0.2); color: #90C8FF; }

/* ══ MODAL BODY ══ */
.modal-body { padding: 1.6rem 2rem 2rem; }

.modal-section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gray);
  margin-bottom: 0.8rem;
  margin-top: 1.4rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid #EEE;
}
.modal-section-title:first-child { margin-top: 0; }

/* Specs table */
.modal-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 1.2rem;
}
.modal-spec-item {
  display: flex;
  flex-direction: column;
  padding: 0.6rem 0.8rem;
  background: #F8F8F8;
  border-radius: 8px;
  border-left: 3px solid var(--amber);
}
.ev-modal .modal-spec-item { border-left-color: var(--ev-green); }
.modal-spec-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gray);
  margin-bottom: 2px;
}
.modal-spec-value {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--deep);
}

/* Price row */
.modal-price-block {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 0.4rem;
}
.modal-price-main {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--dark);
}
.modal-price-sub { font-size: 0.75rem; color: var(--gray); }
.modal-subsidy-badge {
  background: #E8FFF0;
  border: 1px solid #25D366;
  color: #1A8044;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
}
.modal-price-retail {
  font-size: 0.82rem;
  color: var(--gray);
  text-decoration: line-through;
  margin-left: 0.3rem;
}

/* Warranty badges */
.modal-warranty-row {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 0.4rem;
}
.modal-w-badge {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  background: var(--light);
  color: var(--dark);
  border: 1px solid var(--gold);
}

/* Highlights */
.modal-highlights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.modal-highlight-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--deep);
  font-weight: 500;
}
.modal-highlight-item::before {
  content: '✓';
  color: #25D366;
  font-weight: 900;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* CTA buttons */
.modal-cta-row {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.6rem;
  flex-wrap: wrap;
}
.modal-cta-primary {
  flex: 1;
  padding: 13px 20px;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  color: var(--dark);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  display: block;
  transition: opacity 0.2s;
}
.modal-cta-primary:hover { opacity: 0.9; }
.modal-cta-wa {
  flex: 1;
  padding: 13px 20px;
  background: #25D366;
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  display: block;
}

/* ══ RESPONSIVE MODAL ══ */
@media (max-width: 600px) {
  .modal-box { border-radius: 12px; }
  .modal-header-band { padding: 1.4rem 1.2rem; gap: 0.8rem; }
  .modal-product-name { font-size: 1.1rem; }
  .modal-body { padding: 1.2rem 1.2rem 1.6rem; }
  .modal-specs-grid { grid-template-columns: 1fr; }
  .modal-highlights-grid { grid-template-columns: 1fr; }
  .modal-icon img { width: 64px; height: 64px; }
}

/* ── FOOTER ── */
footer { 
  background:#0F0800; 
  border-top:2px solid var(--amber); 
  padding:2.5rem 5%; 
  display:flex; 
  justify-content:space-between; 
  align-items:center; 
  flex-wrap:wrap; 
  gap:1rem; 
}

.footer-brand { 
  font-family:'Montserrat',sans-serif; 
  font-weight:900; 
  font-size:1rem; 
  color:var(--amber); 
}

.footer-brand small { 
  display:block; 
  color:#888; 
  font-size:0.7rem; 
  font-weight:400; 
  margin-top:2px; 
}

.footer-products { 
  display:flex; 
  gap:1rem; 
  flex-wrap:wrap; 
}

.footer-tag { 
  font-size:0.75rem; 
  font-weight:600; 
  padding:4px 12px; 
  border-radius:20px; 
}

.footer-solar-tag { 
  background:rgba(245,160,0,0.15); 
  color:var(--amber); 
  border:1px solid var(--amber); 
}

.footer-ev-tag { 
  background:rgba(0,184,107,0.15); 
  color:var(--ev-green); 
  border:1px solid var(--ev-green); 
}

footer p { 
  color:#666; 
  font-size:0.8rem; 
}

footer p span { color:var(--amber); }

/* ══ FOOTER SOCIAL ICONS ══ */
.footer-social {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.footer-social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 160, 0, 0.1);
  border: 1px solid rgba(245, 160, 0, 0.3);
  color: var(--amber);
  transition: all 0.3s;
  text-decoration: none;
}

.footer-social-icon:hover {
  background: var(--amber);
  color: var(--dark);
  transform: translateY(-3px);
}

/* WhatsApp */
.whatsapp-float { 
  position:fixed; 
  bottom:30px; 
  right:30px; 
  background:#25D366; 
  color:white; 
  padding:14px 22px; 
  border-radius:50px; 
  font-weight:700; 
  font-size:0.95rem; 
  text-decoration:none; 
  display:flex; 
  align-items:center; 
  gap:8px; 
  box-shadow:0 4px 20px rgba(37,211,102,0.5); 
  z-index:9999; 
  transition:transform 0.3s,box-shadow 0.3s; 
  animation:wa-pulse 2s infinite; 
}

.whatsapp-float:hover { 
  transform:translateY(-4px); 
  box-shadow:0 8px 30px rgba(37,211,102,0.6); 
  color:white; 
}

@keyframes wa-pulse { 
  0%,100%{
    box-shadow:0 4px 20px rgba(37,211,102,0.5);
  }
  50%{
    box-shadow:0 4px 30px rgba(37,211,102,0.8);
  } 
}

/* Floating Call Button */
.floating-call{
  position:fixed;
  left:20px;
  bottom:25px;
  z-index:9999;

  display:flex;
  align-items:center;
  gap:10px;

  background:#007bff;
  color:#fff;

  padding:12px 18px;
  border-radius:50px;

  text-decoration:none;
  font-weight:700;
  font-size:15px;

  box-shadow:0 8px 25px rgba(0,0,0,.25);

  transition:.3s ease;
  animation:callPulse 2s infinite;
}

.floating-call:hover{
  transform:translateY(-3px);
  background:#0056b3;
}

.call-icon{
  font-size:22px;
}

@keyframes callPulse{
  0%{
    box-shadow:0 0 0 0 rgba(0,123,255,.45);
  }
  70%{
    box-shadow:0 0 0 18px rgba(0,123,255,0);
  }
  100%{
    box-shadow:0 0 0 0 rgba(0,123,255,0);
  }
}

@media(max-width:768px){
  .floating-call{
    left:15px;
    bottom:20px;
    padding:11px 16px;
    font-size:14px;
  }

  .call-icon{
    font-size:20px;
  }
}

/* Scroll reveal */
.reveal { 
  opacity: 0; 
  transform: translateY(24px); 
  transition: opacity 0.6s ease, transform 0.6s ease; 
}

.no-js .reveal { 
  opacity: 1; 
  transform: none; 
}

.reveal.visible { 
  opacity:1; 
  transform:none; 
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .product-grid, .ev-product-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 900px) {
  .about-grid, .contact-grid { 
    grid-template-columns:1fr; 
    gap:2.5rem; 
  }
  .hero-dual-cards { flex:0 0 100%; }
  .why-grid { grid-template-columns:1fr 1fr; }
}

@media (max-width: 768px) {
  .hamburger { display:flex; }
  .nav-links {
    display:none; 
    flex-direction:column; 
    position:fixed;
    top:68px; 
    left:0; 
    width:100%;
    background:rgba(10,15,46,0.98);
    padding:1.5rem 0; 
    border-bottom:2px solid var(--amber);
    z-index:999; 
    gap:0;
  }

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

  .nav-links li { 
    width:100%; 
    text-align:center; 
  }

  .nav-links a { 
    display:block; 
    padding:14px 0; 
    font-size:1rem; 
    border-bottom:1px solid rgba(245,160,0,0.1); 
  }

  .nav-links a:hover { background:rgba(245,160,0,0.1); }

  .nav-cta { 
    margin:0.8rem 2rem !important; 
    display:block !important; 
    text-align:center !important; 
    border-radius:6px !important; 
  }

  section { 
    padding:60px 4%; 
    overflow-x:hidden; 
    box-sizing:border-box; 
  }
  .hero-content { 
    padding:0 1rem; 
    gap:1.5rem; 
  }
  .hero-text { 
    width:100%; 
    min-width:unset; 
  }
  .form-row { 
    grid-template-columns:1fr; 
  }
  .about-highlights { 
    grid-template-columns:1fr 1fr; 
  }
  .product-grid, .ev-product-grid { 
    grid-template-columns:1fr; 
  }
  .why-grid { 
    grid-template-columns:1fr; 
  }
  .calc-card { 
    grid-template-columns:1fr; 
  }
  .address-map-row { 
    flex-direction:column; 
  }
  .highlight-box .h-num { 
    font-size:1.6rem; 
  }
  .highlight-box .h-label { 
    font-size:0.65rem; 
  }
  .highlight-box { 
    padding:1rem 0.8rem; 
  }
  .footer-products { 
    justify-content:center; 
  }
  .wa-text { 
    display:none; 
  }
  .whatsapp-float { 
    padding:16px; 
    border-radius:50%; 
  }
}
@media (max-width: 600px) {
  .product-grid, .ev-product-grid { grid-template-columns:1fr; }
  .why-grid { grid-template-columns:1fr; }
}
