:root{
  --primary:#0B3D2E;
  --accent:#F4A300;
  --glow:#18C964;
  --dark:#0F1720;
  --dark2:#111927;
}

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

body{
  font-family:Inter, sans-serif;
  background:var(--dark);
  color:white;
  overflow-x:hidden;
  transition:background .4s ease, color .4s ease;
}

/* LIGHT MODE */
body.light{
  background:#f4f6f9;
  color:#111;
}

body.light .header{
  background:rgba(255,255,255,.8);
}
.nested-dropdown{
  border:2px solid transparent;
background-clip:padding-box;
position:absolute;
}

body.light .dropdown,
body.light .nested-dropdown{
  background:white;
  color:#111;
}

body.light .side-panel{
  background:#ffffff;
  color:#111;
}

body.light .menu a{
  color:#111;
}

/* ENERGY BACKGROUND */
.energy-bg{
  position:fixed;
  width:100%;
  height:100%;
  background:radial-gradient(circle at 20% 30%, rgba(24,201,100,.15), transparent 40%),
             radial-gradient(circle at 80% 70%, rgba(244,163,0,.12), transparent 40%);
  animation:floatEnergy 12s infinite alternate ease-in-out;
  z-index:-2;
}

@keyframes floatEnergy{
  from{transform:translateY(-20px)}
  to{transform:translateY(20px)}
}

/* CURSOR GLOW */
.cursor-glow{
  position:fixed;
  width:300px;
  height:300px;
  background:radial-gradient(circle, rgba(24,201,100,.3), transparent 60%);
  border-radius:50%;
  pointer-events:none;
  transform:translate(-50%,-50%);
  z-index:-1;
}

/* HEADER */
.header{
  position:fixed;
  width:100%;
  top:0;
  backdrop-filter:blur(20px);
  background:rgba(15,23,32,.6);
  transition:.4s ease;
}

.header.shrink{
  padding:5px 0;
  background:rgba(10,15,20,.9);
}

.nav-container{
  max-width:1300px;
  margin:auto;
  height:90px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 40px;
}

/* Bigger Logo */
.logo img{
  height:65px;
}

/* MENU */
.menu{
  list-style:none;
  display:flex;
  gap:30px;
}

.menu li{position:relative}

.menu a{
  font-size:14px;
  text-decoration:none;
  color:white;
  padding:6px 0;
  position:relative;
}

.menu a::after{
  content:"";
  position:absolute;
  bottom:-5px;
  left:0;
  height:2px;
  width:0%;
  background:linear-gradient(90deg,var(--accent),var(--glow));
  transition:.3s;
}

.menu a:hover::after{width:100%}

/* DROPDOWN FIXED */
.dropdown{
  position:absolute;
  top:60px;
  left:0;
  background:var(--dark2);
  border-radius:12px;
  padding:12px 0;
  min-width:240px;
  opacity:0;
  visibility:hidden;
  transform:translateY(10px);
  transition:.25s ease;
  border:2px solid transparent;
background-clip:padding-box;
position:absolute;
}

.dropdown-parent:hover > .dropdown,
.dropdown:hover{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

.dropdown a{
  display:block;
  padding:10px 20px;
  font-size:13px;
}

.dropdown a:hover{
  background:rgba(255,255,255,.05);
}

/* NESTED */
.nested-parent{position:relative}

.nested-dropdown{
  position:absolute;
  left:100%;
  top:0;
  background:var(--dark2);
  min-width:200px;
  border-radius:12px;
  padding:12px 0;
  opacity:0;
  visibility:hidden;
  transform:translateX(10px);
  transition:.25s ease;
}

.nested-parent:hover > .nested-dropdown,
.nested-dropdown:hover{
  opacity:1;
  visibility:visible;
  transform:translateX(0);
}

/* CTA */
.cta{
  background:linear-gradient(135deg,var(--primary),var(--glow));
  padding:10px 24px;
  border-radius:40px;
  font-size:13px;
  text-decoration:none;
  color:white;
  transition:.3s;
}

.cta:hover{
  box-shadow:0 10px 40px rgba(24,201,100,.4);
  transform:translateY(-3px);
}

.actions{
  display:flex;
  align-items:center;
  gap:20px;
}

/* HAMBURGER */
.hamburger{
  display:none;
  flex-direction:column;
  gap:6px;
  cursor:pointer;
}
.hamburger span{
  width:25px;height:2px;background:white;
}

/* MOBILE PANEL */
.side-panel{
  position:fixed;
  right:-60%;
  width:60%;
  height:100vh;
  background:#0B131C;
  padding:100px 40px;
  transition:.5s cubic-bezier(.77,0,.18,1);
}

.side-panel.active{right:0}

.page.shift{
  transform:translateX(-60%);
  transition:.5s cubic-bezier(.77,0,.18,1);
}

/* MOBILE ACCORDION */
.mobile-accordion{
  cursor:pointer;
  margin-bottom:15px;
}

.accordion-content{
  max-height:0;
  overflow:hidden;
  transition:.4s ease;
  padding-left:15px;
}

.mobile-accordion.active > .accordion-content{
  max-height:500px;
  padding-top:10px;
}

/* TILT */
.tilt{
  transform-style:preserve-3d;
  transition:.2s ease;
}

/* HERO */
.hero{
  height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding-top:120px;
}

/* RESPONSIVE */
@media(max-width:1000px){
  .nav{display:none}
  .hamburger{display:flex}
}

/* OVERLAY */
.overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.5);
  opacity:0;
  visibility:hidden;
  transition:.3s ease;
  z-index:998;
}

.overlay.active{
  opacity:1;
  visibility:visible;
}

/* Side panel layering */
.side-panel{
  z-index:999;
}

/* Close button */
.close-btn{
  position:absolute;
  top:25px;
  right:25px;
  font-size:20px;
  cursor:pointer;
  color:white;
  transition:.3s;
}

.close-btn:hover{
  color:var(--accent);
}

/* Improve mobile animation */
.side-panel{
  right:-100%;
  width:75%;
}

.side-panel.active{
  right:0;
}

.page.shift{
  transform:translateX(-75%);
}

/* Better mobile spacing */
.mobile-menu li{
  margin-bottom:20px;
  font-size:15px;
  cursor:pointer;
}
.scroll-progress{
  position:fixed;
  top:0;
  left:0;
  height:4px;
  width:0%;
  background:linear-gradient(90deg,var(--accent),var(--glow));
  z-index:2000;
}

.menu a.active{
  color:var(--accent);
}

.menu a.active::after{
  width:100%;
}

.dropdown::before,
.nested-dropdown::before{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius:14px;
  background:linear-gradient(270deg,var(--accent),var(--glow),var(--accent));
  background-size:400% 400%;
  animation:gradientBorder 6s ease infinite;
  z-index:-1;
}

@keyframes gradientBorder{
  0%{background-position:0% 50%}
  50%{background-position:100% 50%}
  100%{background-position:0% 50%}
}

.mobile-menu li{
  opacity:0;
  transform:translateX(30px);
  transition:.5s ease;
  background:linear-gradient(135deg,#111927,#0B131C);
  padding:14px 18px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.05);
}

.side-panel.active .mobile-menu li{
  opacity:1;
  transform:translateX(0);
}

.accordion-content div{
  padding:8px 0;
  opacity:.8;
  transition:.3s;
}

