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

:root {
  --primary: #2e7d32;
  --primary-light: #4caf50;
  --primary-dark: #1b5e20;
  --accent: #81c784;
  --white: #ffffff;
  --light-bg: #f1f8e9;
  --text-dark: #1a1a1a;
  --text-gray: #555555;
  --border: #c8e6c9;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
}

/* ── NAVBAR ── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  transition: background 0.3s;
}

nav.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.12);
}

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

.nav-logo .logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--white);
}

.nav-logo span {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-light);
  transition: width 0.3s;
}

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

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--primary);
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: 25px;
  transition: background 0.2s !important;
}

.nav-cta:hover {
  background: var(--primary-dark) !important;
  color: var(--white) !important;
}

.nav-cta::after {
  display: none !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary-dark);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ══════════════════════════════
   HERO  —  BANNER SLIDER
══════════════════════════════ */
#hero {
  padding: 0;
  margin: 0;
  background: #000;
}

/* ── Wrapper ── */
.slider-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  margin-top: 68px; /* navbar height */
}

/* ── Track (holds all slides side-by-side) ── */
.slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.75s cubic-bezier(0.77, 0, 0.175, 1);
  will-change: transform;
}

/* ── Individual slide ── */
.slide {
  flex: 0 0 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* dark overlay for centered text readability */
.slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.52);
}

/* ── Slide text content ── */
.slide-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  width: 100%;
  padding: 0 24px;
  color: var(--white);
  animation: slideIn 0.8s ease forwards;
  text-align: center;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-badge {
  display: inline-block;
  background: rgba(76, 175, 80, 0.25);
  border: 1px solid rgba(76, 175, 80, 0.5);
  color: #a5d6a7;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
}

.slide-content h1 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 18px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.slide-content h1 span {
  color: #81c784;
}

.slide-content p {
  font-size: clamp(0.95rem, 1.6vw, 1.12rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.25);
}

.slide-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(46, 125, 50, 0.4);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 125, 50, 0.5);
}

.btn-slider-sec {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.55);
  transition: all 0.3s;
  backdrop-filter: blur(4px);
}

.btn-slider-sec:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* keep the old .btn-secondary in case used elsewhere */
.btn-secondary {
  background: transparent;
  color: var(--primary);
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid var(--primary);
  transition: all 0.3s;
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── Arrows ── */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  backdrop-filter: blur(6px);
}

.slider-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-50%) scale(1.08);
}

.slider-arrow.prev {
  left: 24px;
}
.slider-arrow.next {
  right: 24px;
}

/* ── Dot indicators ── */
.slider-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}

.dot.active {
  background: var(--primary-light);
  width: 28px;
  border-radius: 6px;
}

.dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

/* ── Slide counter ── */
.slide-counter {
  position: absolute;
  bottom: 28px;
  right: 32px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  z-index: 10;
}

#currentSlide {
  color: var(--white);
  font-size: 1.1rem;
}

/* ── Progress bar (auto-play timer) ── */
.slider-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  background: var(--primary-light);
  z-index: 20;
  width: 0%;
  transition: width linear;
  border-radius: 0 2px 2px 0;
}

/* ── Stats bar (below slider) ── */
.stats-bar {
  background: var(--primary-dark);
  padding: 0;
}

.stats-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 5%;
  gap: 0;
}

.stat-box {
  flex: 1;
  text-align: center;
  padding: 10px 20px;
}

.stat-box .sn {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: #a5d6a7;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-box .sl {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.18);
  flex-shrink: 0;
}

/* ── ABOUT ── */
#about {
  padding: 90px 5%;
  background: var(--white);
}

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

.section-header .tag {
  display: inline-block;
  background: var(--light-bg);
  color: var(--primary);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}

.section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 14px;
}

.section-header p {
  color: var(--text-gray);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
}

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

.about-text h3 {
  font-size: 1.6rem;
  color: var(--primary-dark);
  margin-bottom: 16px;
  font-weight: 700;
}

