@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap");

/* =============================================
   RESET & BASE
   ============================================= */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #1c1c1e;
  background: #fff;
}
img {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
}
ul {
  list-style: none;
}

/* =============================================
   CSS VARIABLES
   ============================================= */
:root {
  --primary: #1b3a6b;
  --primary-dark: #0d2347;
  --primary-light: #e8eef8;
  --green: #2b7a3c;
  --green-dark: #1e5a2c;
  --green-light: #eaf4ed;
  --orange: #d95f0a;
  --orange-hover: #b84e07;
  --text: #1c1c1e;
  --muted: #5a5a6a;
  --light: #f4f6f9;
  --white: #ffffff;
  --border: #e0e4ee;
  --font-heading: "Montserrat", sans-serif;
  --font-body: "Inter", sans-serif;
  --radius: 8px;
  --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 12px 36px rgba(0, 0, 0, 0.09);
  --shadow-lg: 0 20px 54px rgba(0, 0, 0, 0.14);
  --shadow-xl: 0 28px 72px rgba(0, 0, 0, 0.22);
}

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.18;
  color: var(--text);
}
h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
}
h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}
h3 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
}
h4 {
  font-size: 1rem;
}
p {
  color: var(--muted);
  line-height: 1.78;
}

/* =============================================
   LAYOUT
   ============================================= */
.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 40px;
}
.tc {
  text-align: center;
}
.mt24 {
  margin-top: 24px;
}
.mt40 {
  margin-top: 40px;
}

/* =============================================
   SECTION HEADER
   ============================================= */
.sec-hdr {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
}
.sec-hdr h2 {
  margin-bottom: 14px;
}

/* =============================================
   LABELS & DIVIDERS
   ============================================= */
.lbl {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.lbl.green {
  color: var(--green);
}
.lbl.light {
  color: rgba(255, 255, 255, 0.65);
}
.lbl.white {
  color: rgba(255, 255, 255, 0.6);
}

.divider {
  width: 52px;
  height: 4px;
  background: var(--orange);
  margin: 12px 0 20px;
  border-radius: 2px;
}
.divider.green {
  background: var(--green);
}
.divider.center {
  margin-left: auto;
  margin-right: auto;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.4px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition:
    background 0.2s,
    color 0.2s,
    transform 0.15s;
  line-height: 1;
}
.btn:active {
  transform: scale(0.98);
}
.btn-primary {
  background: var(--orange);
  color: #fff;
}
.btn-primary:hover {
  background: var(--orange-hover);
}
.btn-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.85);
  color: #fff;
}
.btn-outline:hover {
  background: #fff;
  color: var(--primary);
}
.btn-white {
  background: #fff;
  color: var(--primary);
}
.btn-white:hover {
  background: var(--primary-light);
}
.btn-green {
  background: var(--green);
  color: #fff;
}
.btn-green:hover {
  background: var(--green-dark);
}
.btn-ghost {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}
.btn-ghost:hover {
  background: var(--primary);
  color: #fff;
}
.btn-sm {
  padding: 9px 18px;
  font-size: 0.78rem;
}
.btn[data-loading="true"] {
  opacity: 0.7;
  pointer-events: none;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.link-btn {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.link-btn i {
  font-size: 0.72rem;
  transition: transform 0.2s;
}
.link-btn:hover i {
  transform: translateX(3px);
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  height: 74px;
  display: flex;
  align-items: center;
  transition: box-shadow 0.2s;
}
.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo-icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 17px;
  flex-shrink: 0;
}
.nav-logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--primary);
  line-height: 1;
}
.nav-logo-text span {
  display: block;
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--text);
  text-decoration: none;
  padding: 7px 13px;
  border-radius: 4px;
  transition: all 0.2s;
  display: block;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  background: var(--primary-light);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-phone {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-size: 1.25rem;
  border-radius: 4px;
  transition: background 0.2s;
}

.nav-toggle i {
  font-size: 1.25rem;
}
.nav-toggle:hover {
  background: var(--light);
}

.get-quote {
  padding: 9px 18px;
  font-size: 0.78rem;
}
@media (max-width: 768px) {
  .get-quote span {
    display: none;
  }
}

/* =============================================
   CONTACT STRIP
   ============================================= */
.strip {
  background: var(--primary);
  padding: 20px 0;
}
.strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}
.strip-item i {
  font-size: 1.1rem;
  color: var(--orange);
  flex-shrink: 0;
}
.strip-item span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  display: block;
}
.strip-item strong {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
}

