/* =============================================
   BLUEVOLT SOLAR ENERGY — MAIN STYLESHEET
   Colors: #24447E (blue) | #F09029 (orange)
   ============================================= */

:root {
  --blue: #24447E;
  --blue-dark: #182f5e;
  --blue-light: #2d55a0;
  --orange: #F09029;
  --orange-dark: #d4791a;
  --white: #ffffff;
  --off-white: #f7f8fc;
  --light-gray: #eef0f6;
  --gray: #6b7280;
  --dark: #111827;
  --text: #374151;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(36,68,126,0.12);
  --shadow-lg: 0 8px 48px rgba(36,68,126,0.18);
  --transition: 0.3s ease;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

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

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

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===== UTILITY ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-tag {
  display: inline-block;
  background: rgba(240,144,41,0.12);
  color: var(--orange-dark);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--blue-dark);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-header p { color: var(--gray); font-size: 1.05rem; }
.section-header.light h2 { color: var(--white); }
.section-header.light p { color: rgba(255,255,255,0.75); }
.section-header.light .section-tag {
  background: rgba(255,255,255,0.15);
  color: var(--orange);
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange);
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  letter-spacing: 0.01em;
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(240,144,41,0.35);
}
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 28px;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.6);
  cursor: pointer;
  transition: all var(--transition);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}
.full-width { width: 100%; justify-content: center; }

/*THE HEADE MENU DROP DOWN*/



/*ENDTHE HEADE MENU DROP DOWN*/

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(36,68,126,0.10);
  transition: box-shadow var(--transition);
  padding: 0;
}
.navbar.scrolled {
  box-shadow: 0 4px 28px rgba(36,68,126,0.16);
}
.nav-inner {
  display: flex; align-items: center; gap: 32px;
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  height: 72px;
}
.nav-logo img { height: 48px; width: auto; object-fit: contain; }
.nav-links {
  display: flex; align-items: center; gap: 28px;
  margin-left: auto;
}
.nav-links a {
  color: var(--blue-dark);
  font-weight: 500;
  font-size: 0.92rem;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--orange);
  transform: scaleX(0); transition: transform var(--transition);
}
.nav-links a:hover { color: var(--orange); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-right {
  display: flex; align-items: center; gap: 16px; flex-shrink: 0;
}
.nav-cta { margin-left: 0; padding: 10px 22px; font-size: 0.88rem; }
.nav-location {
  display: flex; align-items: center; gap: 5px;
  color: var(--gray);
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
  border-left: 1px solid var(--light-gray);
  padding-left: 16px;
}
.nav-location svg { color: var(--orange); flex-shrink: 0; }

/* ===== SERVICES DROPDOWN ===== */
.nav-dropdown {
  position: relative;
}
.dropdown-trigger {
  display: flex; align-items: center; gap: 5px;
  background: none; border: none; cursor: pointer;
  color: var(--blue-dark); font-weight: 500; font-size: 0.92rem;
  font-family: inherit; padding: 0;
  transition: color var(--transition);
  white-space: nowrap;
}
.dropdown-trigger:hover { color: var(--orange); }
.dropdown-arrow {
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.nav-dropdown.open .dropdown-arrow,
.nav-dropdown:hover .dropdown-arrow { transform: rotate(180deg); }
.dropdown-menu {
  display: none;
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(36,68,126,0.18);
  min-width: 280px;
  overflow: visible;
  z-index: 9999;
  border: 1px solid rgba(36,68,126,0.08);
  padding: 24px 0 8px;
  margin-top: 0;
}
/* Bridge the gap between trigger and menu so hovering across doesn't close it */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 16px;
  background: transparent;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu { display: block; }
.dropdown-menu a {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 18px;
  color: var(--blue-dark) !important;
  font-size: 0.9rem;
  transition: background 0.18s ease, color 0.18s ease;
  text-decoration: none;
}
.dropdown-menu a:hover {
  background: rgba(255,107,0,0.06);
  color: var(--orange) !important;
}
.dropdown-menu a:hover .dd-text strong { color: var(--orange); }
.dd-icon { font-size: 1.1rem; flex-shrink: 0; width: 28px; text-align: center; }
.dd-text { display: flex; flex-direction: column; gap: 1px; }
.dd-text strong { font-size: 0.88rem; font-weight: 600; color: var(--blue-dark); display: block; transition: color 0.18s; }
.dd-text small { font-size: 0.75rem; color: var(--gray); font-weight: 400; }
/* separator line between dropdown items */
.dropdown-menu a + a { border-top: 1px solid rgba(36,68,126,0.06); }

/* ===== PAGE HERO (for inner service pages) ===== */
.page-hero {
  background-size: cover; background-position: center;
  padding: 120px 0 80px;
  text-align: center;
  color: var(--white);
}
.page-hero .section-tag { background: rgba(255,255,255,0.15); color: var(--white); border-color: rgba(255,255,255,0.3); }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3.2rem); margin: 16px 0 20px; color: var(--white); line-height: 1.2; }
.page-hero p { font-size: 1.1rem; max-width: 680px; margin: 0 auto 32px; color: rgba(255,255,255,0.9); }

