body {
  margin:0;
  font-family:'Inter',sans-serif;
  background:#f5f7f6;
  color:#1a1a1a;
  line-height:1.6;
}

.container {
  width:90%;
  max-width:1200px;
  margin:auto;
}

section { 
  padding:90px 0;
  border-top:1px solid #eee;
}

h1, h2, h3 { letter-spacing:-0.5px; }

/* HEADER */
.phone-bar {
  background:#f58220;
  color:#fff;
  text-align:center;
  padding:12px;
  font-weight:600;
}

header {
  background:#fff;
  position:sticky;
  top:0;
  border-bottom:1px solid #eee;
  z-index:1000;
}

nav {
  display:flex;
  justify-content:space-between;
  align-items:center;
}

/* LOGO FIX */
nav img {
  height:90px;
  width:auto;
  transition:0.3s;
}

nav img:hover {
  transform:scale(1.05);
}

/* NAV BUTTON */
.nav-btn {
  background:#f58220;
  color:#fff;
  padding:10px 18px;
  border-radius:6px;
  text-decoration:none;
  font-weight:600;
  transition:0.3s;
  box-shadow:0 6px 15px rgba(245,130,32,0.3);
}

.nav-btn:hover {
  background:#e06f12;
  transform:translateY(-1px);
}

/* HERO */
.hero {
  background:url('../assets/images/solarpanel.png') center/cover no-repeat;
  padding:140px 0;
}

.hero-box {
  backdrop-filter: blur(6px);
  background:rgba(0,0,0,0.55);
  padding:40px;
  border-radius:12px;
  max-width:600px;
}

.hero h1 { 
  color:#fff; 
  font-size:42px; 
}

.hero p { 
  color:#ddd; 
}

/* BUTTON */
.btn {
  background: linear-gradient(135deg, #f58220, #ff9b3d);
  color:#fff;
  padding:15px 25px;
  border-radius:6px;
  text-decoration:none;
  display:inline-block;
  margin-top:20px;
  box-shadow:0 8px 20px rgba(245,130,32,0.3);
  transition:0.3s;
}

.btn:hover {
  transform:translateY(-2px);
  box-shadow:0 12px 25px rgba(245,130,32,0.4);
}

/* GRID */
.grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:20px;
}

/* CARDS */
.box {
  background:#fff;
  padding:25px;
  border-radius:10px;
  border:1px solid #eee;
  transition:0.3s;
}

.box:hover {
  transform:translateY(-5px);
  box-shadow:0 15px 30px rgba(0,0,0,0.08);
}

.box h3::before {
  content:"⚡ ";
  color:#f58220;
}

/* TRUST */
.trust {
  background:#2d4f47;
  color:#fff;
}

/* OFFER STRIP */
.offer-strip {
  background:#2d4f47;
  color:#fff;
  text-align:center;
  padding:25px;
  font-size:20px;
}

/* OFFER SECTION */
.offer {
  background:#fff;
  border-radius:12px;
  padding:40px;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.offer-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:center;
}

.offer-img {
  width:100%;
  max-height:420px;
  object-fit:cover;
  border-radius:12px;
  box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

/* FORM */
.quote-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
}

.quote-form {
  background:#fff;
  padding:30px;
  border-radius:12px;
  box-shadow:0 10px 25px rgba(0,0,0,0.05);
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width:100%;
  padding:12px;
  margin-bottom:15px;
  border:1px solid #ddd;
  border-radius:6px;
  font-size:14px;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline:none;
  border-color:#f58220;
}

.quote-form button {
  background:#f58220;
  color:#fff;
  padding:15px;
  border:none;
  width:100%;
  border-radius:6px;
  font-size:16px;
  cursor:pointer;
  transition:0.3s;
}

.quote-form button:hover {
  background:#e06f12;
}

/* FAQ */
.faq-question {
  width:100%;
  padding:15px;
  text-align:left;
  background:#fff;
  border:1px solid #ddd;
  cursor:pointer;
  border-radius:6px;
  margin-bottom:10px;
  transition:0.2s;
}

.faq-question:hover {
  background:#f9f9f9;
}

.faq-answer {
  display:none;
  padding:15px;
  background:#fafafa;
  border-radius:6px;
  margin-bottom:15px;
}

/* CTA */
.cta {
  background: linear-gradient(135deg, #2d4f47, #3d6b60);
  color:#fff;
  text-align:center;
  padding:60px;
}

.cta h2 {
  margin-bottom:15px;
}

/* MOBILE */
@media(max-width:768px){
  .quote-grid,
  .offer-grid {
    grid-template-columns:1fr;
  }

  .hero h1 {
    font-size:30px;
  }

  .hero {
    padding:100px 0;
  }
}