/* =============================================
   HERO , HOME
   ============================================= */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  margin-top: 74px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    108deg,
    rgba(11, 26, 58, 0.9) 0%,
    rgba(11, 26, 58, 0.55) 55%,
    rgba(11, 26, 58, 0.18) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 660px;
}
.hero-content h1 {
  color: #fff;
  margin-bottom: 20px;
}
.hero-content .hero-subtitle {
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 34px;
}
.hero-trust {
  position: absolute;
  bottom: 44px;
  right: 60px;
  background: #fff;
  border-radius: var(--radius);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-xl);
  z-index: 2;
}
.hero-trust-icon {
  width: 46px;
  height: 46px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 20px;
  flex-shrink: 0;
}
.hero-trust-text strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
}
.hero-trust-text span {
  font-size: 0.78rem;
  color: var(--muted);
}

/* =============================================
   PAGE HERO , INNER PAGES
   ============================================= */
.pg-hero {
  position: relative;
  padding: 96px 0;
  background-size: cover;
  background-position: center;
  margin-top: 74px;
}
.pg-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    108deg,
    rgba(11, 26, 58, 0.92) 50%,
    rgba(11, 26, 58, 0.48) 80%
  );
}
.pg-hero-cnt {
  position: relative;
  z-index: 2;
  max-width: 580px;
}
.pg-hero-cnt h1 {
  color: #fff;
  margin-bottom: 14px;
}
.pg-hero-cnt > p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.08rem;
  margin-bottom: 28px;
}

/* =============================================
   SPLIT CARDS
   ============================================= */
.split-section {
  padding: 96px 0;
  background: var(--white);
}
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.split-card {
  position: relative;
  height: 510px;
  overflow: hidden;
  border-radius: var(--radius);
}
.split-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s;
}
.split-card:hover img {
  transform: scale(1.04);
}
.split-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(9, 19, 48, 0.92) 0%,
    rgba(9, 19, 48, 0.28) 60%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 38px;
}
.split-card-overlay h3 {
  color: #fff;
  font-size: 1.55rem;
  margin-bottom: 10px;
}
.split-card-overlay p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 22px;
  font-size: 0.93rem;
}

/* =============================================
   SERVICE CARDS
   ============================================= */
.svc-section {
  padding: 96px 0;
  background: var(--light);
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.svc-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    border-color 0.25s;
}
.svc-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.svc-card-img {
  height: 208px;
  overflow: hidden;
}
.svc-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.svc-card:hover .svc-card-img img {
  transform: scale(1.06);
}
.svc-card-body {
  padding: 24px;
}
.svc-card-body h3 {
  font-size: 1.02rem;
  margin-bottom: 9px;
  color: var(--primary);
}
.svc-card-body p {
  font-size: 0.86rem;
  margin-bottom: 16px;
}

/* =============================================
   SOLAR SECTION
   ============================================= */
.solar-wrap {
  position: relative;
  padding: 114px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.solar-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 30, 16, 0.83);
}
.solar-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.solar-txt h2 {
  color: #fff;
  margin-bottom: 14px;
}
.solar-txt > p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 28px;
}
.solar-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 32px;
}
.solar-feat {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 20px;
}
.solar-feat i {
  color: #4ecb71;
  font-size: 1.4rem;
  margin-bottom: 10px;
  display: block;
}
.solar-feat h4 {
  color: #fff;
  font-size: 0.92rem;
  margin-bottom: 4px;
}
.solar-feat p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.62);
  margin: 0;
  line-height: 1.5;
}
.solar-img-wrap {
  position: relative;
}
.solar-img-box {
  border-radius: var(--radius);
  overflow: hidden;
  height: 420px;
}
.solar-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.solar-stat {
  position: absolute;
  background: #fff;
  border-radius: var(--radius);
  padding: 16px 22px;
  bottom: -18px;
  left: -28px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
}
.solar-stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--green);
}
.solar-stat span {
  font-size: 0.78rem;
  color: var(--muted);
}

/* =============================================
   WHY CHOOSE US
   ============================================= */
.why-wrap {
  position: relative;
  padding: 96px 0;
  background-size: cover;
  background-position: center;
}
.why-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(244, 246, 249, 0.83);
}
.why-inner {
  position: relative;
  z-index: 2;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 54px;
}
.why-card {
  text-align: center;
  padding: 34px 18px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.why-icon {
  width: 58px;
  height: 58px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--primary);
  font-size: 1.45rem;
}
.why-card h4 {
  font-size: 0.9rem;
  margin-bottom: 8px;
}
.why-card p {
  font-size: 0.8rem;
}

