/* ============================================
   VK Gardening, Landscaping & Home Maintenance
   Australia - Main Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Nunito:wght@300;400;500;600;700&display=swap');

:root {
  --green-dark:    #1a4a20;
  --green-primary: #2d6a35;
  --green-mid:     #3d8b45;
  --green-light:   #5aad5e;
  --green-pale:    #e8f5e9;
  --green-accent:  #8bc34a;
  --gold:          #c9a84c;
  --gold-light:    #f0d080;
  --cream:         #faf8f3;
  --text-dark:     #1c2b1e;
  --text-mid:      #3a4d3c;
  --text-light:    #6b7f6d;
  --white:         #ffffff;
  --shadow-sm:     0 2px 12px rgba(26,74,32,.10);
  --shadow-md:     0 6px 30px rgba(26,74,32,.15);
  --shadow-lg:     0 12px 50px rgba(26,74,32,.22);
  --radius:        10px;
  --radius-lg:     18px;
  --transition:    all .3s cubic-bezier(.4,0,.2,1);
}

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

html { scroll-behavior: smooth; }

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

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

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

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

/* ---- UTILITY ---- */
.text-green  { color: var(--green-primary)!important; }
.text-gold   { color: var(--gold)!important; }
.bg-green    { background: var(--green-primary)!important; }
.bg-pale     { background: var(--green-pale)!important; }
.bg-dark-green { background: var(--green-dark)!important; }

.btn-primary-vk {
  background: linear-gradient(135deg, var(--green-primary), var(--green-mid));
  color: var(--white);
  border: none;
  padding: .75rem 2rem;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .03em;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(45,106,53,.3);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.btn-primary-vk:hover {
  background: linear-gradient(135deg, var(--green-dark), var(--green-primary));
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(45,106,53,.4);
}

.btn-outline-vk {
  border: 2px solid var(--green-primary);
  color: var(--green-primary);
  padding: .7rem 1.8rem;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: transparent;
}
.btn-outline-vk:hover {
  background: var(--green-primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--green-dark);
  border: none;
  padding: .75rem 2rem;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.btn-gold:hover {
  background: linear-gradient(135deg, #b8943d, var(--gold));
  color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201,168,76,.4);
}

.section-badge {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-primary);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35rem 1.2rem;
  border-radius: 50px;
  border: 1px solid rgba(45,106,53,.2);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-title span { color: var(--green-primary); }

.divider-leaf {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1rem 0 1.5rem;
}
.divider-leaf::before,
.divider-leaf::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--green-light));
}
.divider-leaf::after { background: linear-gradient(to left, transparent, var(--green-light)); }
.divider-leaf i { color: var(--green-primary); font-size: 1.2rem; }

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
  background: var(--green-dark);
  color: rgba(255,255,255,.85);
  padding: .45rem 0;
  font-size: .82rem;
  font-weight: 600;
}
.top-bar a { color: rgba(255,255,255,.85); transition: var(--transition); }
.top-bar a:hover { color: var(--gold-light); }
.top-bar .top-bar-item { display: flex; align-items: center; gap: .4rem; }
.top-bar .top-bar-item i { color: var(--green-accent); }

/* ============================================
   NAVBAR
   ============================================ */
.main-navbar {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: .6rem 0;
  position: sticky;
  top: 0;
  z-index: 1050;
  transition: var(--transition);
}

.main-navbar .navbar-brand img {
  height: 70px;
  width: auto;
  transition: var(--transition);
}

.main-navbar .nav-link {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  color: var(--text-dark)!important;
  padding: .5rem .9rem!important;
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
}

.main-navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: .9rem;
  right: .9rem;
  height: 2px;
  background: var(--green-primary);
  transform: scaleX(0);
  transition: var(--transition);
  border-radius: 2px;
}
.main-navbar .nav-link:hover::after,
.main-navbar .nav-link.active::after { transform: scaleX(1); }

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

