/* =========================
   TOP CONTACT BAR
========================= */
.top-bar {
  background: #0d3b16;
  color: #fff;
  font-size: 14px;
  padding: 6px 20px;
}

.top-bar-content {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.top-bar span {
  display: inline-block;
}

.right-open {
  font-weight: 600;
  color: #ffd54f;
}

/* =========================
   GLOBAL
========================= */
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #ffffff;
  overflow-x: hidden;
}

/* =========================
   HEADER
========================= */
header {
  position: sticky;
  top: 0;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #1b5e20;
  padding: 10px 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.logo {
  display: flex;
  align-items: center;
  height: 65px;
  overflow: visible;
}

.logo img {
  height: 167px;        /* Make logo bigger */
  position: relative;
  top: 4px;            /* Adjust vertically */
}


/* =========================
   NAV
========================= */
.menu-toggle {
  display: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 10px;
  margin: 0;
  padding: 0;
}

nav ul li {
  position: relative;
}

nav ul li a {
  color: #fff;
  padding: 10px 14px;
  text-decoration: none;
  display: block;
  transition: 0.3s ease;
}

nav ul li a.active,
nav ul li a:hover {
  background: #66bb6a;
  border-radius: 4px;
}

/* =========================
   DROPDOWN
========================= */
.dropdown-menu {
  display: none;
  position: absolute;
  background: #2e7d32;
  top: 100%;
  min-width: 180px;
  flex-direction: column;
}

.dropdown-menu a {
  padding: 10px;
  color: #fff;
}

.dropdown.open .dropdown-menu {
  display: flex;
}

@media (min-width: 769px) {
  .dropdown:hover .dropdown-menu {
    display: flex;
  }
}

/* =========================
   BANNER
========================= */
.page-banner {
  height: 350px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(27,94,32,0.75);
}

.page-banner-content {
  position: relative;
  color: #fff;
  text-align: center;
  max-width: 900px;
  padding: 20px;
}

.page-banner-content h1 {
  font-size: 46px;
}

.page-banner-content p {
  color: #c8e6c9;
}

/* =========================
   SECTIONS
========================= */
.about-business {
  padding: 60px 20px;
}

.about-container {
  max-width: 1100px;
  margin: auto;
  background: #ffffff;
  padding: 35px;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
}

/* =========================
   SERVICES
========================= */
.services-preview {
  padding: 60px 20px;
}

.services-preview h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 32px;
  color: #1b5e20;
}

.services-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-box {
  background: #ffffff;
  border-radius: 6px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 3px 12px rgba(0,0,0,.1);
  transition: transform .3s ease;
}

.service-box:hover {
  transform: translateY(-6px);
  border-bottom: 4px solid #66bb6a;
}

.service-box img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-box h3 {
  margin: 15px 0 10px;
  font-size: 22px;
  color: #2e7d32;
}

.service-box p {
  padding: 0 15px 20px;
  color: #555;
  font-size: 15px;
}

/* =========================
   HIGHLIGHTS
========================= */
.highlights {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  background-color: #eef7ee;
  padding: 20px 10px;
  text-align: center;
}

.highlights div {
  background-color: #2e7d32;
  color: #fff;
  font-weight: bold;
  padding: 15px 20px;
  border-radius: 8px;
  margin: 10px;
  flex: 1 1 200px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* =========================
   FOOTER
========================= */
footer {
  background: #1b5e20;
  color: #fff;
  text-align: center;
  padding: 30px 15px;
}

/* =========================
   FLOATING BUTTONS
========================= */
.floating-contact {
  position: fixed;
  left: 15px;
  top: 60%;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: #fff;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 14px rgba(0,0,0,.3);
}

.call-float {
  background: #2e7d32;
}

.whatsapp-float {
  background: #25d366;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.6); }
  70% { box-shadow: 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* =========================
   GALLERY
========================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,.15);
  transition: transform .3s ease, box-shadow .3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,.25);
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #1b5e20;
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
  }

  nav.open {
    max-height: 600px;
  }

  nav ul {
    flex-direction: column;
  }

  .dropdown-menu {
    position: static;
    background: #2e7d32;
  }

  .page-banner {
    height: 220px;
  }

  .page-banner-content h1 {
    font-size: 26px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   MODERN HERO SECTION
========================= */

.modern-hero {
  background: #ffffff;
  padding: 80px 20px;
}

.hero-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.hero-left {
  flex: 1;
}

.hero-left h1 {
  font-size: 48px;
  line-height: 1.2;
  color: #333;
  margin-bottom: 20px;
}

.hero-left p {
  font-size: 18px;
  color: #666;
  margin-bottom: 30px;
}

.hero-btn {
  display: inline-block;
  background: #c8a951; /* Earth Gold */
  color: #fff;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease;
}

.hero-btn:hover {
  background: #1e40af;
}

.hero-right {
  flex: 1;
}

.hero-right img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-left h1 {
    font-size: 32px;
  }

  .hero-right img {
    margin-top: 30px;
  }
}