/* ===== PROCESS STEPS ===== */
.process { background: var(--light); padding: 80px 0; }
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; margin-top: 48px; }
.process-step { text-align: center; padding: 32px 24px; background: var(--white); border-radius: 16px; box-shadow: var(--shadow); }
.step-number { width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(135deg, var(--orange), #e55a00); color: var(--white); font-size: 1.5rem; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-family: 'Barlow Condensed', sans-serif; }
.process-step h3 { font-size: 1.1rem; color: var(--blue-dark); margin-bottom: 10px; }
.process-step p { font-size: 0.9rem; color: var(--gray); line-height: 1.6; }

/* ===== CTA SECTION ===== */
.cta-section { background: linear-gradient(135deg, var(--blue-dark) 0%, #1a3a7a 100%); padding: 80px 0; text-align: center; color: var(--white); }
.cta-section h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--white); margin-bottom: 16px; }
.cta-section p { font-size: 1.1rem; color: rgba(255,255,255,0.85); margin-bottom: 36px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ===== PACKAGES TEASER ===== */
.packages-teaser { padding: 80px 0; background: var(--white); }
.pkg-badge-featured { position: absolute; top: -12px; right: 20px; background: var(--orange); color: var(--white); font-size: 0.75rem; font-weight: 700; padding: 4px 12px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.5px; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 8px 4px; margin-left: auto; flex-shrink: 0;
  min-width: 32px; align-items: center; justify-content: center;
  z-index: 1300; position: relative;
}
.hamburger span {
  width: 24px; height: 2px; background: var(--blue-dark);
  transition: all var(--transition); display: block; border-radius: 2px;
  flex-shrink: 0;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
  position: relative; height: calc(100vh - 72px); min-height: 540px;
  /* margin-top: 72px; remove top gap*/
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1s ease;
  transform: scale(1.05);
  animation: kenBurns 8s ease-in-out infinite alternate;
}
.hero-slide.active { opacity: 1; }
@keyframes kenBurns {
  from { transform: scale(1.05); }
  to { transform: scale(1); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(18,30,60,0.85) 0%,
    rgba(36,68,126,0.6) 50%,
    rgba(18,30,60,0.4) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 760px; padding: 60px 24px 0;
  margin: 0 auto;
  animation: fadeUp 0.9s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-badge {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-weight: 700; font-size: 0.75rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 100px;
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: .85; /*1.05*/
  margin-bottom: 0px;
  margin-top: 10px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-title em { color: var(--orange); font-style: normal; }
.hero-sub {
  color: rgba(255,255,255,0.85);
  font-size: 1.15rem;
  max-width: 560px;
  margin-bottom: 5px;
  line-height: 1.65;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats {
  display: flex; align-items: center; gap: 24px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  margin-top: -30px !important;
  padding: 18px 28px;
  border-radius: var(--radius);
  width: fit-content;
}
.stat { text-align: center; }
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.stat span { font-size: 0.78rem; color: rgba(255,255,255,0.75); text-transform: uppercase; letter-spacing: 0.06em; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.25); }
.hero-dots {
  position: absolute; bottom: 0px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 3;
}
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none; cursor: pointer; transition: all var(--transition);
}
.hero-dot.active { background: var(--orange); width: 24px; border-radius: 4px; }
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 3;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 1.8rem;
  cursor: pointer;
  transition: background var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.hero-arrow:hover { background: var(--orange); border-color: var(--orange); }
.hero-prev { left: 24px; }
.hero-next { right: 24px; }

/* ===== BRANDS BAR ===== */
.brands-bar {
  background: var(--blue-dark);
  padding: 28px 0;
  overflow: hidden;
  display: flex; align-items: center; gap: 32px;
}
.brands-label {
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  white-space: nowrap;
  padding-left: 32px;
  flex-shrink: 0;
}
.brands-track-wrap { overflow: hidden; flex: 1; }
.brands-track {
  display: flex; align-items: center; gap: 48px;
  animation: scrollBrands 24s linear infinite;
  width: max-content;
}
.brands-track:hover { animation-play-state: paused; }
@keyframes scrollBrands {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.brand-logo {
  display: flex; align-items: center; justify-content: center;
  height: 52px; width: 120px; flex-shrink: 0;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 8px 16px;
  transition: background var(--transition);
}
.brand-logo:hover { background: rgba(255,255,255,0.18); }
.brand-logo img { max-height: 36px; max-width: 100px; object-fit: contain; filter: brightness(0) invert(1); }
/* Pylontech logo has light background - invert the whole image to show on dark bar */
.brand-logo img[alt="Pylontech"] { filter: invert(1) brightness(1.8) contrast(1.2); }

/* ===== SERVICES ===== */
.services { padding: 96px 0; background: var(--off-white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-bottom: 64px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-img {
  position: relative; height: 220px; overflow: hidden;
}
.service-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-img img { transform: scale(1.06); }
.service-icon {
  position: absolute; bottom: 16px; right: 16px;
  background: var(--orange);
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 16px rgba(240,144,41,0.4);
}
.service-body { padding: 24px; }
.service-body h3 {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 10px;
}
.service-body p { color: var(--gray); font-size: 0.92rem; margin-bottom: 16px; }
.service-list li {
  font-size: 0.88rem; color: var(--text);
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}
.service-list li::before {
  content: '';
  position: absolute; left: 0; top: 11px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange);
}
/* ===== SUNRUN-STYLE SEGMENTS BAR ===== */
.segments-bar-outer {
  background-size: cover;
  background-position: center;
  position: relative;
}
.segments-bar-outer::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(8, 12, 24, 0.88);
  z-index: 0;
}
.segments-bar {
  position: relative; z-index: 1;
  padding: 60px 0;
}
.segments-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  text-align: left;
  max-width: 1200px;
  margin: 0 auto 48px;
  padding: 0 24px;
  line-height: 1.2;
}
.segments-features {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  gap: 0;
}
.segment-feature {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 32px 0 0;
}
.segment-feature:first-child { padding-left: 0; }
.seg-icon-wrap {
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.seg-icon-wrap svg { stroke: var(--white); }
.seg-text h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
.seg-text p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}
.seg-divider {
  width: 1px;
  background: rgba(255,255,255,0.15);
  margin: 0 32px;
  flex-shrink: 0;
  align-self: stretch;
}
@media (max-width: 768px) {
  .segments-features { flex-direction: column; gap: 32px; }
  .seg-divider { width: 100%; height: 1px; margin: 0; }
  .segment-feature { padding: 0; }
  .segments-title { font-size: 1.4rem; }
}

/* ===== PACKAGES ===== */
.packages {
  padding: 96px 0;
  background: linear-gradient(160deg, var(--blue-dark) 0%, var(--blue) 100%);
}
.pkg-tabs {
  display: flex; gap: 8px; justify-content: center;
  margin-bottom: 48px; flex-wrap: wrap;
}
.pkg-tab {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 10px 24px;
  border-radius: 100px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
}
.pkg-tab:hover, .pkg-tab.active {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.pkg-grid {
  display: none;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  align-items: start;
}
.pkg-grid.active { display: grid; }
.pkg-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
  color: var(--white);
}
.pkg-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.3); }
.pkg-card.featured {
  background: var(--white);
  border-color: var(--orange);
  color: var(--text);
  transform: scale(1.04);
}
.pkg-card.featured:hover { transform: scale(1.04) translateY(-4px); }
.pkg-badge-featured {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.pkg-badge {
  display: inline-block;
  background: rgba(240,144,41,0.2);
  color: var(--orange);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 3px 12px; border-radius: 100px;
  margin-bottom: 10px;
}
.pkg-card.featured .pkg-badge { background: rgba(240,144,41,0.12); }
.pkg-header h3 {
  font-family: var(--font-display);
  font-size: 1.7rem; font-weight: 700;
  line-height: 1.1; margin-bottom: 4px;
}
.pkg-size {
  font-size: 0.85rem; opacity: 0.65;
  margin-bottom: 24px;
}
.pkg-features { margin-bottom: 28px; }
.pkg-features li {
  font-size: 0.9rem;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: flex-start; gap: 8px;
}
.pkg-card.featured .pkg-features li { border-color: var(--light-gray); color: var(--text); }
.btn-pkg {
  display: block; text-align: center;
  padding: 13px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.92rem;
  border: 2px solid rgba(255,255,255,0.4);
  color: var(--white);
  transition: all var(--transition);
}
.btn-pkg:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }
.featured-btn { background: var(--orange); border-color: var(--orange); color: var(--white); }
.featured-btn:hover { background: var(--orange-dark); border-color: var(--orange-dark); }
.pkg-note {
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  margin-top: 40px;
}

/* ===== WHY US ===== */
.why-us { padding: 96px 0; background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-image { position: relative; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-lg); }
.why-image img { width: 100%; height: 480px; object-fit: cover; }
.why-badge-float {
  position: absolute; bottom: 24px; left: 24px;
  background: var(--orange);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(240,144,41,0.4);
}
.why-badge-float strong { display: block; font-family: var(--font-display); font-size: 1.2rem; font-weight: 800; }
.why-badge-float span { font-size: 0.78rem; opacity: 0.9; }
.why-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700; color: var(--blue-dark);
  line-height: 1.15; margin-bottom: 16px;
}
.why-content > p { color: var(--gray); margin-bottom: 36px; font-size: 1.02rem; }
.why-points { display: flex; flex-direction: column; gap: 24px; margin-bottom: 36px; }
.why-point { display: flex; gap: 16px; align-items: flex-start; }
.why-icon {
  width: 52px; height: 52px; flex-shrink: 0; margin-top: 2px;
  background: rgba(240,144,41,0.12);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid rgba(240,144,41,0.25);
}
.why-icon svg { stroke: var(--orange); }
.why-point h4 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--blue-dark); margin-bottom: 4px; }
.why-point p { font-size: 0.9rem; color: var(--gray); }