.navbar-quote-btn {
  background: linear-gradient(135deg, var(--green-primary), var(--green-mid));
  color: var(--white)!important;
  padding: .5rem 1.4rem!important;
  border-radius: 50px!important;
  box-shadow: 0 3px 12px rgba(45,106,53,.3);
}
.navbar-quote-btn:hover {
  background: linear-gradient(135deg, var(--green-dark), var(--green-primary))!important;
  color: var(--white)!important;
  transform: translateY(-1px);
}
.navbar-quote-btn::after { display: none!important; }

/* ============================================
   MEGA MENU
   ============================================ */
.has-megamenu { position: static!important; }

.megamenu-wrapper {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--white);
  border-top: 3px solid var(--green-primary);
  border-bottom: 1px solid rgba(45,106,53,.1);
  box-shadow: var(--shadow-lg);
  padding: 2rem 0;
  display: none;
  z-index: 1100;
  animation: megaSlide .25s ease;
}

@keyframes megaSlide {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.has-megamenu:hover .megamenu-wrapper { display: block; }

.mega-col-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--green-primary);
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--green-pale);
}

.mega-link {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .55rem .8rem;
  border-radius: var(--radius);
  color: var(--text-dark);
  font-size: .88rem;
  font-weight: 600;
  transition: var(--transition);
  margin-bottom: .2rem;
}
.mega-link:hover {
  background: var(--green-pale);
  color: var(--green-primary);
  transform: translateX(4px);
}
.mega-link .mega-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-primary);
  font-size: .95rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.mega-link:hover .mega-icon {
  background: var(--green-primary);
  color: var(--white);
}

.mega-promo-card {
  background: linear-gradient(145deg, var(--green-dark), var(--green-primary));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.mega-promo-card::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
}
.mega-promo-card::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -20px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
}
.mega-promo-card img {
  border-radius: var(--radius);
  margin-bottom: 1rem;
  height: 140px;
  object-fit: cover;
  width: 100%;
}
.mega-promo-card h5 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: .5rem;
}
.mega-promo-card p {
  font-size: .82rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 1rem;
  line-height: 1.5;
}

/* ============================================
   HERO
   ============================================ */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green-dark) 0%, #0f2d12 100%);
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-bg-shapes .shape-1 {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61,139,69,.3) 0%, transparent 70%);
}
.hero-bg-shapes .shape-2 {
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,106,53,.2) 0%, transparent 70%);
}
.hero-bg-shapes .leaf-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.04) 1px, transparent 0);
  background-size: 40px 40px;
}

.hero-content { position: relative; z-index: 2; padding: 5rem 0; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.4);
  color: var(--gold-light);
  padding: .5rem 1.2rem;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.2rem;
}
.hero-title .accent { color: var(--green-accent); }

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat .num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--green-accent);
}
.hero-stat .lbl {
  font-size: .78rem;
  color: rgba(255,255,255,.65);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.hero-image-wrap {
  position: relative;
  z-index: 2;
}
.hero-image-wrap img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-height: 580px;
  object-fit: cover;
}
.hero-image-badge {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.4rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: .8rem;
  min-width: 200px;
}
.hero-image-badge .icon {
  width: 42px;
  height: 42px;
  background: var(--green-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-primary);
  font-size: 1.2rem;
}
.hero-image-badge .text strong { display: block; font-size: .9rem; color: var(--green-dark); }
.hero-image-badge .text span   { font-size: .78rem; color: var(--text-light); }

/* ============================================
   SERVICES STRIP
   ============================================ */
.services-strip {
  background: var(--green-primary);
  padding: 2rem 0;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .5rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,.2);
}
.strip-item:last-child { border-right: none; }
.strip-item .icon {
  font-size: 1.8rem;
  color: var(--green-accent);
}
.strip-item strong { display: block; color: var(--white); font-size: .95rem; }
.strip-item span   { color: rgba(255,255,255,.7); font-size: .8rem; }

/* ============================================
   ABOUT SECTION (HOME)
   ============================================ */
.about-home { padding: 5rem 0; background: var(--cream); }

