/* ===== CSS VARIABLES ===== */
:root {
  --green-dark: #1a4d1a;
  --green-mid: #2d7a2d;
  --green-main: #3a9c3a;
  --green-light: #5ab85a;
  --green-pale: #c8e6c9;
  --green-bg: #f0f7f0;
  --white: #ffffff;
  --dark: #0f2d0f;
  --text-dark: #1c3b1c;
  --text-muted: #5a7a5a;
  --shadow-sm: 0 2px 12px rgba(42, 100, 42, 0.12);
  --shadow-md: 0 6px 28px rgba(42, 100, 42, 0.18);
  --shadow-lg: 0 16px 48px rgba(42, 100, 42, 0.22);
  --border-radius: 12px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

.container,
.container-fluid {
  overflow: hidden;
}

img,
video {
  max-width: 100%;
  height: auto;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  background-color: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', serif;
  color: var(--dark);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--green-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--green-main);
  border-radius: 4px;
}

/* ===== PRELOADER ===== */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-ring {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(255, 255, 255, 0.2);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ===== BACK TO TOP ===== */
#backToTop {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  background: var(--green-main);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 999;
}

#backToTop.visible {
  opacity: 1;
  transform: translateY(0);
}

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

/* ===== NAVBAR ===== */
.navbar {
  background: var(--white) !important;
  box-shadow: 0 2px 20px rgba(42, 100, 42, 0.1);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 1030;
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 10px 0;
  box-shadow: 0 4px 24px rgba(42, 100, 42, 0.18);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--green-main), var(--green-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--white);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-text .brand-main {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--green-dark);
}

.brand-text .brand-sub {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.nav-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark) !important;
  padding: 8px 14px !important;
  border-radius: 8px;
  letter-spacing: 0.3px;
  position: relative;
  transition: var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  width: 0;
  height: 2px;
  background: var(--green-main);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: calc(100% - 28px);
}

.nav-link:hover,
.nav-link.active {
  color: var(--green-main) !important;
}

.navbar-toggler {
  border: 2px solid var(--green-main);
  border-radius: 8px;
  padding: 6px 10px;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(58, 156, 58, 0.25);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%232d7a2d' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.btn-nav-cta {
  background: linear-gradient(135deg, var(--green-main), var(--green-dark));
  color: var(--white) !important;
  padding: 9px 22px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.btn-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

/* ===== HERO CAROUSEL ===== */
#heroCarousel {
  margin-top: 0;
}

.hero-slide {
  height: 88vh;
  min-height: 520px;
  position: relative;
  overflow: hidden;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 6s ease;
}

.carousel-item.active .hero-slide img {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(0, 0, 0, 0.75) 0%,
      rgba(0, 0, 0, 0.55) 50%,
      rgba(0, 0, 0, 0.3) 100%);
  display: flex;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  padding: 8px 18px;
  border-radius: 50px;
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: fadeInDown 0.8s ease both;
}

.hero-badge span {
  width: 8px;
  height: 8px;
  background: var(--green-light);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(1.3);
  }
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
  animation: fadeInUp 0.9s 0.2s ease both;
}

.hero-title .highlight {
  color: var(--green-light);
  font-style: italic;
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.88);
  max-width: 560px;
  margin-bottom: 32px;
  animation: fadeInUp 0.9s 0.4s ease both;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s 0.6s ease both;
}

.btn-hero-primary {
  background: var(--green-main);
  color: var(--white);
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid var(--green-main);
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(58, 156, 58, 0.4);
}

.btn-hero-primary:hover {
  background: var(--white);
  color: var(--green-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(58, 156, 58, 0.5);
}

.btn-hero-outline {
  background: transparent;
  color: var(--white);
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
  transform: translateY(-3px);
}

.carousel-control-prev,
.carousel-control-next {
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  backdrop-filter: blur(8px);
  transition: var(--transition);
  opacity: 1;
}

.carousel-control-prev {
  left: 20px;
}

.carousel-control-next {
  right: 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: rgba(255, 255, 255, 0.3);
}

.carousel-indicators {
  bottom: 20px;
}

.carousel-indicators button {
  width: 30px;
  height: 4px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  transition: var(--transition);
}

.carousel-indicators button.active {
  background: var(--white);
  width: 50px;
}

/* ===== STATS STRIP ===== */
.stats-strip {
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  padding: 30px 0;
}

.stat-item {
  text-align: center;
  color: var(--white);
  padding: 12px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--green-pale);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.85;
}