/* ===== GALLERY ===== */
.gallery { padding: 96px 0; background: var(--off-white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item span {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(18,30,60,0.85));
  color: var(--white);
  font-weight: 600; font-size: 0.85rem;
  padding: 20px 16px 12px;
  transform: translateY(100%); transition: transform var(--transition);
}
.gallery-item:hover span { transform: translateY(0); }

/* ===== ABOUT ===== */
.about { padding: 96px 0; background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 700; color: var(--blue-dark);
  line-height: 1.15; margin-bottom: 20px;
}
.about-content p { color: var(--gray); margin-bottom: 16px; line-height: 1.7; }
.about-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 32px; }
.about-ctas .btn-outline { color: var(--blue); border-color: var(--blue); }
.about-ctas .btn-outline:hover { background: var(--blue); color: var(--white); }
.about-image { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-lg); }
.about-image img { width: 100%; height: 460px; object-fit: cover; }

/* ===== CONTACT ===== */
.contact {
  padding: 96px 0;
  background: linear-gradient(160deg, var(--off-white) 0%, var(--light-gray) 100%);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 700; color: var(--blue-dark);
  line-height: 1.15; margin-bottom: 16px;
}
.contact-info > p { color: var(--gray); margin-bottom: 36px; font-size: 1.02rem; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.c-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.contact-item strong { display: block; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--orange-dark); font-weight: 700; margin-bottom: 3px; }
.contact-item span, .contact-item a { font-size: 0.95rem; color: var(--text); }
.contact-item a:hover { color: var(--blue); }
.contact-form-wrap {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 700;
  color: var(--blue-dark); margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 0.82rem; font-weight: 600;
  color: var(--text); margin-bottom: 6px;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--light-gray);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--off-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(36,68,126,0.1);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note { text-align: center; font-size: 0.8rem; color: var(--gray); margin-top: 12px; }

