
:root {
  --primary: #FBBF24;
--primary-dark: #F59E0B;
  --secondary: #0f172a;
  --text: #1f2937;
  --muted: #6b7280;
  --bg: #f8fafc;
  --white: #ffffff;
  --border: rgba(15, 23, 42, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  display: block;
}

.topbar {
  background: var(--secondary);
  color: var(--white);
  padding: 0.8rem 2rem;
}

.topbar-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.topbar a {
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.topbar i {
  color: var(--primary);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(15, 23, 42, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.logo {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.logo span {
  color: var(--primary);
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-links a {
  color: var(--white);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}

.btn {
  display: inline-block;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.3s ease, background 0.3s ease;
}

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

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.hero {
  min-height: 92vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 2rem;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/roof.jpg') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.4));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: center;
  color: var(--white);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(242, 140, 40, 0.16);
  color: #ffd6a8;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 4.1rem);
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.08rem;
  color: #e5e7eb;
  margin-bottom: 1.8rem;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-highlights {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  color: #fef3c7;
  font-weight: 500;
}

.hero-highlights div {
  padding: 0.7rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-highlights i {
  margin-right: 0.45rem;
  color: var(--primary);
}

.section {
  padding: 5rem 2rem;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 0.75rem;
  color: var(--secondary);
}

.section-heading p {
  color: var(--muted);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.card,
.stat-card,
.review-card,
.compare-card,
.contact-card,
.contact-form,
.gallery-item {
  background: var(--white);
  border-radius: 1.2rem;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.card {
  padding: 2rem;
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.card i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 0.8rem;
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  color: var(--secondary);
}

.card p {
  color: var(--muted);
}

.why-us-section {
  background: linear-gradient(180deg, #fef7f0 0%, var(--bg) 100%);
}

.about-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.about-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 0.8rem;
  color: var(--secondary);
}

.about-content p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.feature-list {
  list-style: none;
  display: grid;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--secondary);
}

.feature-list i {
  color: var(--primary);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  gap: 1rem;
}

.stat-card {
  padding: 1.5rem;
  text-align: center;
}

.stat-card .counter {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
}

.stat-card p {
  color: var(--muted);
  margin-top: 0.3rem;
}

.compare-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(250px, 1fr));
  gap: 1.5rem;
}

.compare-card {
  overflow: hidden;
  position: relative;
}

.compare-card img {
  height: 320px;
  object-fit: cover;
}

.compare-label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.45rem 0.8rem;
  background: rgba(15, 23, 42, 0.8);
  color: var(--white);
  border-radius: 999px;
  font-size: 0.9rem;
}

.compare-label.after {
  background: rgba(242, 140, 40, 0.92);
}

.gallery-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
}

.gallery-item {
  overflow: hidden;
}

.gallery-item img {
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item figcaption {
  padding: 0.9rem 1rem;
  color: var(--secondary);
  font-weight: 600;
}

.reviews-section {
  background: #fff;
}

.reviews-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
}

.review-card {
  padding: 1.7rem;
  border: 1px solid var(--border);
}

.review-card p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.review-card h3 {
  color: var(--secondary);
  font-weight: 700;
}

.contact-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.5rem;
}

.contact-card,
.contact-form {
  padding: 2rem;
}

.contact-card h2 {
  font-size: 1.8rem;
  color: var(--secondary);
  margin-bottom: 0.8rem;
}

.contact-card p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.contact-list {
  list-style: none;
  display: grid;
  gap: 0.8rem;
  color: var(--secondary);
}

.contact-list i {
  color: var(--primary);
  margin-right: 0.6rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid #dbe4ef;
  border-radius: 0.8rem;
  font: inherit;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(242, 140, 40, 0.25);
  border-color: var(--primary);
}

.site-footer {
  background: var(--secondary);
  color: #e5e7eb;
  padding: 3rem 2rem 1.2rem;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.site-footer h3,
.site-footer h4 {
  color: var(--white);
  margin-bottom: 0.7rem;
}

.site-footer ul {
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.site-footer a {
  color: #d1d5db;
}

.footer-bottom {
  max-width: 1200px;
  margin: 1.8rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  color: #9ca3af;
}

.floating-whatsapp {
  position: fixed;
  right: 1.2rem;
  bottom: 5.4rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 1.7rem;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.32);
  z-index: 999;
}

.scroll-top {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-size: 1.3rem;
  cursor: pointer;
  display: none;
  box-shadow: 0 10px 25px rgba(242, 140, 40, 0.28);
  z-index: 999;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .topbar {
    padding: 0.8rem 1rem;
  }

  .site-header {
    padding: 1rem;
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 0.8rem;
  }

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

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: 84vh;
    padding: 4rem 1rem;
  }

  .hero-highlights {
    justify-content: center;
  }

  .section {
    padding: 4rem 1rem;
  }

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

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

@media (max-width: 480px) {
  .topbar-content {
    justify-content: center;
    text-align: center;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

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

  .contact-card,
  .contact-form {
    padding: 1.3rem;
  }
}
#customerForm{
    display:none;
    margin-top:25px;
}
.estimate-btn{

    background:#d4af37;
    color:#fff !important;

    padding:12px 22px;

    border-radius:8px;

    font-weight:bold;

    transition:.3s;

}

.estimate-btn:hover{

    background:#b89022;

}