/* ===== SECTION STYLES ===== */
.section-pad {
  padding: 90px 0;
}

.section-pad-sm {
  padding: 60px 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--green-main);
  margin-bottom: 12px;
}

.section-label::before,
.section-label::after {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--green-main);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--green-main), var(--green-light));
  border-radius: 3px;
  margin: 0 auto 20px;
}

.section-desc {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  background: var(--green-bg);
}

.about-img-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-wrapper img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-img-wrapper:hover img {
  transform: scale(1.04);
}

.about-badge-float {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--white);
  padding: 16px 20px;
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 200px;
}

.about-badge-float .icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--green-main), var(--green-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--white);
  flex-shrink: 0;
}

.about-badge-float .text strong {
  display: block;
  font-size: 22px;
  font-family: 'Playfair Display', serif;
  color: var(--green-dark);
  line-height: 1;
}

.about-badge-float .text span {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-content {
  padding-left: 20px;
}

.about-text {
  font-size: 15.5px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.about-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.about-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 15px;
  color: var(--text-dark);
}

.about-features li .fa-check-circle {
  color: var(--green-main);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===== SERVICE SECTION ===== */
.service-section {
  background: var(--white);
}

.service-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--green-pale);
  transition: var(--transition);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-light);
}

.service-img {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 77, 26, 0.5), transparent);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover .service-img-overlay {
  opacity: 1;
}

.service-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--green-main);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
}

.service-body {
  padding: 22px;
}

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--green-bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--green-main);
  margin-bottom: 14px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--green-main);
  color: var(--white);
}

.service-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.service-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green-main);
  font-size: 13px;
  font-weight: 700;
  margin-top: 14px;
  transition: var(--transition);
}

.service-link:hover {
  gap: 10px;
  color: var(--green-dark);
}

/* ===== WHY CHOOSE US ===== */
.why-section {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 320px;
  height: 320px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}

.why-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}

.why-heading {
  color: var(--white);
}

.why-sub {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  margin-bottom: 8px;
}

.why-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border-radius: var(--border-radius);
  padding: 28px 22px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
}

.why-icon {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--white);
  margin: 0 auto 18px;
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background: var(--green-main);
  border-color: var(--green-main);
}

.why-card h5 {
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.why-card p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13.5px;
  line-height: 1.65;
}

.why-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
}

.why-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

/* ===== GALLERY ===== */
.gallery-section {
  background: var(--green-bg);
}

.gallery-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 36px;
}

.filter-btn {
  background: var(--white);
  color: var(--text-dark);
  border: 1.5px solid var(--green-pale);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--green-main);
  color: var(--white);
  border-color: var(--green-main);
  box-shadow: var(--shadow-sm);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  border-radius: var(--border-radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(4) {
  grid-row: span 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 77, 26, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  color: var(--white);
  font-size: 30px;
  transform: scale(0.5);
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay i {
  transform: scale(1);
}

/* ===== PROCESS / STEPS ===== */
.process-section {
  background: var(--white);
}

.step-card {
  text-align: center;
  padding: 30px 20px;
  position: relative;
}

.step-number {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--green-main), var(--green-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin: 0 auto 18px;
  position: relative;
  box-shadow: 0 6px 20px rgba(58, 156, 58, 0.4);
  transition: var(--transition);
}

.step-card:hover .step-number {
  transform: scale(1.1);
}

.step-connector {
  position: absolute;
  top: 62px;
  left: calc(50% + 40px);
  width: calc(100% - 80px);
  height: 2px;
  background: linear-gradient(90deg, var(--green-light), var(--green-pale));
  border-radius: 2px;
}

.step-card:last-child .step-connector {
  display: none;
}

.step-card h5 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.step-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: var(--green-bg);
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--green-pale);
  height: 100%;
  transition: var(--transition);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  color: var(--green-pale);
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-light);
}

.stars {
  color: #f4c430;
  font-size: 14px;
  margin-bottom: 14px;
}

.testimonial-text {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--green-pale);
}

.author-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}