.about-text p {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-features {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.about-features li .check {
  width: 22px;
  height: 22px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
  flex-shrink: 0;
}

.about-owner-photo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.about-owner-photo img {
  width: 100%;
  max-width: 420px;
  height: 480px;
  object-fit: cover;
  object-position: top center;
  border-radius: 24px;
  box-shadow: 0 16px 48px rgba(46, 125, 50, 0.18);
  border: 4px solid var(--border);
  display: block;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.about-owner-photo img:hover {
  transform: scale(1.02);
  box-shadow: 0 24px 60px rgba(46, 125, 50, 0.25);
}

.owner-caption {
  text-align: center;
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 28px;
  width: 100%;
  max-width: 420px;
}

.owner-caption strong {
  display: block;
  font-size: 1.1rem;
  color: var(--primary-dark);
  font-weight: 700;
  margin-bottom: 6px;
}

.owner-caption span {
  font-size: 0.85rem;
  color: var(--text-gray);
  line-height: 1.5;
}

/* ── SERVICES ── */
#services {
  padding: 90px 5%;
  background: var(--light-bg);
}

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

.service-card {
  background: var(--white);
  border-radius: 18px;
  border: 1px solid var(--border);
  transition: all 0.3s;
  cursor: default;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--primary-light);
}

.service-img-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

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

.service-body {
  padding: 20px 22px 24px;
  flex: 1;
}

.service-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.service-body p {
  color: var(--text-gray);
  font-size: 0.87rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-btns {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.svc-btn {
  flex: 1;
  text-align: center;
  padding: 9px 12px;
  border-radius: 25px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s;
  letter-spacing: 0.2px;
}

.svc-btn.call {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 3px 10px rgba(46, 125, 50, 0.25);
}

.svc-btn.call:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 14px rgba(46, 125, 50, 0.35);
}

.svc-btn.enquire {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}

.svc-btn.enquire:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── WHY CHOOSE US ── */
#why {
  padding: 90px 5%;
  background: var(--light-bg);
}

.why-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.why-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 28px;
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transition: transform 0.35s ease;
  transform-origin: left;
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(46, 125, 50, 0.14);
  border-color: var(--primary-light);
}

.why-icon {
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, var(--light-bg), #c8e6c9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
  border: 2px solid var(--border);
  transition: all 0.35s;
}

.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-color: var(--primary);
  transform: scale(1.1);
}

.why-card h3 {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.why-card p {
  color: var(--text-gray);
  font-size: 0.9rem;
  line-height: 1.75;
}

/* ── TESTIMONIALS SLIDER ── */
#testimonials {
  padding: 90px 5%;
  background: var(--white);
}

.testi-slider-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  padding: 0 0 56px;
}

.testi-track {
  display: flex;
  gap: 24px;
  transition: transform 0.55s cubic-bezier(0.77, 0, 0.175, 1);
  will-change: transform;
  align-items: stretch;
}

.testi-card {
  background: var(--light-bg);
  border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition:
    box-shadow 0.35s,
    border-color 0.35s;
  position: relative;
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 0;
}

.testi-card::after {
  content: "\201C";
  position: absolute;
  top: 16px;
  right: 22px;
  font-size: 5rem;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  font-family: Georgia, serif;
  pointer-events: none;
}

.testi-card:hover {
  box-shadow: 0 18px 44px rgba(46, 125, 50, 0.12);
  border-color: var(--primary-light);
}

.testi-stars {
  color: #f9a825;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.testi-quote {
  color: var(--text-gray);
  font-size: 0.92rem;
  line-height: 1.8;
  flex: 1;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 4px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.testi-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testi-info strong {
  display: block;
  font-size: 0.95rem;
  color: var(--primary-dark);
  font-weight: 700;
  margin-bottom: 2px;
}

.testi-info span {
  font-size: 0.8rem;
  color: var(--text-gray);
}

/* Arrows */
.testi-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(calc(-50% - 28px));
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--primary-dark);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.testi-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(calc(-50% - 28px)) scale(1.08);
}

.testi-prev {
  left: -10px;
}
.testi-next {
  right: -10px;
}

/* Dots */
.testi-dots {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.testi-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}

.testi-dot.active {
  background: var(--primary);
  width: 28px;
  border-radius: 6px;
}

.testi-dot:hover {
  background: var(--primary-light);
}