.about-img-wrap {
  position: relative;
  padding: 1.5rem 1.5rem 1.5rem 0;
}
.about-img-wrap img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
  object-fit: cover;
  height: 460px;
}
.about-img-wrap .exp-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--green-dark);
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  box-shadow: var(--shadow-md);
}
.about-img-wrap .exp-badge .num { font-size: 2rem; line-height: 1; }
.about-img-wrap .exp-badge .txt { font-size: .65rem; text-align: center; line-height: 1.2; }

.check-list { list-style: none; padding: 0; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  margin-bottom: .75rem;
  font-size: .95rem;
  color: var(--text-mid);
}
.check-list li i { color: var(--green-primary); margin-top: 2px; flex-shrink: 0; }

/* ============================================
   SERVICES CARDS
   ============================================ */
.services-section { padding: 5rem 0; }

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  border: 1px solid rgba(45,106,53,.08);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.service-card .card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.service-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.service-card:hover .card-img img { transform: scale(1.07); }

.service-card .card-img .tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--green-primary);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  padding: .25rem .8rem;
  border-radius: 50px;
}

.service-card .card-body { padding: 1.5rem; }
.service-card .card-icon {
  width: 48px;
  height: 48px;
  background: var(--green-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-primary);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
.service-card h5 {
  font-size: 1.1rem;
  margin-bottom: .5rem;
}
.service-card p {
  font-size: .87rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.service-card .learn-more {
  font-size: .85rem;
  font-weight: 700;
  color: var(--green-primary);
  display: flex;
  align-items: center;
  gap: .4rem;
  transition: var(--transition);
}
.service-card .learn-more:hover { gap: .8rem; }

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--green-dark) 0%, #0e2b11 100%);
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.04) 1px, transparent 0);
  background-size: 35px 35px;
}
.why-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  height: 100%;
  position: relative;
  z-index: 1;
}
.why-card:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-6px);
}
.why-card .icon {
  width: 70px;
  height: 70px;
  background: rgba(139,195,74,.15);
  border: 2px solid rgba(139,195,74,.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--green-accent);
  margin: 0 auto 1.2rem;
}
.why-card h5 { color: var(--white); font-size: 1.05rem; margin-bottom: .5rem; }
.why-card p  { color: rgba(255,255,255,.65); font-size: .86rem; line-height: 1.6; margin: 0; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials { padding: 5rem 0; background: var(--green-pale); }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  height: 100%;
  border-top: 4px solid var(--green-primary);
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.testimonial-card .stars { color: var(--gold); margin-bottom: 1rem; }
.testimonial-card p { font-size: .9rem; color: var(--text-mid); line-height: 1.7; font-style: italic; margin-bottom: 1.2rem; }
.testimonial-card .author { display: flex; align-items: center; gap: .8rem; }
.testimonial-card .author .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 1rem;
}
.testimonial-card .author strong { font-size: .9rem; color: var(--green-dark); display: block; }
.testimonial-card .author span   { font-size: .78rem; color: var(--text-light); }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--green-primary), var(--green-mid));
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
}
.cta-section h2 { color: var(--white); font-size: clamp(1.8rem, 3.5vw, 2.8rem); position: relative; }
.cta-section p  { color: rgba(255,255,255,.82); font-size: 1.1rem; max-width: 550px; margin: 1rem auto 2rem; position: relative; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--green-dark);
  color: rgba(255,255,255,.75);
  padding: 4rem 0 0;
}
.footer-brand img { height: 80px; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.footer-brand p { font-size: .87rem; line-height: 1.7; color: rgba(255,255,255,.65); }

.footer-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--green-accent);
  margin-bottom: 1.2rem;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: .6rem; }
.footer-links a {
  color: rgba(255,255,255,.65);
  font-size: .87rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.footer-links a i { color: var(--green-accent); font-size: .75rem; }
.footer-links a:hover { color: var(--white); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  margin-bottom: 1rem;
  font-size: .87rem;
  color: rgba(255,255,255,.65);
}
.footer-contact-item i { color: var(--green-accent); margin-top: 2px; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,.65); transition: var(--transition); }
.footer-contact-item a:hover { color: var(--white); }