/* ===== FOOTER ===== */
.footer { background: var(--dark); color: rgba(255,255,255,0.75); padding: 64px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo { height: 52px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,0.5); max-width: 280px; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
}
.footer-socials a:hover { background: var(--orange); color: var(--white); }
.footer-col h4 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a, .footer-col ul li {
  font-size: 0.88rem; color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--orange); }

/* ===== FOOTER BADGES ===== */
.footer-badges {
  display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 20px;
}
.footer-badge {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.82rem; color: rgba(255,255,255,0.6);
}
.footer-badge svg { color: var(--orange); flex-shrink: 0; }

/* ===== FOOTER CONTACT ICONS ===== */
.footer-contact ul li {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 14px;
}
.contact-icon {
  flex-shrink: 0; margin-top: 2px;
  color: var(--orange);
}
.contact-sub { font-size: 0.75rem; color: rgba(255,255,255,0.35); }

/* ===== SOCIAL PILL COLORS ===== */
.social-pill.facebook:hover  { background: #1877f2; }
.social-pill.instagram:hover { background: linear-gradient(135deg,#f58529,#dd2a7b,#8134af); }
.social-pill.whatsapp:hover  { background: #25D366; }
.social-pill.linkedin:hover  { background: #0077b5; }
.social-pill.twitter:hover   { background: #000; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
  font-size: 0.82rem; color: rgba(255,255,255,0.35);
}

/* WhatsApp float — see consolidated definition below */
.wa-pulse {
  position: absolute;
  width: 100%; height: 100%;
  border-radius: 50%;
  background: rgba(37,211,102,0.4);
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* ===== FLOATING SOCIAL SIDEBAR ===== */
.social-sidebar {
  position: fixed; left: 0; top: 50%; transform: translateY(-50%);
  z-index: 800; display: flex; flex-direction: column; gap: 4px;
}
.social-pill {
  display: flex; align-items: center; gap: 10px;
  padding: 12px;
  color: rgba(255,255,255,0.85);
  font-weight: 600; font-size: 0.78rem;
  border-radius: 0 8px 8px 0;
  width: 44px;
  overflow: hidden;
  transition: width var(--transition), padding var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
  background: rgba(55, 65, 81, 0.82);
  backdrop-filter: blur(4px);
}
.social-pill:hover {
  width: 140px;
  padding: 12px 14px;
  box-shadow: 2px 2px 12px rgba(0,0,0,0.25);
  background: rgba(45, 55, 70, 0.95);
}
.social-pill span {
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}
.social-pill:hover span { opacity: 1; }
.social-pill svg { flex-shrink: 0; }

/* ===== BACK TO TOP ===== */
.back-top {
  position: fixed; bottom: 96px; right: 24px; z-index: 997;
  width: 44px; height: 44px;
  background: var(--blue);
  color: var(--white);
  border: none; border-radius: 50%;
  font-size: 1.2rem; cursor: pointer;
  box-shadow: var(--shadow);
  opacity: 0; pointer-events: none;
  transition: all var(--transition);
}
.back-top.show { opacity: 1; pointer-events: all; }
.back-top:hover { background: var(--blue-dark); transform: translateY(-3px); }

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .why-grid, .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-image img, .about-image img { height: 360px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-inner { gap: 12px; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white, #fff);
    flex-direction: column; gap: 0;
    padding: 8px 0 16px;
    transform: scaleY(0);
    transform-origin: top center;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    border-top: 3px solid var(--orange, #f59e0b);
    z-index: 1200;
    pointer-events: none;
  }
  .nav-links.open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: all;
  }
  .nav-links a { padding: 14px 24px; width: 100%; color: var(--blue-dark); }
  .nav-links a::after { display: none; }

  /* Mobile dropdown */
  .nav-dropdown { width: 100%; }
  .dropdown-trigger {
    width: 100%; padding: 14px 24px;
    font-size: 0.95rem; justify-content: space-between;
    color: var(--blue-dark);
  }
  .dropdown-menu {
    position: static; transform: none;
    box-shadow: none; border: none; border-radius: 0;
    background: rgba(36,68,126,0.04);
    display: block; max-height: 0; overflow: hidden;
    transition: max-height 0.35s ease; padding: 0;
    min-width: unset;
  }
  .nav-dropdown.open .dropdown-menu { max-height: 500px; }
  /* On mobile, hover must NOT close the dropdown - JS controls it */
  .nav-dropdown:hover .dropdown-menu { max-height: inherit; }
  .nav-dropdown.open:hover .dropdown-menu { max-height: 500px; }
  .dropdown-menu a { padding: 10px 24px 10px 40px; border-top: 1px solid rgba(36,68,126,0.06); }
  .nav-right { margin-left: auto; gap: 8px; }
  .nav-cta { display: none; }
  .nav-location { display: none; }
  .nav-logo img { height: 40px; }
  /*.hero-content { padding: 40px 20px 0; }*/
  .hero-content {padding-left: 50px;}
  /*.hero-stats { flex-wrap: wrap; gap: 10px; padding: 12px 20px; }*/
  .hero-stats {
      gap: 8px;
      padding: 10px;
    }
  .hero-arrow { display: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .social-sidebar { display: none; }
  .pkg-card.featured { transform: none; }
  .brands-label { display: none; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  /*.hero-btns { flex-direction: column; }*/
  .hero-btns a { text-align: center; }
  .hero-stats .stat-divider { display: none; }
}


/* ============================================================
   HEADER ADDITIONS — BlueVolt Solar Energy
   Add these rules to your existing style.css
   ============================================================ */

/* ---- TOP BAR ---- */
.topbar {
  background: #0a1628;
  color: rgba(255,255,255,0.8);
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(245,158,11,0.25);
  position: sticky;
  top: 0;
  z-index: 1100;
}

.topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
  color: rgba(255,255,255,0.78);
}

.topbar-item svg {
  flex-shrink: 0;
  opacity: 0.7;
}

.topbar-link {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.2s;
}

.topbar-link:hover {
  color: #f59e0b;
}

.topbar-divider {
  color: rgba(255,255,255,0.25);
  font-size: 0.8em;
}

/* Adjust navbar to sit below topbar */
.navbar {
  position: sticky;
  top: 36px; /* height of topbar */
  z-index: 1000;
}
/* Ensure navbar is positioned so nav-links absolute child works */
@media (max-width: 768px) {
  .navbar {
    top: 0;
    position: sticky;
    overflow: visible !important;
  }
  .nav-inner {
    position: relative;
  }
}

/* Bigger logo */
.nav-logo img {
  height: 62px !important;  /* was typically ~44-48px */
  width: auto;
}

/* ---- MOBILE HEADER ---- */
@media (max-width: 768px) {
  .topbar-left {
    display: none; /* hide address/hours on small screens, keep phone/email */
  }

  .topbar-inner {
    justify-content: center;
  }

  .topbar-right {
    justify-content: center;
    font-size: 0.68rem;
  }

  /* Logo left, hamburger right */
  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-logo {
    order: 1;
  }

  .hamburger {
    order: 3;
    display: flex !important;
    z-index: 1300;
  }

  .nav-right {
    display: none; /* hide CTA button on mobile */
  }

  .nav-logo img {
    height: 48px !important;
  }
}

@media (max-width: 480px) {
  .topbar-divider {
    display: none;
  }

  .topbar-right {
    flex-direction: row;
    gap: 0.4rem;
  }
}

/* ============================================================
   FLOATING SOCIAL SIDEBAR — Visible on ALL screen sizes
   ============================================================ */

/* Remove any existing desktop-only restriction */
.social-sidebar {
  display: flex !important;
  flex-direction: column;
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 800;
  gap: 0;
  width: fit-content
}

.social-pill {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 10px 10px;
  color: #fff !important;
  text-decoration: none;
  overflow: hidden;
  transition: padding-right 0.3s ease, gap 0.3s ease;
  border-radius: 4px 0 0 4px;
  margin-bottom: 2px;
  white-space: nowrap;
}

.social-pill span {
  max-width: 0;
  overflow: hidden;
  transition: max-width 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.social-pill:hover span,
.social-pill:focus span {
  max-width: 100px;
  opacity: 1;
}

.social-pill:hover,
.social-pill:focus {
  gap: 8px;
  padding-right: 14px;
}

.social-pill.facebook  { background: #1877f2; }
.social-pill.instagram { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.social-pill.whatsapp  { background: #25d366; }
.social-pill.linkedin  { background: #0a66c2; }
.social-pill.twitter   { background: #000; }
.social-pill.youtube {
  background: #b20f0f;
}
.social-pill.titok {
  background: #000;
}

/* WhatsApp float — RIGHT side */
.whatsapp-float {
  display: flex !important;
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: auto;
  z-index: 9100;
  background: #25d366;
  border-radius: 50%;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}

/* Tawk.to custom float button — LEFT side */
.tawk-float {
  display: flex !important;
  position: fixed;
  bottom: 24px;
  right: 24px;
  left: auto;
  z-index: 9100;
  background: var(--blue-dark, #24447e);
  border: none;
  border-radius: 50%;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(36,68,126,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  outline: none;
}

.tawk-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(36,68,126,0.55);
  background: var(--orange, #f59e0b);
}

.tawk-pulse {
  position: absolute;
  border-radius: 50%;
  width: 58px; height: 58px;
  background: rgba(36,68,126,0.35);
  animation: tawkPulse 2s infinite;
  top: 0; left: 0;
  pointer-events: none;
}

@keyframes tawkPulse {
  0% { transform: scale(1); opacity: 0.7; }
  70% { transform: scale(1.55); opacity: 0; }
  100% { transform: scale(1.55); opacity: 0; }
}

/* Mobile tweaks — keep sidebar icons compact */
@media (max-width: 768px) {
  .social-sidebar {
    top: auto;
    bottom: 96px; /* above whatsapp float */
    transform: none;
    right: 0;
  }

  .social-pill {
    padding: 9px 9px;
  }

  .whatsapp-float {
    bottom: 20px;
    left: 16px;
    width: 52px;
    height: 52px;
  }

  .tawk-float {
    bottom: 20px;
    right: 16px;
    width: 52px;
    height: 52px;
  }
}

/*FAQS */


/*FAQS*/