/* ── CONTACT ── */
#contact {
  padding: 90px 5%;
  background: var(--white);
}

.contact-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 50px;
  align-items: stretch;
}

.contact-info h3 {
  font-size: 1.5rem;
  color: var(--primary-dark);
  font-weight: 700;
  margin-bottom: 12px;
}

.contact-info p {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-item .ci-icon {
  width: 44px;
  height: 44px;
  background: var(--light-bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  border: 1px solid var(--border);
}

.contact-item .ci-text span {
  display: block;
  font-size: 0.78rem;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.contact-item .ci-text a,
.contact-item .ci-text p {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  margin: 0;
  transition: color 0.2s;
}

.contact-item .ci-text a:hover {
  color: var(--primary);
}

/* ── Contact action buttons ── */
.contact-action-btns {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* ── Google Map ── */
.contact-map {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  border: 1px solid var(--border);
  min-height: 420px;
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
}

/* ── FOOTER ── */
footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 50px 5% 24px;
}

.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand .logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  display: block;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  opacity: 0.8;
  max-width: 280px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--accent);
}

.footer-bottom {
  max-width: 1200px;
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.85rem;
  opacity: 0.65;
}

/* ══════════════════════════════
   ONLOAD POPUP FORM
══════════════════════════════ */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
  backdrop-filter: blur(3px);
}

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

.popup-box {
  background: var(--white);
  border-radius: 10px;
  width: 100%;
  max-width: 420px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: translateY(30px) scale(0.96);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.popup-overlay.active .popup-box {
  transform: translateY(0) scale(1);
}

/* Purple header bar */
.popup-header {
  background: #2e7d32;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
}

.popup-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
}

/* Close button */
.popup-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 2px;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.popup-close:hover {
  opacity: 1;
}

/* Body */
.popup-body {
  padding: 24px 24px 20px;
}

/* Form fields */
.popup-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.popup-field input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #e0e0e0;
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text-dark);
  background: #f5f5f5;
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.popup-field input:focus {
  border-color: #8b3777;
  box-shadow: 0 0 0 3px rgba(139, 55, 119, 0.12);
  background: #fff;
}

.popup-field input::placeholder {
  color: #999;
}

/* Submit */
.popup-submit {
  display: inline-flex;
  align-items: center;
  background: #2e7d32;
  color: #fff;
  border: none;
  padding: 11px 22px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  margin-top: 4px;
  transition:
    background 0.2s,
    transform 0.2s;
}

.popup-submit:hover {
  background: #6d2a5e;
  transform: translateY(-1px);
}

/* Footer note */
.popup-footer-note {
  text-align: center;
  font-size: 0.82rem;
  color: #999;
  margin-top: 16px;
}

/* ── FLOATING ENQUIRE NOW TAB ── */
.float-enquire {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  z-index: 999;
  background: var(--primary, #2e7d32);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px 10px;
  border-radius: 0 0 8px 8px;
  box-shadow: -3px 0 18px rgba(0, 0, 0, 0.18);
  transition: background 0.25s, box-shadow 0.25s, transform 0.25s;
}

.float-enquire:hover {
  background: var(--primary-dark, #1b5e20);
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.28);
  transform: translateY(-50%) rotate(180deg) translateX(2px);
}

/* ── FLOATING CALL BUTTON ── */
.float-call {
  position: fixed;
  bottom: 88px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: var(--white);
  text-decoration: none;
  padding: 13px 20px 13px 16px;
  border-radius: 50px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  overflow: hidden;
  max-width: 52px;
  white-space: nowrap;
}

.float-call:hover {
  max-width: 160px;
  background: #1ebe5d;
  box-shadow: 0 8px 26px rgba(37, 211, 102, 0.55);
  transform: translateY(-2px);
}

.float-call svg {
  flex-shrink: 0;
  animation: ring 2s ease-in-out infinite;
}

.float-call-label {
  opacity: 0;
  transform: translateX(6px);
  transition:
    opacity 0.25s ease 0.05s,
    transform 0.25s ease 0.05s;
  pointer-events: none;
}

.float-call:hover .float-call-label {
  opacity: 1;
  transform: translateX(0);
}

@keyframes ring {
  0%,
  100% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(-15deg);
  }
  20% {
    transform: rotate(15deg);
  }
  30% {
    transform: rotate(-10deg);
  }
  40% {
    transform: rotate(10deg);
  }
  50% {
    transform: rotate(0deg);
  }
}