.footer-social { display: flex; gap: .8rem; margin-top: 1.2rem; }
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.65);
  font-size: .9rem;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--green-primary);
  border-color: var(--green-primary);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.2rem 0;
  margin-top: 3rem;
  font-size: .82rem;
  color: rgba(255,255,255,.45);
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, #0e2b11 100%);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.04) 1px, transparent 0);
  background-size: 35px 35px;
}
.page-hero .content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); }
.page-hero .breadcrumb-item,
.page-hero .breadcrumb-item a { color: rgba(255,255,255,.6); }
.page-hero .breadcrumb-item.active { color: var(--green-accent); }
.page-hero .breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,.3); }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section { padding: 5rem 0; }
.contact-info-card {
  background: var(--green-dark);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  height: 100%;
}
.contact-info-card h3 { color: var(--white); margin-bottom: 2rem; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.8rem;
}
.contact-info-item .icon-box {
  width: 48px;
  height: 48px;
  background: rgba(139,195,74,.15);
  border: 1px solid rgba(139,195,74,.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-accent);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info-item strong { display: block; color: var(--white); margin-bottom: .2rem; }
.contact-info-item span  { color: rgba(255,255,255,.65); font-size: .87rem; }

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  height: 100%;
}
.contact-form-card h3 { margin-bottom: 1.5rem; }
.form-control, .form-select {
  border: 1.5px solid rgba(45,106,53,.2);
  border-radius: var(--radius);
  padding: .75rem 1rem;
  font-family: 'Nunito', sans-serif;
  font-size: .9rem;
  transition: var(--transition);
}
.form-control:focus, .form-select:focus {
  border-color: var(--green-primary);
  box-shadow: 0 0 0 3px rgba(45,106,53,.12);
  outline: none;
}
.form-label { font-weight: 700; font-size: .87rem; color: var(--text-mid); margin-bottom: .4rem; }

/* ============================================
   ABOUT PAGE
   ============================================ */
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.team-card .team-img {
  height: 240px;
  background: linear-gradient(135deg, var(--green-pale), var(--green-primary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--white);
}
.team-card .team-body { padding: 1.5rem; }
.team-card h5 { font-size: 1rem; margin-bottom: .2rem; }
.team-card span { font-size: .82rem; color: var(--text-light); }

/* ============================================
   PROCESS STEPS
   ============================================ */
.process-section { padding: 5rem 0; background: var(--cream); }
.step-item {
  text-align: center;
  padding: 1.5rem;
  position: relative;
}
.step-num {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--green-primary), var(--green-mid));
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 1.4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  position: relative;
  z-index: 1;
}
.step-item h5 { font-size: 1rem; margin-bottom: .5rem; }
.step-item p  { font-size: .85rem; color: var(--text-light); line-height: 1.6; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
  .has-megamenu:hover .megamenu-wrapper { display: none; }
  .megamenu-wrapper.show { display: block; position: relative; box-shadow: none; border: none; padding: .5rem 0; }
  .main-navbar .navbar-brand img { height: 55px; }
  .hero-image-wrap { margin-top: 2rem; }
  .hero-image-badge { left: 0; }
  .strip-item { border-right: none; padding: .5rem 0; }
  .about-img-wrap { padding: 0; margin-bottom: 2rem; }
}

@media (max-width: 576px) {
  .hero-stats { gap: 1rem; }
  .top-bar .d-flex { flex-wrap: wrap; gap: .4rem; }
}

/* ============================================
   HERO SWIPER SLIDER
   ============================================ */

.hero-slider-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-swiper {
  width: 100%;
  height: 100vh;
  min-height: 620px;
  max-height: 900px;
}