.accordion-content div:hover{
  opacity:1;
  transform:translateX(6px);
}
/* LIGHT MODE SIDEBAR FIX */
body.light .side-panel{
  background:#ffffff;
  color:#111;
}

body.light .mobile-menu li{
  background:#f3f4f7;
  border:1px solid rgba(0,0,0,.08);
}

body.light .mobile-menu li:hover{
  background:#e8ebf0;
}

body.light .close-btn{
  color:#111;
}

body.light .hamburger span{
  background:#111;
}

body.light .accordion-content div{
  color:#333;
}

.accordion-content{
  max-height:0;
  overflow:hidden;
  transition:max-height .5s cubic-bezier(.77,0,.18,1),
             opacity .4s ease,
             transform .4s ease;
  opacity:0;
  transform:translateY(-10px);
  padding-left:15px;
}

.mobile-accordion.active .accordion-content{
  max-height:400px;
  opacity:1;
  transform:translateY(0);
}

.mobile-menu li{
  /* display:flex; */
  align-items:center;
  gap:12px;
  font-weight:500;
}

/* HERO SECTION */

.hero-slider{
position:relative;
height:100vh;
overflow:hidden;
}

.slides{
height:100%;
width:100%;
position:relative;
}

.slide{
position:absolute;
inset:0;
opacity:0;
transition:opacity 1s ease;
}

.slide.active{
opacity:1;
z-index:2;
}

/* IMAGE */

.slide img{
width:100%;
height:100%;
object-fit:cover;
filter:brightness(.55);
transform:scale(1.1);
animation:kenburns 12s linear infinite;
}

@keyframes kenburns{
0%{transform:scale(1.1)}
100%{transform:scale(1.25)}
}

/* HERO CONTENT */

.hero-content{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
text-align:center;
max-width:850px;
padding:20px;
animation:fadeUp 1s ease;
}

.hero-content h1{
font-size:60px;
margin-bottom:20px;
letter-spacing:1px;
}

.hero-content p{
font-size:18px;
opacity:.9;
margin-bottom:35px;
}

/* BUTTONS */

.hero-buttons{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
}

.hero-btn{
padding:16px 36px;
border-radius:40px;
text-decoration:none;
font-weight:600;
transition:.35s;
}

.hero-btn.primary{
background:linear-gradient(135deg,#22c55e,#16a34a);
color:white;
}

.hero-btn.secondary{
background:white;
color:black;
}

.hero-btn:hover{
transform:translateY(-4px);
box-shadow:0 15px 40px rgba(0,0,0,.35);
}

/* SLIDER DOTS */

.hero-nav{
position:absolute;
bottom:35px;
left:50%;
transform:translateX(-50%);
display:flex;
gap:12px;
}

.hero-dot{
width:12px;
height:12px;
border-radius:50%;
background:white;
opacity:.4;
cursor:pointer;
}

.hero-dot.active{
opacity:1;
transform:scale(1.3);
}

/* PROGRESS BAR */

.hero-progress{
position:absolute;
top:0;
left:0;
height:3px;
width:0%;
background:#22c55e;
animation:progress 6s linear infinite;
}

@keyframes progress{
0%{width:0}
100%{width:100%}
}

/* TEXT ANIMATION */

@keyframes fadeUp{
0%{
opacity:0;
transform:translate(-50%, -30%);
}

100%{
opacity:1;
transform:translate(-50%, -50%);
}
}

/* HERO MOBILE */

@media(max-width:900px){

.hero-content h1{
font-size:38px;
}

.hero-content p{
font-size:16px;
}

.hero-btn{
padding:14px 28px;
}

.hero-slider{
height:90vh;
}

}

body.light .hero-btn.secondary{
background:#111;
color:white;
}

body.light .hero-dot{
background:#111;
}

/* About Us Section */
.about-us {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 100px 5%;
  background: var(--dark2);
  position: relative;
  overflow: hidden;
  flex-wrap: wrap; /* allows stacking on smaller screens */
}

.about-us .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
  width: 100%;
}