/* ── SCROLL TO TOP ── */
#scrollTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
  z-index: 999;
}

#scrollTop:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

#scrollTop.show {
  display: flex;
}

/* ── HAPPY CUSTOMERS ── */
#happy-customers {
  padding: 90px 5%;
  background: var(--light-bg);
}

.hc-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.hc-item {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 8px 28px rgba(46, 125, 50, 0.1);
  background: var(--white);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
  position: relative;
}

.hc-item.hc-photo {
  aspect-ratio: 4 / 3;
}

.hc-item.hc-video {
  aspect-ratio: 16 / 9;
}

.hc-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(46, 125, 50, 0.18);
  border-color: var(--primary-light);
}

.hc-item img,
.hc-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hc-item.hc-photo {
  cursor: zoom-in;
}

.hc-item.hc-photo img {
  transition: transform 0.4s ease;
}

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

/* ── LIGHTBOX ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: lbFadeIn 0.25s ease;
}

.lightbox.active {
  display: flex;
}

@keyframes lbFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.lightbox-img-wrap {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: lbZoomIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes lbZoomIn {
  from {
    transform: scale(0.75);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

#lightboxImg {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: 12px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
  object-fit: contain;
  display: block;
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 22px;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 9001;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.25);
}

.lightbox-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: #fff;
  font-size: 2.4rem;
  line-height: 1;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    transform 0.2s;
  z-index: 9001;
}

.lightbox-arrow:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
  left: 16px;
}
.lightbox-next {
  right: 16px;
}

.lightbox-counter {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  letter-spacing: 1px;
  z-index: 9001;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .slider-wrapper {
    height: 80vh;
    min-height: 420px;
  }

  .slide-content {
    padding: 0 5%;
  }

  .stats-bar-inner {
    flex-wrap: wrap;
    gap: 10px;
  }

  .stat-divider {
    display: none;
  }

  .stat-box {
    flex: 0 0 48%;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  #about,
  #services,
  #why,
  #testimonials,
  #happy-customers,
  #contact {
    padding: 70px 5%;
  }

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

  .testi-card {
    flex: 0 0 calc((100% - 24px) / 2);
  }

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

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-map,
  .contact-map iframe {
    min-height: 320px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .slider-wrapper {
    height: 88vh;
    min-height: 420px;
  }

  .slide-content {
    padding: 0 16px;
  }

  .slide-content h1 {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
    margin-bottom: 12px;
  }

  .slide-content p {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  .slider-arrow {
    width: 38px;
    height: 38px;
    font-size: 1.4rem;
  }

  .slider-arrow.prev {
    left: 10px;
  }
  .slider-arrow.next {
    right: 10px;
  }

  .slide-buttons {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .btn-primary,
  .btn-slider-sec {
    padding: 12px 26px;
    font-size: 0.92rem;
    width: 200px;
    text-align: center;
  }

  .slide-counter {
    right: 16px;
    bottom: 20px;
  }

  .slider-dots {
    bottom: 18px;
  }

  nav {
    padding: 0 4%;
  }

  .nav-logo span {
    font-size: 1.15rem;
  }

  .nav-links {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-120%);
    transition: transform 0.3s;
    z-index: 999;
  }

  .nav-links.open {
    transform: translateY(0);
  }

  .hamburger {
    display: flex;
  }

  #about,
  #services,
  #why,
  #testimonials,
  #happy-customers,
  #contact {
    padding: 56px 4%;
  }

  .section-header {
    margin-bottom: 40px;
  }

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

  .service-img-wrap {
    height: 150px;
  }

  .service-body {
    padding: 14px 14px 18px;
  }

  .service-body h3 {
    font-size: 0.88rem;
  }

  .service-body p {
    font-size: 0.8rem;
  }

  .stats-bar-inner {
    padding: 16px 4%;
  }

  .stat-box .sn {
    font-size: 1.4rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .why-card {
    padding: 24px 16px;
  }

  .why-icon {
    width: 56px;
    height: 56px;
    font-size: 1.6rem;
  }

  .testi-card {
    flex: 0 0 100%;
  }

  .testi-prev {
    left: 0;
  }
  .testi-next {
    right: 0;
  }

  .about-owner-photo img {
    height: 340px;
  }

  .contact-form {
    padding: 28px 20px;
  }

  .contact-action-btns {
    flex-direction: column;
    gap: 10px;
  }

  .contact-action-btns .btn-primary,
  .contact-action-btns .btn-secondary {
    text-align: center;
    width: 100%;
  }

  .popup-box {
    padding: 28px 20px 24px;
  }

  .float-call {
    bottom: 76px;
    right: 16px;
  }

  .float-enquire {
    font-size: 0.75rem;
    padding: 14px 8px;
  }

  #scrollTop {
    bottom: 24px;
    right: 16px;
  }
}

@media (max-width: 480px) {
  .slider-wrapper {
    height: 90vh;
    min-height: 400px;
  }

  .slide-badge {
    font-size: 0.75rem;
    padding: 5px 12px;
    margin-bottom: 12px;
  }

  .slide-content h1 {
    font-size: 1.45rem;
  }

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

  .service-img-wrap {
    height: 180px;
  }

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

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

  .stat-box {
    flex: 0 0 100%;
    padding: 8px 12px;
  }

  .stats-bar-inner {
    gap: 4px;
  }

  .section-header h2 {
    font-size: 1.4rem;
  }

  .about-text h3 {
    font-size: 1.3rem;
  }

  .testi-slider-wrapper {
    padding: 0 0 50px;
  }

  .testi-prev,
  .testi-next {
    top: auto;
    bottom: 0;
    transform: none;
  }

  .testi-prev {
    left: calc(50% - 56px);
  }
  .testi-next {
    right: calc(50% - 56px);
  }

  .testi-arrow:hover {
    transform: scale(1.08);
  }

  .contact-details {
    gap: 16px;
  }

  .popup-box {
    max-width: 100%;
    border-radius: 16px;
  }

  footer {
    padding: 40px 4% 20px;
  }

  .footer-bottom {
    gap: 8px;
  }
}

/* ── PACKAGES ── */
#packages {
  padding: 80px 5%;
  background: var(--light-bg);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.pkg-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 28px 32px;
  border: 2px solid var(--border);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(46, 125, 50, 0.13);
}