/* --- Each slide base --- */
.hero-slide {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Slide background gradients per slide */
.slide-1 .slide-bg { background: linear-gradient(135deg, #0d2b10 0%, #1a4a20 40%, #2d6a35 100%); }
.slide-2 .slide-bg { background: linear-gradient(135deg, #0a1f28 0%, #0e3340 40%, #1a5568 100%); }
.slide-3 .slide-bg { background: linear-gradient(135deg, #1b2a0d 0%, #2d4a14 40%, #3d6b1e 100%); }
.slide-4 .slide-bg { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #0f3460 100%); }
.slide-5 .slide-bg { background: linear-gradient(135deg, #0e2b11 0%, #1a4a20 40%, #2e7d32 80%, #3d8b45 100%); }

.slide-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Dark gradient overlay for readability */
.slide-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(0,0,0,.55) 0%,
    rgba(0,0,0,.30) 50%,
    rgba(0,0,0,.10) 100%
  );
}

/* SVG scene layer */
.slide-scene {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}
.slide-scene svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Content layer */
.slide-content {
  position: relative;
  z-index: 3;
  width: 100%;
}

.min-vh-slider {
  min-height: 100vh;
  min-height: clamp(620px, 100vh, 900px);
}

/* --- Slide text elements --- */
.slide-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(139,195,74,.18);
  border: 1px solid rgba(139,195,74,.45);
  color: #aed581;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .45rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.4rem;
  backdrop-filter: blur(6px);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease .1s, transform .6s ease .1s;
}

.slide-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 1.2rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .65s ease .22s, transform .65s ease .22s;
}

.slide-accent { color: #8bc34a; }

.slide-text {
  font-size: clamp(.92rem, 1.6vw, 1.08rem);
  color: rgba(255,255,255,.82);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 520px;
  opacity: 0;
  transform: translateY(25px);
  transition: opacity .65s ease .35s, transform .65s ease .35s;
}
.text-center .slide-text { margin-left: auto; margin-right: auto; }

.slide-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease .45s, transform .65s ease .45s;
}

.slide-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border: 2px solid rgba(255,255,255,.5);
  color: #fff;
  padding: .72rem 1.8rem;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: .92rem;
  transition: var(--transition);
  backdrop-filter: blur(6px);
  background: rgba(255,255,255,.06);
}
.slide-btn-ghost:hover {
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.8);
  color: #fff;
  transform: translateY(-2px);
}

/* Stats row (slide 1) */
.slide-stats {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .65s ease .55s, transform .65s ease .55s;
}
.slide-stat { text-align: center; }
.slide-stat .num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 800;
  color: #8bc34a;
  line-height: 1;
}
.slide-stat .lbl {
  font-size: .72rem;
  color: rgba(255,255,255,.6);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.slide-stat-div {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.25);
}

/* Feature list (slides 2 & 4) */
.slide-features {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .65s ease .55s, transform .65s ease .55s;
}
.slide-features span {
  font-size: .88rem;
  color: rgba(255,255,255,.82);
  font-weight: 600;
  display: flex;
  align-items: center;
}
.slide-features span i { color: #8bc34a; }
.text-lg-end .slide-features { align-items: flex-end; }

/* Tag pills (slide 3) */
.slide-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .65s ease .55s, transform .65s ease .55s;
}
.slide-tags span {
  background: rgba(139,195,74,.15);
  border: 1px solid rgba(139,195,74,.35);
  color: #aed581;
  font-size: .78rem;
  font-weight: 700;
  padding: .35rem 1rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  backdrop-filter: blur(4px);
}

/* Icon row (slide 5) */
.slide-icon-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2.5rem;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease .55s, transform .65s ease .55s;
}
.slide-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
}
.slide-icon-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(139,195,74,.15);
  border: 1.5px solid rgba(139,195,74,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #8bc34a;
  transition: var(--transition);
  backdrop-filter: blur(6px);
}
.slide-icon-item:hover .slide-icon-circle {
  background: var(--green-primary);
  border-color: var(--green-primary);
  color: #fff;
  transform: translateY(-4px);
}
.slide-icon-item span {
  font-size: .75rem;
  color: rgba(255,255,255,.72);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* Floating badge */
.slide-float-badge {
  position: absolute;
  bottom: 80px;
  right: 40px;
  z-index: 10;
  background: #fff;
  border-radius: var(--radius);
  padding: 1rem 1.4rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: .9rem;
  min-width: 190px;
  opacity: 0;
  transform: translateY(20px) scale(.95);
  transition: opacity .7s ease .7s, transform .7s ease .7s;
}
.slide-float-badge.left { right: auto; left: 40px; }
.slide-float-icon {
  width: 44px;
  height: 44px;
  background: var(--green-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-primary);
  font-size: 1.15rem;
  flex-shrink: 0;
}
.slide-float-badge strong { display: block; font-size: .9rem; color: var(--green-dark); font-family: 'Nunito', sans-serif; }
.slide-float-badge span  { font-size: .76rem; color: var(--text-light); }

/* --- Animate in when slide is ACTIVE --- */
.swiper-slide-active .slide-badge,
.swiper-slide-active .slide-title,
.swiper-slide-active .slide-text,
.swiper-slide-active .slide-btns,
.swiper-slide-active .slide-stats,
.swiper-slide-active .slide-features,
.swiper-slide-active .slide-tags,
.swiper-slide-active .slide-icon-row,
.swiper-slide-active .slide-float-badge {
  opacity: 1;
  transform: none;
}

/* --- Swiper Navigation Buttons --- */
.hero-prev,
.hero-next {
  width: 52px !important;
  height: 52px !important;
  border-radius: 50% !important;
  background: rgba(255,255,255,.12) !important;
  border: 1.5px solid rgba(255,255,255,.3) !important;
  backdrop-filter: blur(8px);
  color: #fff !important;
  transition: var(--transition) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.hero-prev::after,
.hero-next::after { display: none !important; }
.hero-prev:hover,
.hero-next:hover {
  background: var(--green-primary) !important;
  border-color: var(--green-primary) !important;
  transform: scale(1.08);
}
.hero-prev { left: 24px !important; }
.hero-next { right: 24px !important; }
.hero-prev i,
.hero-next i { font-size: .9rem; }

/* --- Swiper Pagination Bullets --- */
.hero-pagination {
  bottom: 30px !important;
}
.hero-pagination .swiper-pagination-bullet {
  width: 10px !important;
  height: 10px !important;
  background: rgba(255,255,255,.45) !important;
  opacity: 1 !important;
  border-radius: 50px !important;
  transition: var(--transition) !important;
  margin: 0 5px !important;
}
.hero-pagination .swiper-pagination-bullet-active {
  background: #8bc34a !important;
  width: 30px !important;
}

/* --- Slide counter --- */
.hero-slide-counter {
  position: absolute;
  bottom: 32px;
  right: 80px;
  z-index: 10;
  color: rgba(255,255,255,.65);
  font-family: 'Nunito', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  display: flex;
  align-items: center;
  gap: .3rem;
}
.hero-slide-counter .current { color: #8bc34a; font-size: 1.2rem; }
.hero-slide-counter .sep     { color: rgba(255,255,255,.3); }

/* --- Progress bar at very bottom --- */
.hero-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255,255,255,.12);
  z-index: 10;
}
.hero-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--green-accent), var(--gold));
  width: 0%;
  transition: width linear;
}

/* --- Responsive --- */
@media (max-width: 991px) {
  .hero-swiper { height: auto; min-height: 80vh; max-height: none; }
  .min-vh-slider { min-height: 80vh; padding: 6rem 0 4rem; }
  .slide-float-badge { bottom: 50px; right: 20px; min-width: 160px; font-size: .82rem; }
  .slide-float-badge.left { left: 20px; }
  .slide-title { font-size: clamp(1.8rem, 6vw, 2.8rem); }
  .slide-stats { gap: 1rem; }
  .slide-stat .num { font-size: 1.5rem; }
  .hero-prev { left: 12px !important; }
  .hero-next { right: 12px !important; }
  .hero-slide-counter { right: 16px; }
}

@media (max-width: 575px) {
  .min-vh-slider { min-height: 88vh; padding: 5rem 0 3rem; }
  .slide-float-badge { display: none; }
  .hero-prev, .hero-next { width: 40px !important; height: 40px !important; }
  .slide-icon-row { gap: 1rem; }
  .slide-icon-circle { width: 48px; height: 48px; font-size: 1.1rem; }
  .hero-slide-counter { display: none; }
}
