/* =========================
   EcoNest Professional CSS
   Fully Responsive
========================= */

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f6fdf8;
  color: #234;
  line-height: 1.5;
}

a { color: inherit; }

/* =========================
   Header (Sticky)
========================= */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  box-shadow: 0 2px 14px rgba(0,0,0,0.06);
}

.nav {
  width: 90%;
  max-width: 1150px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo { height: 80px; 
       width: auto;
}

.brand-text {
  font-weight: 900;
  color: #1b5e20;
  font-size: 20px;
  letter-spacing: 0.2px;
}

.nav-links {
  display: flex;
  gap: 18px;
}

.nav-links a {
  text-decoration: none;
  color: #0d100d;
  font-weight: 700;
  padding: 8px 10px;
  border-radius: 10px;
}

.nav-links a:hover {
  background: rgba(46,125,50,0.10);
}

.nav-cta {
  display: flex;
  gap: 10px;
}

.call-btn, .whatsapp-btn {
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(46,125,50,0.18);
}

.call-btn {
  background: #2e7d32;
  color: #fff;
}

.whatsapp-btn {
  background: #25D366;
  color: #fff;
  border-color: rgba(37,211,102,0.25);
}

/* =========================
   Hero
   .hero {
  width: 90%;
  max-width: 1150px;
  margin: auto;
  padding: 56px 0 30px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}
========================= */
.hero {
  position: relative;
  min-height: 90vh; /* full screen look */
  width: 100%;
  display: flex;
  align-items: center;
background-image: 
  linear-gradient(
      rgba(0, 0, 0, 0.25),
      rgba(0, 0, 0, 0.25)
    ),
    url("images/hero.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-text {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 50px;
  color: #ffffff;
}
.hero-text h1 {
  color: #ffffff;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.15;
  text-shadow: 0 3px 10px rgba(0,0,0,0.35);
}

.hero-sub,
.tagline {
  color: #eaffea;
}
.hero-buttons .btn {
  background: #2e7d32;
  color: #ffffff;
}

.hero-buttons .btn.outline {
  background: rgba(255,255,255,0.15);
  border: 1px solid #ffffff;
  color: #ffffff;
}
@media (max-width: 768px) {
  .hero {
    min-height: 70vh;
    text-align: center;
  }

  .hero-text {
    padding: 20px;
  }
}


.tagline {
  display: inline-block;
  background: rgba(46,125,50,0.10);
  color: #1b5e20;
  font-weight: 800;
  padding: 8px 12px;
  border-radius: 999px;
  margin: 0 0 14px;
}

.hero-text h1 {
  margin: 0 0 12px;
  font-size: clamp(26px, 3.2vw, 46px);
  color: #1b5e20;
  line-height: 1.1;
}

.hero-sub {
  margin: 0 0 16px;
  font-size: 16px;
  opacity: 0.92;
}
.hero-text p {
color: #000000;
font-weight: 500;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

/* Buttons */
.btn {
  display: inline-block;
  background: #2e7d32;
  color: #fff;
  padding: 14px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  border: 1px solid rgba(46,125,50,0.2);
}

.btn:hover { opacity: 0.96; }

.btn.outline {
  background: transparent;
  color: #1b5e20;
  border: 1px solid rgba(46,125,50,0.35);
}

.btn.whatsapp {
  background: #2e7d32;
  border-color: rgba(37,211,102,0.25);
}

.hero-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.10);
}

/* Trust bar */
.trust-bar {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-item {
  background: #010e06;
  border: 1px solid rgba(46,125,50,0.15);
  padding: 9px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

/* =========================
   Sections
========================= */
.section-head {
  max-width: 900px;
  margin: 0 auto 30px;
  text-align: center;
}

.section-head h2 {
  margin: 0 0 8px;
  font-size: clamp(24px, 2.5vw, 34px);
  color: #124112;
}

.section-head p {
  margin: 0;
  opacity: 0.9;
}

/* =========================
   Services
========================= */
.services {
  padding: 60px 20px;
  background: #ffffff;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* 5 services in one row */
  gap: 20px;
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
@media (max-width: 1024px) {
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

@media (max-width: 480px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
}
.card {
  padding: 12px;
}
.card img {
  height: 150px;
  object-fit: cover;
}


.card {
  background: #fff;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(46,125,50,0.12);
  box-shadow: 0 10px 20px rgba(0,0,0,0.06);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 30px rgba(0,0,0,0.10);
}

.card img {
  width: 100%;
  border-radius: 14px;
  height: 160px;
  object-fit: cover;
}

.card h3 {
  margin: 12px 0 6px;
  color: #1b5e20;
}

.card p {
  margin: 0 0 6px;
  opacity: 0.92;
  font-size: 14px;
}

/* =========================
   About / Why Us
========================= */
.about {
  background: #e8f5e9;
  padding: 60px 20px;
}

.about-wrap {
  width: 90%;
  max-width: 1150px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  align-items: start;
}

.about-text h2 {
  margin: 0 0 10px;
  color: #124112;
  font-size: clamp(24px, 2.5vw, 34px);
}

.why-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.why-list li {
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(46,125,50,0.12);
  padding: 10px 12px;
  border-radius: 14px;
  margin: 10px 0;
  font-weight: 700;
}

.about-buttons {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-card {
  background: #ffffff;
  border: 1px solid rgba(46,125,50,0.12);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 22px rgba(0,0,0,0.06);
}

.about-card h3 {
  margin: 0 0 8px;
  color: #1b5e20;
}

.mini-stats {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}
.mini-stats div {
  background: #f6fdf8;
  border: 1px solid rgba(46,125,50,0.10);
  border-radius: 14px;
  padding: 10px;
  font-weight: 800;
}

/* =========================
   Contact + Form
========================= */
.contact-section {
  padding: 70px 20px;
  background: linear-gradient(180deg, #f6fdf8 0%, #e8f5e9 100%);
}

.contact-wrap {
  width: 90%;
  max-width: 1150px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 26px;
  align-items: start;
}

.contact-left h2 {
  margin: 0 0 8px;
  color: #124112;
  font-size: clamp(24px, 2.5vw, 34px);
}

.contact-sub {
  margin: 0 0 14px;
  opacity: 0.9;
}

.contact-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0;
}

.quick-btn {
  text-decoration: none;
  font-weight: 900;
  padding: 12px 14px;
  border-radius: 999px;
  background: #2e7d32;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.quick-btn.wa {
  background: #25D366;
}

.small-note {
  margin-top: 10px;
  font-size: 13px;
  opacity: 0.8;
}

.contact-form {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  border: 1px solid rgba(46,125,50,0.12);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

.field label {
  font-weight: 900;
  font-size: 13px;
}

.field input,
.field select,
.field textarea {
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid #d7e6db;
  outline: none;
  font-size: 15px;
  background: #fbfffc;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: #2e7d32;
  box-shadow: 0 0 0 3px rgba(46,125,50,0.12);
}

.submit-btn {
  width: 100%;
  padding: 14px 16px;
  border: none;
  border-radius: 999px;
  font-weight: 900;
  font-size: 16px;
  color: #fff;
  background: #2e7d32;
  cursor: pointer;
}

.submit-btn:hover { opacity: 0.96; }

.success-msg {
  margin: 12px 0 0;
  font-weight: 900;
  color: #1b5e20;
  min-height: 22px;
}

/* =========================
   Footer
========================= */
.footer {
  background: #103a14;
  color: #fff;
  padding: 40px 20px 18px;
}

.footer-wrap {
  width: 90%;
  max-width: 1150px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.7fr;
  gap: 20px;
}

.footer h3, .footer h4 {
  margin: 0 0 10px;
}

.footer a {
  color: #fff;
  opacity: 0.9;
  text-decoration: none;
}

.footer a:hover { opacity: 1; text-decoration: underline; }

.copy {
  text-align: center;
  opacity: 0.85;
  margin: 25px 0 0;
  font-size: 13px;
}

/* =========================
   Responsive
========================= */
@media (max-width: 900px) {
  .nav-links { display: none; } /* simple mobile nav */
  .hero { grid-template-columns: 1fr; text-align: center; }
  .hero-buttons { justify-content: center; }
  .trust-bar { justify-content: center; }
  .about-wrap { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-wrap { grid-template-columns: 1fr; }
}
/* =========================
   Pricing Table
========================= */

.pricing {
  padding: 70px 20px;
  background: #ffffff;
}

.pricing-table {
  width: 90%;
  max-width: 900px;
  margin: 30px auto 0;
  overflow-x: auto;
}

.pricing-table table {
  width: 100%;
  border-collapse: collapse;
  background: #f6fdf8;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.pricing-table th,
.pricing-table td {
  padding: 16px 14px;
  text-align: left;
}

.pricing-table thead {
  background: #2e7d32;
  color: #ffffff;
}

.pricing-table th {
  font-size: 15px;
  font-weight: 800;
}

.pricing-table td {
  font-size: 14px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.pricing-table tr:last-child td {
  border-bottom: none;
}

.pricing-table tbody tr:hover {
  background: rgba(46,125,50,0.08);
}

.pricing-note {
  text-align: center;
  margin-top: 16px;
  font-size: 13px;
  opacity: 0.75;
}
@media (max-width: 768px) {
  .logo {
    height: 55px;
  }
}