.pkg-card.pkg-featured {
  border-color: var(--primary);
  box-shadow: 0 8px 32px rgba(46, 125, 50, 0.15);
  background: linear-gradient(160deg, #f9fff9 0%, #e8f5e9 100%);
}

.pkg-popular-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 5px 18px;
  border-radius: 20px;
  white-space: nowrap;
  text-transform: uppercase;
}

.pkg-badge {
  display: inline-block;
  background: #e8f5e9;
  color: var(--primary-dark);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  border: 1px solid var(--border);
}

.pkg-card.pkg-featured .pkg-badge {
  background: var(--primary-dark);
  color: var(--white);
  border-color: var(--primary-dark);
}

.pkg-duration {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.pkg-card.pkg-featured .pkg-duration {
  color: var(--primary-dark);
}

.pkg-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
}

.pkg-desc {
  font-size: 0.92rem;
  color: var(--text-gray);
  line-height: 1.65;
}

.pkg-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.pkg-features li {
  font-size: 0.9rem;
  color: var(--text-dark);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.pk-check {
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.pkg-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 20px 0 16px;
  padding: 16px;
  background: rgba(76, 175, 80, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(76, 175, 80, 0.2);
}

.pkg-price-amount {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.pkg-price-label {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
}

.pkg-card.pkg-featured .pkg-price {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.pkg-card.pkg-featured .pkg-price-amount {
  color: #328336;
}

.pkg-card.pkg-featured .pkg-price-label {
  color: rgb(49 131 53);
}

.pkg-btn {
  display: block;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 24px;
  border-radius: 50px;
  transition:
    opacity 0.2s,
    transform 0.2s;
  margin-top: 4px;
}

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

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

  .pkg-card.pkg-featured {
    order: -1;
  }
}