/* =========================
   WHY CHOOSE US
========================= */

.why-choose {
  padding: 30px 20px 50px;
  background: #f5efe6; /* Bamboo Beige */
}

.why-container {
  max-width: 1200px;
  margin: auto;
}

.why-header {
  text-align: center;
  margin-bottom: 50px;
}

.why-small {
  color: #f9a825;
  font-weight: bold;
  font-size: 18px;
}

.why-header h2 {
  font-size: 42px;
  color: #2e7d32;
  margin: 10px 0 20px;
}

.why-header p {
  max-width: 800px;
  margin: auto;
  color: #555;
  font-size: 16px;
  line-height: 1.6;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.why-box {
  background: #fff;
  padding-bottom: 20px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.why-box:hover {
  transform: translateY(-8px);
}

.why-box img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.why-box h3 {
  margin: 15px;
  font-size: 20px;
  color: #2e7d32;
}

.why-box p {
  margin: 0 15px;
  color: #555;
  font-size: 15px;
}

/* Mobile */
@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-header h2 {
    font-size: 30px;
  }
}

/* =========================
   PROCESS TIMELINE
========================= */

.process-timeline {
  padding: 80px 20px;
  background: #e8f5e9; /* Soft Sage Green */
  text-align: center;
}

.timeline-container {
  max-width: 1200px;
  margin: auto;
}

.process-timeline h2 {
  font-size: 36px;
  color: #2e7d32;
  margin-bottom: 60px;
}

.timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
}

/* Horizontal Line */
.timeline::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 10%;
  width: 80%;
  height: 3px;
  background: #66bb6a;
  z-index: 0;
}

.timeline-step {
  width: 22%;
  position: relative;
  z-index: 1;
}

.circle {
  width: 60px;
  height: 60px;
  background: #2e7d32;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: bold;
  margin: 0 auto 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.timeline-step h3 {
  font-size: 18px;
  color: #1b5e20;
  margin-bottom: 10px;
}

.timeline-step p {
  font-size: 14px;
  color: #555;
}

/* Mobile Version */
@media (max-width: 992px) {

  .timeline {
    flex-direction: column;
    align-items: center;
  }

  .timeline::before {
    width: 3px;
    height: 80%;
    left: 50%;
    top: 0;
  }

  .timeline-step {
    width: 80%;
    margin-bottom: 40px;
  }

  .circle {
    margin-bottom: 15px;
  }
}

/* =========================
   SECTION OVERLAP IMAGE
========================= */

.section-overlap {
  position: relative;
  margin-top: -70px;   /* Pull image upward */
  text-align: center;
  z-index: 5;
}

.section-overlap img {
  width: 85%;
  max-width: 900px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* =========================
   CONTACT PAGE SECTION STYLE
========================= */

.contact-section {
  background: linear-gradient(to bottom, #f5f9f6, #ffffff);
  padding: 60px 0;
}

/* =========================
   PREMIUM CONTACT SECTION
========================= */

.contact-section {
  background: linear-gradient(to bottom, #f3f8f4, #ffffff);
  padding: 50px 0;
}

.contact-wrapper {
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 40px;
  align-items: stretch;
  flex-wrap: wrap;
}

/* LEFT CARD */
.contact-info-card {
  flex: 1;
  background: #ffffff;
  padding: 35px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.contact-info-card h2 {
  margin-bottom: 15px;
  color: #2e7d32;
}

.contact-info-card p {
  margin-bottom: 20px;
}

/* RIGHT MAP CARD */
.contact-map-card {
  flex: 1;
  min-height: 350px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

/* BUTTONS */
.contact-actions {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

/* REMOVE EXTRA WHITE SPACE */
.about-business {
  padding: 40px 0;
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }
}

/* ================= GALLERY BACKGROUND FIX ================= */

.gallery-hero {
  padding: 50px 20px;
  background: linear-gradient(to bottom, #ffffff, #f5f9f6);
}

.gallery-section {
  background: #d1ddd4;
  padding: 70px 20px;
}

.gallery-container {
  max-width: 1200px;
  margin: auto;
}

.gallery-container h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 34px;
  color: #2e7d32;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

/* Lightbox */
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

#lightbox img {
  max-width: 90%;
  max-height: 85%;
  border-radius: 10px;
}

.close {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}