/* =============================================
   AREAS SECTION
   ============================================= */
.areas-wrap {
  background: var(--primary-dark);
  padding: 80px 0;
}
.areas-inner {
  text-align: center;
}
.areas-inner h2 {
  color: #fff;
  margin-bottom: 14px;
}
.areas-inner > p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 580px;
  margin: 0 auto 36px;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 32px;
}
.tag {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.82);
  padding: 7px 17px;
  border-radius: 50px;
  font-size: 0.83rem;
  font-family: var(--font-heading);
  font-weight: 500;
}
.areas-note {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.84rem;
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-wrap {
  position: relative;
  padding: 114px 0;
  background-size: cover;
  background-position: center;
}
.cta-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(12, 22, 48, 0.88);
}
.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}
.cta-inner h2 {
  color: #fff;
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  margin-bottom: 16px;
}
.cta-inner > p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 540px;
  margin: 0 auto 38px;
  font-size: 1.05rem;
}

/* =============================================
   DETAIL CARDS , Electrical & Appliance Pages
   ============================================= */
.detail-sec {
  padding: 96px 0;
  background: var(--light);
}
.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.detail-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.detail-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.detail-img {
  height: 196px;
  overflow: hidden;
}
.detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s;
}
.detail-card:hover .detail-img img {
  transform: scale(1.05);
}
.detail-body {
  padding: 24px;
}
.detail-body h3 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 9px;
}
.detail-body p {
  font-size: 0.85rem;
  line-height: 1.65;
}

/* =============================================
   PROBLEMS SECTION
   ============================================= */
.prob-sec {
  padding: 80px 0;
  background: var(--white);
}
.prob-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.prob-img {
  border-radius: var(--radius);
  overflow: hidden;
  height: 450px;
}
.prob-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.prob-list {
  list-style: none;
  margin: 24px 0 28px;
}
.prob-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
}
.prob-list li:last-child {
  border-bottom: none;
}
.prob-list li i {
  color: var(--primary);
  margin-top: 3px;
  flex-shrink: 0;
}
.prob-list-title {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  display: block;
  margin-bottom: 3px;
}
.prob-list-desc {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* =============================================
   BRANDS SECTION
   ============================================= */
.brands-sec {
  padding: 80px 0;
  background: var(--light);
}
.brands-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 16px;
  margin-top: 46px;
}
.brand-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 12px;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--muted);
  letter-spacing: 0.3px;
  transition:
    border-color 0.2s,
    color 0.2s,
    box-shadow 0.2s;
}
.brand-item:hover {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-intro {
  padding: 96px 0;
  background: var(--white);
}
.about-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-intro-img {
  border-radius: var(--radius);
  overflow: hidden;
  height: 480px;
}
.about-intro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-intro-text p {
  margin-bottom: 16px;
}
.about-intro-text p:last-of-type {
  margin-bottom: 0;
}

.values-sec {
  padding: 96px 0;
  background: var(--light);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 54px;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 28px;
  border: 1px solid var(--border);
}
.value-icon {
  width: 54px;
  height: 54px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.35rem;
  margin-bottom: 18px;
}
.value-card h3 {
  font-size: 1.05rem;
  color: var(--primary);
  margin-bottom: 10px;
}
.value-card p {
  font-size: 0.88rem;
}

.commit-sec {
  padding: 96px 0;
  background: var(--white);
}
.commit-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.commit-img {
  border-radius: var(--radius);
  overflow: hidden;
  height: 460px;
}
.commit-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.commit-list {
  list-style: none;
  margin: 28px 0;
}
.commit-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--muted);
}
.commit-list li:last-child {
  border-bottom: none;
}
.commit-list li i {
  color: var(--green);
  margin-top: 3px;
  flex-shrink: 0;
}
.commit-list li strong {
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  display: block;
  margin-bottom: 2px;
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-cards-sec {
  padding: 80px 0 60px;
  background: var(--light);
}
.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  border: 1px solid var(--border);
  transition: box-shadow 0.2s;
}
.contact-card:hover {
  box-shadow: var(--shadow-sm);
}
.contact-card-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--primary);
  font-size: 1.4rem;
}
.contact-card h4 {
  font-size: 0.9rem;
  margin-bottom: 6px;
}
.contact-card p,
.contact-card a {
  font-size: 0.88rem;
  color: var(--muted);
  text-decoration: none;
  display: block;
}
.contact-card a:hover {
  color: var(--primary);
}