.author-loc {
  font-size: 12px;
  color: var(--text-muted);
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-section h2 {
  color: var(--white);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-bottom: 14px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  margin-bottom: 28px;
}

.btn-cta-white {
  background: var(--white);
  color: var(--green-dark);
  padding: 14px 34px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-cta-white:hover {
  background: var(--green-pale);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  background: var(--green-bg);
}

.contact-info-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--green-pale);
  height: 100%;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--green-pale);
}

.contact-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.contact-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--green-main), var(--green-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.contact-detail h5 {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.contact-detail p,
.contact-detail a {
  font-size: 14.5px;
  color: var(--text-muted);
  transition: var(--transition);
}

.contact-detail a:hover {
  color: var(--green-main);
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--green-pale);
}

.form-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}

.form-control,
.form-select {
  border: 1.5px solid var(--green-pale);
  border-radius: 10px;
  padding: 11px 16px;
  font-size: 14px;
  color: var(--text-dark);
  transition: var(--transition);
  background: var(--green-bg);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--green-main);
  box-shadow: 0 0 0 3px rgba(58, 156, 58, 0.15);
  background: var(--white);
  outline: none;
}

.form-control::placeholder {
  color: #aaa;
}

.btn-submit {
  background: linear-gradient(135deg, var(--green-main), var(--green-dark));
  color: var(--white);
  padding: 13px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 18px rgba(58, 156, 58, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  justify-content: center;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(58, 156, 58, 0.45);
}

/* ===== MAP ===== */
.map-section {
  background: var(--white);
  padding: 0;
}

.map-wrapper {
  position: relative;
  height: 380px;
  overflow: hidden;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(20%);
}

.map-card-overlay {
  position: absolute;
  top: 30px;
  left: 30px;
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--green-main);
  max-width: 260px;
}

.map-card-overlay h5 {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.map-card-overlay p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.8);
}

.footer-top {
  padding: 70px 0 50px;
}

.footer-brand .brand-text .brand-main {
  color: var(--white);
  font-size: 20px;
}

.footer-brand .brand-text .brand-sub {
  color: rgba(255, 255, 255, 0.5);
}

.footer-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 14px;
  margin-bottom: 22px;
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--green-main);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-title {
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--green-light);
  padding-left: 6px;
}

.footer-links a::before {
  content: '›';
  color: var(--green-main);
  font-size: 16px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-contact-item i {
  color: var(--green-light);
  font-size: 15px;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-item span {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 0;
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom span {
  color: var(--green-light);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 {
  transition-delay: 0.1s;
}

.fade-up-delay-2 {
  transition-delay: 0.2s;
}

.fade-up-delay-3 {
  transition-delay: 0.3s;
}

.fade-up-delay-4 {
  transition-delay: 0.4s;
}

/* ===== LIGHTBOX ===== */
.lightbox-modal .modal-dialog {
  max-width: 860px;
}

.lightbox-modal .modal-content {
  background: transparent;
  border: none;
}

.lightbox-modal img {
  border-radius: 14px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
}

.lightbox-modal .btn-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: var(--white);
  border-radius: 50%;
  padding: 8px;
  opacity: 1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {
  .hero-slide {
    height: 70vh;
    min-height: 440px;
  }

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

  .step-connector {
    display: none;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .stat-item:last-child {
    border-bottom: none;
  }

  .about-content {
    padding-left: 0;
    margin-top: 30px;
  }

  .contact-info-card {
    margin-bottom: 24px;
  }
}

@media (max-width: 767.98px) {
  .section-pad {
    padding: 64px 0;
  }

  .hero-slide {
    height: 85vh;
    min-height: 400px;
  }

  .hero-title {
    font-size: 1.85rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .map-card-overlay {
    max-width: 220px;
    top: 16px;
    left: 16px;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 40px;
    height: 40px;
  }

  .hero-btns {
    flex-direction: column;
  }

  .btn-hero-primary,
  .btn-hero-outline {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 575.98px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-img-wrapper img {
    height: 300px;
  }

  .why-img-wrap img {
    height: 280px;
  }

  .stat-number {
    font-size: 1.9rem;
  }

  .footer-top {
    padding: 50px 0 36px;
  }
}

.floating-icons-left {
    position: fixed;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-icons-left a {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: 0.3s;
}

.floating-icons-left a:hover {
    transform: scale(1.1);
}

.whatsapp-icon {
    background: #25D366;
}

.call-icon {
    background: #007bff;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .floating-icons-left {
        right: 10px;
    }

    .floating-icons-left a {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
}