/* Image Column */
.about-image {
  flex: 1 1 45%; /* 45% width on large screens */
  min-width: 300px;
  perspective: 1000px; /* for 3D tilt effect */
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(24, 201, 100, 0.4);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Tilt hover effect handled in JS */
.about-image.tilt:hover img {
  box-shadow: 0 20px 60px rgba(24, 201, 100, 0.6);
}

/* Content Column */
.about-content {
  flex: 1 1 50%; /* 50% width on large screens */
  min-width: 300px;
}

.about-content h2 {
  font-size: 48px;
  background: linear-gradient(90deg, var(--accent), var(--glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
  animation: fadeUp 1s ease;
}

.about-content h3 {
  font-size: 24px;
  color: var(--accent);
  margin-bottom: 20px;
  opacity: 0.85;
}

.about-content p {
  font-size: 16px;
  line-height: 1.6;
  max-width: 500px;
  margin-bottom: 30px;
}

.about-content button.hero-btn {
  padding: 15px 40px;
  font-weight: 600;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.35s ease;
}

.about-content button.hero-btn:hover {
  box-shadow: 0 10px 40px rgba(24, 201, 100, 0.4);
  transform: translateY(-3px);
}

/* Fade-up animation */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 1000px) {
  .about-us {
    flex-direction: column;
    text-align: center;
    gap: 40px;
    padding: 80px 5%;
  }

  .about-content h2 {
    font-size: 36px;
  }

  .about-content h3 {
    font-size: 20px;
  }

  .about-content p {
    font-size: 15px;
  }
}

/* Light Mode */
body.light .about-us {
  background: #f3f4f7;
}

body.light .about-content h3 {
  color: #f4a300;
}

body.light .about-content p {
  color: #111;
}

body.light .about-content button.hero-btn.primary {
  background: linear-gradient(135deg, #0B3D2E, #18C964);
  color: white;
}


/* Stats Section */
.stats-section {
  background: var(--dark2);
  padding: 80px 5%;
  text-align: center;
  overflow: hidden;
}

.stats-section .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.stat {
  flex: 1 1 220px;
  background: linear-gradient(135deg, #0B3D2E, #18C964);
  padding: 40px 20px;
  border-radius: 20px;
  color: white;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(60deg, rgba(255,255,255,0.05), transparent 70%);
  pointer-events: none;
}

.stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(24,201,100,0.4);
}

.stat .number {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
}

.stat .label {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.85;
}

/* Dark/light mode */
body.light .stats-section {
  background: #f3f4f7;
}

body.light .stat {
  background: linear-gradient(135deg, #0B3D2E, #18C964); /* keep gradient vibrant */
  color: white;
}

body.light .stat .label {
  color: #fff;
}

/* Responsive */
@media(max-width: 900px){
  .stats-section .container {
    flex-direction: column;
    gap: 25px;
    align-items: center;
  }
}

/* Plans Section */
.plans-section {
  background: var(--dark);
  padding: 80px 5%;
  color: white;
  text-align: center;
}

.plans-section .section-title {
  font-size: 36px;
  margin-bottom: 50px;
  color: var(--accent);
}

.plans-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.plan-card {
  background: linear-gradient(135deg, var(--primary), var(--glow));
  padding: 30px 20px;
  border-radius: 20px;
  flex: 1 1 250px;
  max-width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  color: white;
}

.plan-card.popular::before {
  content: "Popular";
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--accent);
  color: var(--dark);
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 8px;
  transform: rotate(15deg);
}

.plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(24,201,100,0.4);
}

.plan-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.plan-card .price {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.plan-card .plan-desc {
  font-size: 14px;
  opacity: 0.85;
  margin-bottom: 20px;
  line-height: 1.6;
}

.plan-btn {
  cursor: pointer;
  padding: 12px 30px;
  border-radius: 40px;
  border: none;
  font-weight: 600;
  font-size: 14px;
}

/* Modal */
.plan-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  padding: 20px;
}

.plan-modal.active {
  display: flex;
}

.modal-content {
  background: var(--dark2);
  padding: 40px 30px;
  border-radius: 20px;
  max-width: 450px;
  width: 100%;
  text-align: center;
  position: relative;
  color: white;
}

.modal-content input,
.modal-content select {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.2);
  background: var(--dark);
  color: white;
  font-size: 14px;
}

.modal-content select {
  appearance: none;
}

.modal-content button {
  width: 100%;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.close-modal:hover {
  color: var(--accent);
}

/* Dark / Light Mode */
body.light .plans-section {
  background: #f3f4f7;
  color: #111;
}

body.light .plan-card {
  background: linear-gradient(135deg, var(--primary), var(--glow));
  color: white;
}

body.light .modal-content {
  background: #fff;
  color: #111;
}

body.light .modal-content input,
body.light .modal-content select {
  background: #f3f4f7;
  color: #111;
  border: 1px solid #ccc;
}

/* Responsive */
@media(max-width: 900px) {
  .plans-grid {
    flex-direction: column;
    align-items: center;
    gap: 20px; /* a bit smaller gap for mobile */
  }

  .plan-card {
    flex: 1 1 100%;
    max-width: 100%;
    padding: 20px; /* slightly reduce padding to fit button */
    box-sizing: border-box;
  }

  .plan-card .plan-btn {
    width: 100%; /* ensure button fits fully inside the card */
    box-sizing: border-box;
  }

  .modal-content {
    padding: 30px 20px;
  }
}

/* FAQ SECTION */
.faq-section{
  padding:80px 40px;
  background:var(--dark2);
  color:white;
  transition:background .4s ease, color .4s ease;
}

body.light .faq-section{
  background:#f9f9f9;
  color:#111;
}

.faq-section .container{
  max-width:1100px;
  margin:auto;
}

.faq-section h2{
  font-size:42px;
  margin-bottom:20px;
}

.faq-section p{
  font-size:16px;
  margin-bottom:50px;
  opacity:.8;
}

.faq-list{
  display:flex;
  flex-direction:column;
  gap:20px;
}

.faq-item{
  background:rgba(15,23,32,.6);
  border-radius:12px;
  overflow:hidden;
  transition:all .4s ease;
  cursor:pointer;
  border:2px solid transparent;
  background-clip:padding-box;
  position:relative;
}

body.light .faq-item{
  background:#ffffff;
}

.faq-item::before{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius:14px;
  background:linear-gradient(270deg,var(--accent),var(--glow),var(--accent));
  background-size:400% 400%;
  animation:gradientBorder 6s ease infinite;
  z-index:-1;
}

@keyframes gradientBorder{
  0%{background-position:0% 50%}
  50%{background-position:100% 50%}
  100%{background-position:0% 50%}
}

.faq-question{
  padding:20px 30px;
  font-weight:600;
  position:relative;
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:16px;
}

.faq-question::after{
  content:"+";
  font-size:24px;
  transition:transform .3s ease;
}

.faq-item.active .faq-question::after{
  transform:rotate(45deg);
}

.faq-answer{
  max-height:0;
  opacity:0;
  padding:0 30px;
  transition:max-height .5s ease, opacity .5s ease, padding .4s ease;
  font-size:14px;
  line-height:1.6;
}

.faq-item.active .faq-answer{
  max-height:500px;
  opacity:1;
  padding:15px 30px 25px 30px;
}

/* RESPONSIVE */
@media(max-width:900px){
  .faq-section{
    padding:60px 20px;
  }

  .faq-section h2{
    font-size:32px;
  }

  .faq-section p{
    font-size:14px;
  }

  .faq-question{
    font-size:14px;
    padding:15px 20px;
  }

  .faq-answer{
    font-size:13px;
    padding:0 20px;
  }

  .faq-item.active .faq-answer{
    padding:10px 20px 15px 20px;
  }
}
/* FEATURES SECTION */

.features-section{
  padding:100px 5%;
  background:var(--dark);
  position:relative;
  overflow:hidden;
}

.features-section .section-title{
  text-align:center;
  font-size:40px;
  margin-bottom:60px;
  background:linear-gradient(90deg,var(--accent),var(--glow));
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

/* GRID */

.features-grid{
  display:flex;
  gap:30px;
  justify-content:center;
  flex-wrap:wrap;
}

/* CARD */

.feature-card{
  flex:1 1 280px;
  max-width:350px;
  padding:40px 30px;
  border-radius:20px;
  background:linear-gradient(145deg,#0b3d2e,#0e1c28);
  position:relative;
  transition:all .35s ease;
  box-shadow:0 10px 35px rgba(0,0,0,0.4);
  text-align:center;
  overflow:hidden;
}

/* glow border */

.feature-card::before{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius:22px;
  background:linear-gradient(270deg,var(--accent),var(--glow),var(--accent));
  background-size:400% 400%;
  animation:borderGlow 8s linear infinite;
  z-index:-1;
}

@keyframes borderGlow{
  0%{background-position:0%}
  100%{background-position:400%}
}

/* hover effect */

.feature-card:hover{
  transform:translateY(-10px) scale(1.02);
  box-shadow:0 25px 70px rgba(24,201,100,0.35);
}

/* icon */

.feature-icon{
  font-size:42px;
  margin-bottom:20px;
  color:var(--accent);
}

/* text */

.feature-card h3{
  font-size:22px;
  margin-bottom:15px;
}

.feature-card p{
  font-size:14px;
  line-height:1.6;
  opacity:.9;
}

/* LIGHT MODE */

body.light .features-section{
  background:#f3f4f7;
}

body.light .feature-card{
  background:white;
  color:#111;
  box-shadow:0 10px 35px rgba(0,0,0,0.08);
}

body.light .feature-card:hover{
  box-shadow:0 20px 50px rgba(0,0,0,0.15);
}

/* RESPONSIVE */

@media(max-width:900px){

.features-section{
  padding:70px 5%;
}

.features-section .section-title{
  font-size:32px;
}

.features-grid{
  flex-direction:column;
  align-items:center;
}

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

}

/* SECTION */

.solar-services{
  padding:100px 5%;
  background:var(--dark2);
  position:relative;
  overflow:hidden;
}

/* TITLE */

.services-header{
  text-align:center;
  margin-bottom:60px;
}

.services-header h2{
  font-size:42px;
  margin-bottom:10px;

  background:linear-gradient(90deg,var(--accent),var(--glow));
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.subtitle{
  font-size:18px;
  opacity:.8;
}

/* GRID */

.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

/* CARD */

.service-card{
  background:linear-gradient(145deg,#0b3d2e,#0e1c28);
  border-radius:20px;
  overflow:hidden;
  position:relative;
  transition:.4s;
  box-shadow:0 20px 60px rgba(0,0,0,0.4);
}

/* glowing border */

.service-card::before{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius:22px;

  background:linear-gradient(
  270deg,
  var(--accent),
  var(--glow),
  var(--accent)
  );

  background-size:400% 400%;
  animation:serviceGlow 10s linear infinite;

  z-index:-1;
}

@keyframes serviceGlow{
  0%{background-position:0%}
  100%{background-position:400%}
}

/* IMAGE */

.service-image{
  overflow:hidden;
}

.service-image img{
  width:100%;
  height:230px;
  object-fit:cover;
  transition:transform .6s;
}

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

/* CONTENT */

.service-content{
  padding:25px;
}

.service-content h3{
  font-size:22px;
  margin-bottom:12px;
}

.service-content p{
  font-size:14px;
  line-height:1.6;
  margin-bottom:20px;
  opacity:.9;
}

/* BUTTON */

.service-btn{
  display:inline-block;
  padding:10px 22px;
  border-radius:30px;
  text-decoration:none;
  font-size:14px;
  font-weight:600;

  background:linear-gradient(135deg,var(--accent),var(--glow));
  color:white;

  transition:.35s;
}

.service-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 12px 40px rgba(24,201,100,.45);
}

/* CARD HOVER */

.service-card:hover{
  transform:translateY(-12px) scale(1.02);
}

/* LIGHT MODE */

body.light .solar-services{
  background:#f3f4f7;
}

body.light .service-card{
  background:white;
  color:#111;
  box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

body.light .service-card:hover{
  box-shadow:0 25px 60px rgba(0,0,0,0.12);
}

/* RESPONSIVE */

@media(max-width:1000px){

.services-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:700px){

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

.services-header h2{
font-size:32px;
}

.subtitle{
font-size:15px;
}

}

.other-services-3d{
padding:120px 6%;
text-align:center;
background:var(--dark);
perspective:1200px;
overflow:hidden;
}

.services-title h2{
font-size:40px;
margin-bottom:10px;

background:linear-gradient(90deg,var(--accent),var(--glow));
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

.services-title p{
opacity:.8;
margin-bottom:70px;
}

/* CONTAINER */

.services-3d-container{
display:flex;
justify-content:center;
gap:40px;
flex-wrap:wrap;
}

/* CARD */

.service-3d-card{

width:320px;
border-radius:22px;
overflow:hidden;

background:linear-gradient(145deg,#0b2a23,#0f1d2c);

box-shadow:
0 30px 60px rgba(0,0,0,0.45);

transform-style:preserve-3d;

transition:transform .3s;

animation:floatCard 6s ease-in-out infinite;
}

/* floating motion */

@keyframes floatCard{

0%{transform:translateY(0px)}
50%{transform:translateY(-15px)}
100%{transform:translateY(0px)}

}

.service-3d-card:nth-child(2){
animation-delay:1s;
}

.service-3d-card:nth-child(3){
animation-delay:2s;
}

/* IMAGE */

.service-3d-card img{
width:100%;
height:200px;
object-fit:cover;
}

/* CONTENT */

.service-3d-content{
padding:25px;
}

.service-3d-content h3{
margin-bottom:12px;
font-size:22px;
}

.service-3d-content p{
font-size:14px;
line-height:1.6;
margin-bottom:18px;
}

/* BUTTON */

.service-3d-btn{

display:inline-block;

padding:10px 22px;

border-radius:30px;

text-decoration:none;

font-size:14px;

background:linear-gradient(135deg,var(--accent),var(--glow));

color:white;

transition:.3s;

}

.service-3d-btn:hover{
transform:translateY(-3px);
box-shadow:0 12px 40px rgba(0,255,150,.45);
}

/* HOVER DEPTH */

.service-3d-card:hover{

transform:
rotateX(6deg)
rotateY(-6deg)
scale(1.05);

}

/* LIGHT MODE */

body.light .other-services-3d{
background:#f4f6f9;
}

body.light .service-3d-card{
background:white;
color:#111;
box-shadow:0 20px 40px rgba(0,0,0,0.1);
}

/* MOBILE */

@media(max-width:900px){

.services-3d-container{
flex-direction:column;
align-items:center;
}

.service-3d-card{
width:100%;
max-width:420px;
}

.services-title h2{
font-size:32px;
}

}

/* CTA SECTION */

.solar-cta{

padding:130px 8%;
position:relative;

background:
linear-gradient(
120deg,
#0d2b24,
#07161c,
#0d2b24
);

background-size:400% 400%;

animation:solarGradient 14s ease infinite;

text-align:center;

overflow:hidden;
}

/* animated background */

@keyframes solarGradient{

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

}

/* glowing overlay */

.solar-cta::before{

content:"";

position:absolute;

width:600px;
height:600px;

background:radial-gradient(
circle,
rgba(0,255,170,0.25),
transparent 70%
);

top:-200px;
left:-200px;

animation:glowMove 12s infinite alternate;

}

@keyframes glowMove{

0%{transform:translate(0,0)}
100%{transform:translate(200px,150px)}

}

/* CENTER CARD */

.cta-container{

max-width:900px;
margin:auto;

padding:60px;

border-radius:24px;

background:rgba(255,255,255,0.04);

backdrop-filter:blur(10px);

box-shadow:
0 30px 80px rgba(0,0,0,0.5);

position:relative;

z-index:2;
}

/* TITLE */

.cta-container h2{

font-size:40px;
margin-bottom:20px;

background:linear-gradient(
90deg,
var(--accent),
var(--glow)
);

-webkit-background-clip:text;
-webkit-text-fill-color:transparent;

}

/* TEXT */

.cta-container p{

font-size:17px;

line-height:1.7;

opacity:.9;

margin-bottom:35px;

}

/* BUTTON */

.cta-btn{

display:inline-block;

padding:14px 36px;

font-size:16px;

font-weight:600;

border-radius:40px;

text-decoration:none;

background:linear-gradient(
135deg,
var(--accent),
var(--glow)
);

color:white;

position:relative;

transition:.35s;

}

/* pulse effect */

.cta-btn::after{

content:"";

position:absolute;

inset:-10px;

border-radius:40px;

border:2px solid var(--glow);

opacity:.6;

animation:pulseBtn 2.5s infinite;

}

@keyframes pulseBtn{

0%{
transform:scale(1);
opacity:.6;
}

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

}

.cta-btn:hover{

transform:translateY(-4px);

box-shadow:0 15px 45px rgba(0,255,170,.45);

}

/* LIGHT MODE */

body.light .solar-cta{

background:#f3f5f8;

}

body.light .cta-container{

background:white;

color:#111;

box-shadow:0 20px 40px rgba(0,0,0,0.12);

}

/* MOBILE */

@media(max-width:768px){

.cta-container{

padding:40px 25px;

}

.cta-container h2{

font-size:28px;

}

.cta-container p{

font-size:15px;

}

}

.quote-section{

padding:120px 6%;
background:var(--dark);

}

.quote-container{

display:grid;
grid-template-columns:1fr 1fr;
gap:60px;

}


/* FORM AREA */

.quote-form-area{

background:rgba(255,255,255,0.05);

padding:40px;

border-radius:20px;

backdrop-filter:blur(10px);

}


/* INPUT GROUP */

.input-group{

position:relative;

margin-bottom:18px;

}

.input-group input{

width:100%;

padding:14px;

border:none;

border-radius:8px;

background:#111;

color:white;

outline:none;

}

/* FLOATING LABEL */

.input-group label{

position:absolute;

left:14px;

top:14px;

color:#aaa;

font-size:14px;

transition:.3s;

pointer-events:none;

background:transparent;

}

.input-group input:focus + label,
.input-group input:valid + label{

top:-8px;

left:10px;

font-size:12px;

background:var(--dark);

padding:0 6px;

color:var(--accent);

}


/* SELECT */

select{

width:100%;

padding:12px;

border-radius:8px;

border:none;

background:#111;

color:white;

margin-bottom:18px;

}


/* TEXTAREA */

textarea{

width:100%;

height:110px;

padding:12px;

border:none;

border-radius:8px;

background:#111;

color:white;

margin-bottom:18px;

}


/* RADIO */

.send-method{

display:flex;

gap:20px;

margin-bottom:20px;

}


/* BUTTON */

.quote-btn{

width:100%;

padding:14px;

border:none;

border-radius:30px;

font-weight:600;

cursor:pointer;

background:linear-gradient(90deg,var(--accent),var(--glow));

color:white;

transition:.3s;

}

.quote-btn:hover{

transform:translateY(-3px);

box-shadow:0 10px 30px rgba(0,255,150,.5);

}


/* IMAGE SIDE */

.quote-image{

position:relative;

border-radius:20px;

overflow:hidden;

}

.quote-image img{

width:100%;
height:100%;
object-fit:cover;

}


/* OVERLAY */

.image-overlay{

position:absolute;

inset:0;

background:linear-gradient(
180deg,
rgba(0,0,0,.4),
rgba(0,0,0,.8)
);

padding:60px;

display:flex;

flex-direction:column;

justify-content:center;

color:white;

}


.image-overlay h3{

font-size:34px;

margin-bottom:20px;

}


.chat-btn{

display:inline-block;

margin-top:20px;

padding:12px 28px;

background:#25D366;

border-radius:30px;

color:white;

text-decoration:none;

font-weight:600;

}


/* FLOATING WHATSAPP */

.whatsapp-float{

position:fixed;

bottom:30px;

right:30px;

width:60px;

height:60px;

background:#25D366;

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

box-shadow:0 10px 30px rgba(0,0,0,.3);

z-index:999;

animation:float 3s infinite;

}

@keyframes float{

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

}


/* MOBILE */

@media(max-width:900px){

.quote-container{

grid-template-columns:1fr;

}

.quote-image{

order:-1;

}

.image-overlay{

padding:40px;

}

.image-overlay h3{

font-size:26px;

}

}

.footer{

background:linear-gradient(
180deg,
#0c0f14,
#05070a
);

padding-top:80px;
color:white;

}

.footer-container{

display:grid;
grid-template-columns:repeat(5,1fr);
gap:40px;

padding:0 6% 60px;

}


/* LOGO */

.footer-logo img{

width:160px;
margin-bottom:20px;

}


/* TEXT */

.footer-about p{

line-height:1.6;
opacity:.8;

}


/* SOCIAL ICONS */

.footer-social{

margin-top:20px;
display:flex;
gap:12px;

}

.footer-social a{

width:38px;
height:38px;

display:flex;
align-items:center;
justify-content:center;

border-radius:50%;

background:rgba(255,255,255,0.08);

color:white;

transition:.3s;

}

.footer-social a:hover{

background:var(--accent);
transform:translateY(-4px);

}


/* LINKS */

.footer-links h3,
.footer-contact h3,
.footer-newsletter h3{

margin-bottom:20px;
font-size:18px;

}

.footer-links ul{

list-style:none;

}

.footer-links li{

margin-bottom:12px;

}

.footer-links a{

text-decoration:none;
color:#bbb;

transition:.3s;

}

.footer-links a:hover{

color:var(--accent);
padding-left:6px;

}


/* CONTACT */

.footer-contact p{

margin-bottom:12px;
opacity:.8;

}


/* NEWSLETTER */

.newsletter-box{

display:flex;

}

.newsletter-box input{

flex:1;

padding:10px;

border:none;
outline:none;

border-radius:6px 0 0 6px;

}

.newsletter-box button{

padding:10px 16px;

border:none;

background:var(--accent);

color:white;

border-radius:0 6px 6px 0;

cursor:pointer;

}


/* FOOTER BOTTOM */

.footer-bottom{

border-top:1px solid rgba(255,255,255,.08);

text-align:center;

padding:20px;

font-size:14px;

opacity:.7;

}


/* LIGHT MODE */

body.light .footer{

background:#f5f7fb;
color:#111;

}

body.light .footer-links a{

color:#555;

}

body.light .footer-social a{

background:#eee;
color:#111;

}

body.light .newsletter-box input{

background:#eee;

}


/* MOBILE */

@media(max-width:1000px){

.footer-container{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:600px){

.footer-container{

grid-template-columns:1fr;

text-align:center;

}

.footer-social{

justify-content:center;

}

.newsletter-box{

flex-direction:column;

}

.newsletter-box input{

border-radius:6px;
margin-bottom:10px;

}

.newsletter-box button{

border-radius:6px;

}

}

.projects-section{

padding:120px 6%;
background:var(--dark);

}

/* HEADER */

.projects-header{

text-align:center;
margin-bottom:70px;

}

.projects-header h2{

font-size:40px;

background:linear-gradient(90deg,var(--accent),var(--glow));

-webkit-background-clip:text;
-webkit-text-fill-color:transparent;

}

.projects-header p{

opacity:.8;
font-size:18px;

}


/* MASONRY GRID */

.projects-grid{

column-count:3;
column-gap:20px;

}


/* PROJECT CARD */

.project-card{

position:relative;
margin-bottom:20px;
cursor:pointer;
break-inside:avoid;

border-radius:14px;
overflow:hidden;

}

.project-card img{

width:100%;
display:block;

transition:.5s;

}

/* HOVER ZOOM */

.project-card:hover img{

transform:scale(1.08);

}


/* OVERLAY */

.overlay{

position:absolute;
inset:0;

background:rgba(0,0,0,.55);

display:flex;
align-items:center;
justify-content:center;

opacity:0;
transition:.4s;

}

.overlay i{

font-size:32px;

width:70px;
height:70px;

background:var(--accent);
color:white;

display:flex;
align-items:center;
justify-content:center;

border-radius:50%;

}

.project-card:hover .overlay{

opacity:1;

}


/* VIEW MORE BUTTON */

.projects-btn{

text-align:center;
margin-top:40px;

}

.projects-btn button{

padding:14px 36px;

border:none;
border-radius:40px;

background:linear-gradient(90deg,var(--accent),var(--glow));

color:white;

font-weight:600;

cursor:pointer;

transition:.3s;

}

.projects-btn button:hover{

transform:translateY(-4px);

box-shadow:0 10px 30px rgba(0,255,150,.4);

}



/* GALLERY MODAL */

.gallery-modal{

position:fixed;
top:0;
left:0;

width:100%;
height:100%;

background:rgba(0,0,0,.92);

display:none;

flex-direction:column;
align-items:center;
justify-content:center;

z-index:9999;

}

.gallery-modal img{

max-width:80%;
max-height:70vh;

border-radius:10px;

margin-bottom:20px;

}

.gallery-controls{

display:flex;
gap:20px;

}

.gallery-controls button{

width:50px;
height:50px;

border:none;
border-radius:50%;

background:var(--accent);

color:white;
font-size:18px;

cursor:pointer;

}

.close{

position:absolute;
top:30px;
right:40px;

font-size:40px;
color:white;
cursor:pointer;

}

#galleryDesc{

color:white;
margin-top:15px;
max-width:500px;
text-align:center;

}


/* LIGHT MODE */

body.light .projects-section{

background:#f5f7fb;

}

body.light #galleryDesc{

color:#111;

}


/* RESPONSIVE */

@media(max-width:1000px){

.projects-grid{

column-count:2;

}

}

@media(max-width:600px){

.projects-grid{

column-count:1;

}

.projects-header h2{

font-size:30px;

}

}


.about-hero{

padding:140px 7% 100px;

background:linear-gradient(
135deg,
var(--dark),
#0f172a
);

position:relative;

overflow:hidden;

}



body.light .about-hero{

background:linear-gradient(
135deg,
#f6f8fc,
#eef2ff
);

}



/* CONTAINER */

.about-hero-container{

display:flex;
align-items:center;
justify-content:space-between;
gap:60px;

}



/* LEFT TEXT */

.about-hero-text{

flex:1;

animation:fadeUp 1s ease;

}

.hero-tag{

display:inline-block;

padding:6px 14px;

border-radius:30px;

background:rgba(0,255,150,.15);

color:var(--accent);

font-weight:600;

font-size:13px;

margin-bottom:18px;

}



.about-hero-text h1{

font-size:48px;

line-height:1.2;

margin-bottom:20px;

}

.about-hero-text h1 span{

background:linear-gradient(90deg,var(--accent),var(--glow));

-webkit-background-clip:text;

-webkit-text-fill-color:transparent;

}



.about-hero-text p{

opacity:.85;

font-size:17px;

max-width:520px;

margin-bottom:30px;

}



/* BUTTONS */

.hero-buttons{

display:flex;
gap:18px;

}

.hero-btn{

padding:14px 28px;

border-radius:40px;

font-weight:600;

text-decoration:none;

transition:.3s;

}

.hero-btn.primary{

background:linear-gradient(90deg,var(--accent),var(--glow));

color:white;

}

.hero-btn.primary:hover{

transform:translateY(-4px);
box-shadow:0 10px 30px rgba(0,255,150,.4);

}

.hero-btn.secondary{

border:2px solid var(--accent);

color:var(--accent);

}

.hero-btn.secondary:hover{

background:var(--accent);
color:white;

}



/* IMAGE */

.about-hero-image{

flex:1;
position:relative;

animation:fadeUp 1.2s ease;

}

.about-hero-image img{

width:100%;

border-radius:20px;

box-shadow:0 30px 60px rgba(0,0,0,.4);

}



/* FLOATING CARDS */

.floating-card{

position:absolute;

background:white;

padding:12px 16px;

border-radius:10px;

font-weight:600;

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

animation:float 4s ease-in-out infinite;

}

body.dark .floating-card{

background:#1e293b;

color:white;

}

.card1{

top:20px;
left:-20px;

}

.card2{

bottom:20px;
right:-20px;

animation-delay:1s;

}



/* SCROLL INDICATOR */

.scroll-indicator{

position:absolute;

bottom:30px;

left:50%;

transform:translateX(-50%);

}

.scroll-indicator span{

display:block;

width:26px;
height:40px;

border:2px solid var(--accent);

border-radius:20px;

position:relative;

}

.scroll-indicator span::before{

content:"";

position:absolute;

width:6px;
height:6px;

background:var(--accent);

border-radius:50%;

left:50%;
top:8px;

transform:translateX(-50%);

animation:scroll 2s infinite;

}



/* ANIMATIONS */

@keyframes float{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(-10px);

}

}

@keyframes scroll{

0%{

opacity:0;
transform:translate(-50%,0);

}

50%{

opacity:1;

}

100%{

opacity:0;
transform:translate(-50%,12px);

}

}

@keyframes fadeUp{

from{

opacity:0;
transform:translateY(40px);

}

to{

opacity:1;
transform:translateY(0);

}

}



/* RESPONSIVE */

@media(max-width:1000px){

.about-hero-container{

flex-direction:column;
text-align:center;

}

.about-hero-text p{

margin:auto;

}

.hero-buttons{

justify-content:center;

}

.about-hero-text h1{

font-size:36px;

}

.floating-card{

display:none;

}

}

.coricori{
  background-color: rgb(204, 139, 42);
  /* padding: 2px; */
  border-radius: 3px;
  /* color: #F4A300; */
  /* text-decoration: underline; */
}
.mobile-menu a, a:visited, a:active{
  text-decoration: none;
  color: white;
}

/* SECTION BASE */
.about-story{
  padding:120px 20px;
  position:relative;
}

.about-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

/* TEXT */
.about-text h2{
  font-size:40px;
  margin-bottom:10px;
}

.section-sub{
  color:var(--accent);
  margin-bottom:20px;
}

.about-text p{
  opacity:.85;
  margin-bottom:20px;
  line-height:1.7;
}

/* VISUAL SIDE */
.about-visual{
  position:relative;
  display:flex;
  flex-direction:column;
  gap:25px;
}

.about-card{
  background:linear-gradient(135deg,#111927,#0B131C);
  padding:20px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.05);
  backdrop-filter:blur(10px);
  transition:.4s;
}

.about-card h4{
  margin-bottom:5px;
  color:var(--glow);
}

.about-card:hover{
  transform:translateY(-8px) scale(1.02);
}

/* Glow orb */
.glow-orb{
  position:absolute;
  width:200px;
  height:200px;
  background:radial-gradient(circle, rgba(24,201,100,.4), transparent 70%);
  top:-40px;
  right:-40px;
  z-index:-1;
  animation:floatOrb 6s ease-in-out infinite alternate;
}

@keyframes floatOrb{
  from{transform:translateY(-10px)}
  to{transform:translateY(20px)}
}

/* GOAL BOX */
.goal-box{
  margin-top:80px;
  max-width:900px;
  margin-left:auto;
  margin-right:auto;
  text-align:center;
  padding:40px;
  border-radius:20px;
  background:linear-gradient(135deg,var(--primary),var(--glow));
  color:white;
}

.goal-box h3{
  font-size:28px;
  margin-bottom:15px;
}

.goal-box p{
  opacity:.95;
  margin-bottom:25px;
}

/* LIGHT MODE */
body.light .about-card{
  background:#fff;
  color:#111;
}

body.light .goal-box{
  background:linear-gradient(135deg,#22c55e,#16a34a);
}

/* RESPONSIVE */
@media(max-width:900px){
  .about-container{
    grid-template-columns:1fr;
  }

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

  .about-visual{
    align-items:center;
  }
}

.testimonials-section{
  padding:100px 20px;
  position:relative;
}

.testimonial-wrapper{
  display:flex;
  gap:25px;
  overflow-x:auto;
  scroll-behavior:smooth;
  padding:20px 10px;
}

.testimonial-wrapper::-webkit-scrollbar{
  display:none;
}

.testimonial-card{
  min-width:300px;
  max-width:300px;
  background:linear-gradient(135deg,#111927,#0B131C);
  padding:25px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.05);
  backdrop-filter:blur(12px);
  transition:.4s;
  flex-shrink:0;
}

.testimonial-card:hover{
  transform:translateY(-10px) scale(1.03);
  box-shadow:0 20px 50px rgba(24,201,100,.2);
}

.testimonial-card p{
  font-size:14px;
  opacity:.85;
  margin:15px 0;
  line-height:1.6;
}

.testimonial-card h4{
  font-size:13px;
  opacity:.7;
}

.stars{
  color:gold;
  font-size:14px;
}

/* CONTROLS */
.testimonial-controls{
  display:flex;
  justify-content:flex-end;
  gap:10px;
  margin-bottom:15px;
}

.arrow{
  width:40px;
  height:40px;
  border-radius:50%;
  border:none;
  cursor:pointer;
  background:linear-gradient(135deg,var(--primary),var(--glow));
  color:white;
  font-size:18px;
  transition:.3s;
}

.arrow:hover{
  transform:scale(1.1);
}

/* LIGHT MODE */
body.light .testimonial-card{
  background:white;
  color:#111;
}

body.light .arrow{
  background:linear-gradient(135deg,#22c55e,#16a34a);
}

/* MOBILE */
@media(max-width:768px){
  .testimonial-controls{
    justify-content:center;
  }

  .testimonial-card{
    min-width:260px;
  }
}

.service-coverage{
  padding:100px 20px;
}

.coverage-wrapper{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

/* TEXT */
.coverage-content h2{
  font-size:38px;
  margin-bottom:20px;
}

.coverage-intro{
  opacity:.8;
  margin-bottom:30px;
  line-height:1.6;
}

/* LIST */
.coverage-list{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
  margin-bottom:40px;
}

.coverage-list h4{
  color:var(--accent);
  margin-bottom:5px;
}

.coverage-list p{
  font-size:13px;
  opacity:.7;
}

/* IMPACT */
.coverage-impact{
  display:flex;
  gap:40px;
  margin-bottom:30px;
}

.coverage-impact h3{
  font-size:28px;
  color:var(--glow);
}

.coverage-impact span{
  font-size:12px;
  opacity:.7;
}

/* IMAGE SIDE */
.coverage-visual{
  position:relative;
}

.coverage-visual img{
  width:100%;
  border-radius:20px;
  filter:brightness(.85);
}

/* GLOW */
.coverage-visual::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:20px;
  background:linear-gradient(135deg, rgba(24,201,100,.2), transparent);
}

/* MARKERS */
.marker{
  position:absolute;
  width:14px;
  height:14px;
  background:var(--glow);
  border-radius:50%;
  box-shadow:0 0 15px var(--glow);
  animation:pulse 1.5s infinite;
}

.marker::after{
  content:"";
  position:absolute;
  width:30px;
  height:30px;
  border:2px solid var(--glow);
  border-radius:50%;
  top:-8px;
  left:-8px;
  opacity:.4;
  animation:ping 2s infinite;
}

/* POSITIONS */
.marker.ibadan{ top:55%; left:45%; }
.marker.lagos{ top:70%; left:35%; }
.marker.abuja{ top:30%; left:55%; }

/* ANIMATIONS */
@keyframes pulse{
  0%{transform:scale(1)}
  50%{transform:scale(1.3)}
  100%{transform:scale(1)}
}

@keyframes ping{
  0%{transform:scale(0.6); opacity:.6;}
  100%{transform:scale(1.8); opacity:0;}
}

/* LIGHT MODE */
body.light .coverage-content{
  color:#111;
}

body.light .coverage-visual img{
  filter:none;
}

/* MOBILE */
@media(max-width:900px){
  .coverage-wrapper{
    grid-template-columns:1fr;
  }

  .coverage-impact{
    justify-content:space-between;
  }
}

.service-map{
  padding:100px 20px;
  text-align:center;
}

.map-wrapper{
  position:relative;
  max-width:600px;
  margin:50px auto;
}

/* SVG */
.nigeria-map{
  width:100%;
  height:auto;
}

/* STATES */
.state{
  fill:#111927;
  stroke:#444;
  stroke-width:2;
  cursor:pointer;
  transition:.3s;
}

.state:hover{
  fill:var(--glow);
  stroke:var(--accent);
  transform:scale(1.02);
  transform-origin:center;
}

/* ACTIVE CLICK */
.state.active{
  fill:var(--accent);
}

/* HIGHLIGHT */
.state.highlight{
  fill:rgba(24,201,100,0.4);
}

/* TOOLTIP */
.map-tooltip{
  position:absolute;
  background:#0B131C;
  color:white;
  padding:10px 14px;
  border-radius:8px;
  font-size:13px;
  pointer-events:none;
  opacity:0;
  transform:translate(-50%,-120%);
  transition:.2s;
  border:1px solid rgba(255,255,255,0.1);
}

.map-tooltip.show{
  opacity:1;
}

/* LIGHT MODE */
body.light .state{
  fill:#e5e7eb;
  stroke:#999;
}

body.light .map-tooltip{
  background:white;
  color:#111;
}

/* MAP SECTION */
.map-wrapper{
  position: relative;
  max-width: 500px;
  margin: auto;
}

.nigeria-map{
  width: 100%;
  height: auto;
}

/* STATES */
.state{
  fill: rgba(255,255,255,0.08);
  stroke: rgba(255,255,255,0.3);
  stroke-width: 1.5;
  cursor: pointer;
  transition: all 0.4s ease;
}

/* HOVER EFFECT */
.state:hover{
  fill: linear-gradient(45deg,#00ffcc,#00c3ff);
  filter: drop-shadow(0 0 12px rgba(0,255,200,0.7));
  transform: scale(1.05);
}

/* CLICK EFFECT */
.state.active{
  fill: #00ffc3;
  filter: drop-shadow(0 0 20px #00ffc3);
}

/* TOOLTIP */
.map-tooltip{
  position: absolute;
  padding: 10px 14px;
  background: rgba(0,0,0,0.85);
  color: #fff;
  font-size: 13px;
  border-radius: 6px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.3s ease;
  z-index: 1000;
  backdrop-filter: blur(6px);
}

/* LIGHT MODE */
body.light .state{
  fill: rgba(0,0,0,0.05);
  stroke: rgba(0,0,0,0.2);
}

body.light .map-tooltip{
  background: #fff;
  color: #000;
}

/* BENEFITS SECTION */
.benefits-section{
  padding: 100px 20px;
  position: relative;
}

.section-subtitle{
  max-width: 700px;
  margin: 10px auto 50px;
  text-align: center;
  opacity: 0.8;
}

/* GRID */
.benefits-grid{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 25px;
}

/* CARD */
.benefit-card{
  padding: 30px;
  border-radius: 20px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card i{
  font-size: 30px;
  margin-bottom: 15px;
  color: #00ffc3;
}

.benefit-card h3{
  margin-bottom: 10px;
}

.benefit-card p{
  font-size: 14px;
  opacity: 0.8;
}

/* HOVER EFFECT */
.benefit-card:hover{
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,255,200,0.2);
}

/* GLOW EFFECT */
.benefit-card::before{
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0,255,200,0.2), transparent);
  top: -50%;
  left: -50%;
  opacity: 0;
  transition: 0.5s;
}

.benefit-card:hover::before{
  opacity: 1;
}

/* WHY SOLAR */
.why-solar{
  margin-top: 70px;
  text-align: center;
}

.why-grid{
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.pill{
  padding: 10px 18px;
  border-radius: 30px;
  background: rgba(0,255,200,0.1);
  border: 1px solid rgba(0,255,200,0.3);
  font-size: 13px;
  transition: 0.3s;
}

.pill:hover{
  background: #00ffc3;
  color: #000;
}

/* LIGHT MODE */
body.light .benefit-card{
  background: #fff;
  border: 1px solid #ddd;
}

body.light .pill{
  background: rgba(0,0,0,0.05);
  border: 1px solid #ccc;
}

/* MOBILE */
@media(max-width:900px){
  .benefits-grid{
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width:600px){
  .benefits-grid{
    grid-template-columns: 1fr;
  }
}




.qx9-wrapper{
  padding: 100px 20px;
  display: flex;
  justify-content: center;
}

.qx9-container{
  width: 100%;
  max-width: 700px;
}

.qx9-title{
  text-align: center;
  font-size: 36px;
}

.qx9-sub{
  text-align: center;
  margin-bottom: 40px;
  opacity: 0.7;
}

/* FLOATING FIELDS */
.qx9-field{
  position: relative;
  margin-bottom: 25px;
}

.qx9-field input,
.qx9-field textarea,
.qx9-field select{
  width: 100%;
  padding: 14px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  color: inherit;
  outline: none;
}

.qx9-field label{
  position: absolute;
  left: 14px;
  top: 14px;
  font-size: 14px;
  pointer-events: none;
  transition: 0.3s;
  opacity: 0.7;
}

/* FLOAT EFFECT */
.qx9-field input:focus + label,
.qx9-field input:valid + label,
.qx9-field textarea:focus + label,
.qx9-field textarea:valid + label,
.qx9-field select:focus + label,
.qx9-field select:valid + label{
  top: -8px;
  font-size: 11px;
  /* background: #000; */
  padding: 0 6px;
}

/* FULL WIDTH */
.qx9-field.full textarea{
  min-height: 120px;
}

/* METHOD */
.qx9-method{
  display: flex;
  gap: 20px;
  margin: 20px 0;
}

/* BUTTON */
.qx9-btn{
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(45deg,#00ffc3,#00aaff);
  color: #000;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.qx9-btn:hover{
  transform: scale(1.05);
}

/* LIGHT MODE */
body.light .qx9-field input,
body.light .qx9-field textarea,
body.light .qx9-field select{
  border: 1px solid #ccc;
}

/* MOBILE */
@media(max-width:600px){
  .qx9-method{
    flex-direction: column;
  }
}

#qx9-service option{
  background-color: #07161c;
}

body.light #qx9-service option{
  background-color: #fff;
}


.gx9-gallery-wrap{
  padding: 100px 20px;
  text-align: center;
  overflow: hidden;
}

.gx9-title{
  font-size: 32px;
  margin-bottom: 40px;
}

/* CAROUSEL */
.gx9-carousel{
  perspective: 1200px;
  overflow: hidden;
  position: relative;
}

/* TRACK */
.gx9-track{
  display: flex;
  gap: 20px;
  transition: transform 0.8s cubic-bezier(0.22,1,0.36,1);
}

/* ITEM */
.gx9-item{
  min-width: 220px;
  height: 320px;
  border-radius: 20px;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: 0.6s;
  position: relative;
}

.gx9-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

/* DEPTH EFFECT */
.gx9-item{
  transform: scale(0.8) rotateY(20deg);
  opacity: 0.5;
}

/* CENTER FOCUS */
.gx9-item.active{
  transform: scale(1) rotateY(0deg);
  opacity: 1;
  z-index: 2;
}

/* LEFT SIDE */
.gx9-item.left{
  transform: scale(0.9) rotateY(15deg);
}

/* RIGHT SIDE */
.gx9-item.right{
  transform: scale(0.9) rotateY(-15deg);
}

/* LIGHT MODE */
body.light .gx9-item{
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* MOBILE */
@media(max-width:768px){
  .gx9-item{
    min-width: 160px;
    height: 240px;
  }
}


.zkx9-gallery-section{
  padding: 100px 20px;
}

.zkx9-title{
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
}

/* MASONRY GRID */
.zkx9-grid{
  display: grid;
  grid-template-columns: repeat(4,1fr);
  grid-auto-rows: 250px;
  gap: 15px;
}

/* VARIATIONS */
.zkx9-item.tall{
  grid-row: span 2;
}
.zkx9-item.wide{
  grid-column: span 2;
}

/* ITEM */
.zkx9-item{
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  cursor: pointer;
}

.zkx9-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

/* OVERLAY */
.zkx9-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: 0.4s;
}

.zkx9-overlay h3{
  margin: 0;
}

.zkx9-overlay span{
  font-size: 12px;
  margin-top: 5px;
  color: #00ffc3;
}

/* HOVER EFFECT */
.zkx9-item:hover img{
  transform: scale(1.1);
}

.zkx9-item:hover .zkx9-overlay{
  opacity: 1;
}

/* MODAL */
.zkx9-modal{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.zkx9-modal-content{
  max-width: 800px;
  width: 90%;
}

.zkx9-modal img{
  width: 100%;
  border-radius: 10px;
}

.zkx9-modal-text{
  margin-top: 15px;
}

.zkx9-close{
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 24px;
  cursor: pointer;
}

/* LIGHT MODE */
body.light .zkx9-overlay{
  background: linear-gradient(to top, rgba(255,255,255,0.8), transparent);
  color: #000;
}

/* MOBILE */
@media(max-width:900px){
  .zkx9-grid{
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width:500px){
  .zkx9-grid{
    grid-template-columns: 1fr;
  }
}


/* HERO */
.faqx-hero{
  padding:120px 20px;
  text-align:center;
  background:linear-gradient(135deg,#0f172a,#1e293b);
  color:#fff;
}

body.light .faqx-hero{
  background:linear-gradient(135deg,#e0f2fe,#f8fafc);
  color:#111;
}

.faqx-hero h1{
  font-size:48px;
  margin-bottom:10px;
}

.faqx-search-box{
  margin-top:20px;
}

.faqx-search-box input{
  padding:12px 20px;
  width:300px;
  border-radius:30px;
  border:none;
  outline:none;
}

/* TABS */
.faqx-tabs{
  display:flex;
  justify-content:center;
  gap:10px;
  margin:40px 0;
  flex-wrap:wrap;
}

.faqx-tab{
  padding:10px 18px;
  border-radius:20px;
  border:none;
  cursor:pointer;
  background:#1e293b;
  color:#fff;
}

.faqx-tab.active{
  background:#f59e0b;
}

/* FAQ */
.faqx-container{
  max-width:900px;
  margin:auto;
}

.faqx-item{
  background:#111827;
  margin-bottom:15px;
  border-radius:12px;
  overflow:hidden;
  transition:0.3s;
}

body.light .faqx-item{
  background:#fff;
}

/* QUESTION */
.faqx-question{
  display:flex;
  justify-content:space-between;
  padding:20px;
  cursor:pointer;
}

.faqx-question span{
  font-size:24px;
  transition:0.3s;
}

/* ANSWER */
.faqx-answer{
  max-height:0;
  overflow:hidden;
  transition:0.4s ease;
  padding:0 20px;
}

.faqx-item.active .faqx-answer{
  max-height:200px;
  padding:20px;
}

.faqx-item.active .faqx-question span{
  transform:rotate(45deg);
}

/* MOBILE */
@media(max-width:768px){
  .faqx-hero h1{
    font-size:32px;
  }

  .faqx-search-box input{
    width:90%;
  }
}