.forms-sec {
  padding: 72px 0 96px;
  background: var(--white);
}
.forms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}

/* =============================================
   FORMS
   ============================================= */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 38px;
}
.form-card-header {
  margin-bottom: 28px;
}
.form-card-header h3 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 8px;
}
.form-card-header p {
  font-size: 0.88rem;
}

.form-row {
  margin-bottom: 20px;
}
.form-row label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.78rem;
  color: var(--text);
  margin-bottom: 7px;
  letter-spacing: 0.3px;
}
.form-row label .req {
  color: var(--orange);
  margin-left: 2px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  background: #fff;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  appearance: none;
}
.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(27, 58, 107, 0.1);
}
.form-control.error {
  border-color: #e24b4a;
}
.form-control::placeholder {
  color: #a8a8b3;
}
textarea.form-control {
  resize: vertical;
  min-height: 120px;
}
select.form-control {
  cursor: pointer;
}

.form-row-half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-submit {
  margin-top: 6px;
}
.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 14px 28px;
  font-size: 0.9rem;
}

.btn-spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  flex-shrink: 0;
}
.btn[data-loading="true"] .btn-spinner {
  display: block;
}
.btn[data-loading="true"] .btn-label {
  opacity: 0.7;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* =============================================
   NOTIFICATIONS
   ============================================= */
.notification {
  position: fixed;
  top: 90px;
  right: 24px;
  z-index: 9999;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  max-width: 380px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
  border-left: 4px solid var(--green);
  animation: notifIn 0.3s ease;
  transition:
    opacity 0.3s,
    transform 0.3s;
}
.notification.notif-error {
  border-left-color: #e24b4a;
}
.notification-icon {
  font-size: 1.2rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.notification.notif-success .notification-icon {
  color: var(--green);
}
.notification.notif-error .notification-icon {
  color: #e24b4a;
}
.notification-body {
  flex: 1;
}
.notification-body strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 3px;
}
.notification-body p {
  font-size: 0.84rem;
  margin: 0;
}
.notification-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  font-size: 0.85rem;
  padding: 0;
  margin-top: 2px;
  flex-shrink: 0;
  transition: color 0.2s;
}
.notification-close:hover {
  color: var(--text);
}
.notification.hiding {
  opacity: 0;
  transform: translateX(20px);
}

@keyframes notifIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Replace .forms-grid with this new layout */
.forms-with-map {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}

/* Map embed */
.map-embed {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  position: sticky;
  top: 100px; /* sticks while scrolling past a tall form */
}

.map-embed iframe {
  width: 100%;
  height: 520px;
  display: block;
  border: 0;
}

/* Alternate section background */
.forms-sec--quote {
  background: var(--bg-light, #f8f8f6); /* or whatever your light bg var is */
}

/* Responsive */
@media (max-width: 900px) {
  .forms-with-map {
    grid-template-columns: 1fr;
  }
  .map-embed {
    position: static;
  }
  .map-embed iframe {
    height: 300px;
  }
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: #09162a;
  padding: 68px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 46px;
}
.footer-brand p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.86rem;
  margin: 14px 0 22px;
  line-height: 1.75;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s;
}
.footer-social a:hover {
  background: var(--primary);
  color: #fff;
}
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 9px;
}
.footer-col ul li a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: #fff;
}
.footer-contact-list {
  list-style: none;
}
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  margin-bottom: 12px;
}
.footer-contact-list li i {
  color: var(--orange);
  margin-top: 3px;
  flex-shrink: 0;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.8rem;
}

/* WhatsApp FAB
.wa-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.55rem;
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.42);
  text-decoration: none;
  z-index: 999;
  transition: transform 0.2s;
}
.wa-fab:hover {
  transform: scale(1.08);
} */

.fab-container {
  position: fixed;
  bottom: 28px;
  right: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  z-index: 9999;
}

.fab-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px 0 14px;
  height: 48px;
  border-radius: 24px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.15s ease, filter 0.15s ease;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
  color: #fff;
}

.fab-btn:hover {
  transform: translateY(-2px) scale(1.03);
  filter: brightness(1.08);
}

.fab-btn i { font-size: 20px; }

.fab-call      { background: var(--primary); }
.fab-whatsapp  { background: var(--green); }
.fab-email     { background: var(--orange); }

@media (max-width: 768px) {
  .fab-btn span {
    display: none;
  }

  .fab-btn {
    padding: 0;
    width: 48px;
    justify-content: center;
    border-radius: 50%;
  }
}

/* =============================================
   RESPONSIVE , 1024px
   ============================================= */
@media (max-width: 1024px) {
  .svc-grid,
  .detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .solar-inner {
    gap: 40px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .brands-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .contact-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =============================================
   RESPONSIVE , 768px
   ============================================= */
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  /* Nav */
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 12px 20px 16px;
    gap: 2px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }
  .nav-links.nav-open {
    display: flex;
  }
  .nav-links.nav-open li {
    width: 100%;
  }
  .nav-links.nav-open a {
    width: 100%;
    padding: 10px 14px;
    font-size: 0.9rem;
  }
  .nav-phone {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }

  /* Parallax off on mobile */
  .hero,
  .solar-wrap,
  .cta-wrap,
  .why-wrap {
    background-attachment: scroll;
  }
  .hero {
    min-height: 100vh;
  }
  .hero-trust {
    display: none;
  }

  /* Grids collapse */
  .split-grid,
  .solar-inner,
  .prob-inner,
  .commit-inner,
  .about-intro-inner,
  .forms-grid {
    grid-template-columns: 1fr;
  }
  .svc-grid,
  .detail-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .form-row-half {
    grid-template-columns: 1fr;
  }

  /* Misc */
  .strip-inner {
    gap: 20px;
  }
  .cta-inner h2 {
    font-size: 2rem;
  }
  .notification {
    right: 16px;
    left: 16px;
    max-width: none;
  }
  .commit-img,
  .about-intro-img {
    height: 300px;
  }
  .prob-img {
    height: 300px;
  }
}

/* =============================================
   RESPONSIVE , 480px
   ============================================= */
@media (max-width: 480px) {
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-cards-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .form-card {
    padding: 28px 20px;
  }
}

  .service-area-groups{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:28px;
  margin-top:40px;
}

.area-group h3{
  color:#fff;
  font-size:1rem;
  margin-bottom:12px;
  padding-bottom:8px;
  border-bottom:2px solid rgba(255,255,255,0.15);
}

.area-group ul{
  margin:0;
  padding-left:18px;
}

.area-group li{
  color:rgba(255,255,255,0.85);
  margin-bottom:6px;
  line-height:1.5;
  font-size:0.92rem;
}

@media (max-width:1200px){
  .service-area-groups{
    grid-template-columns:repeat(3,1fr);
  }
}

@media (max-width:768px){
  .service-area-groups{
    grid-template-columns:repeat(2,1fr);
    gap:20px;
  }
}

@media (max-width:480px){
  .service-area-groups{
    grid-template-columns:repeat(2,1fr);
    gap:16px;
  }

  .area-group li{
    font-size:0.85rem;
  }

  .area-group h3{
    font-size:0.9rem;
  }
}


/* ── Dropdown wrapper ── */
.nav-links li.has-dropdown {
  position: relative;
}

/* Chevron rotation on hover/focus */
.nav-links li.has-dropdown:hover > a .nav-chevron,
.nav-links li.has-dropdown:focus-within > a .nav-chevron {
  transform: rotate(180deg);
}
.nav-chevron {
  font-size: 10px;
  margin-left: 4px;
  transition: transform 0.2s ease;
  display: inline-block;
}

/* ── Dropdown panel ── */
.dropdown-menu {
  display: block;
  list-style: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 220px;
  background: #fff;          /* swap for your navbar bg variable */
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 6px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.15s ease, transform 0.15s ease;
  z-index: 999;
}

/* Show on hover or keyboard focus-within */
.nav-links li.has-dropdown:hover .dropdown-menu,
.nav-links li.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

/* ── Dropdown links ── */
.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  font-size: 14px;
  color: #374151;
  text-decoration: none;
  border-radius: 6px;
  white-space: nowrap;
  transition: background 0.12s;
}
.dropdown-menu a:hover {
  background: #f3f4f6;
}

/* Divider */
.dropdown-menu hr {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin: 4px 0;
}

/* ── Mobile: stack dropdown inline ── */
@media (max-width: 768px) {
  .dropdown-menu {
    position: static;
    opacity: 1;
    pointer-events: all;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 0 1rem;
    margin-top: 4px;
  }
}

/* ===== BRAND MARQUEE ===== */
.brand-marquee {
  background: #fff;
  padding: 2rem 0;
  overflow: hidden;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
}

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

.marquee-items {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 0 3rem;
}

.marquee-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.marquee-item img {
  height: 48px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.marquee-item img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

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

/* Pause on reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }
  .marquee-items {
    flex-wrap: wrap;
    justify-content: center;
  }
}