/* ── Base ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: #1A1A1A; overflow-x: hidden; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: #2D5A27; border-radius: 3px; }

/* ── Nav ── */
#navbar { transition: all 0.4s ease; }
#navbar.scrolled { background: rgba(255,255,255,0.98) !important; box-shadow: 0 2px 30px rgba(0,0,0,0.08); }
#navbar.scrolled .nav-link { color: #2D5A27 !important; }
#navbar.scrolled .nav-logo { height: auto; width: 120px; }
#navbar.scrolled #hamburger span { background-color: #2D5A27; }
.nav-link { position: relative; transition: color 0.3s; }
.nav-link::after { content:''; position:absolute; bottom:-4px; left:0; width:0; height:2px; background:#B8962E; transition: width 0.3s ease; }
.nav-link:hover::after { width:100%; }

/* ── Hero ── */
#hero {
  min-height: 100vh;
}
.gold-divider { width:80px; height:3px; background: linear-gradient(90deg, transparent, #B8962E, transparent); margin: 0 auto; }
.gold-line-left { display:flex; align-items:center; gap:12px; }
.gold-line-left::before, .gold-line-left::after { content:''; flex:1; height:1px; background: linear-gradient(90deg, transparent, #B8962E); }

/* ── Wave ── */
.wave-white svg { display:block; }

/* ── Service Cards ── */
.service-card { transition: transform 0.3s ease, box-shadow 0.3s ease; border-bottom: 3px solid transparent; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(45,90,39,0.15); border-bottom-color: #B8962E; }
.service-icon-wrap { width:60px; height:60px; border-radius:50%; background: linear-gradient(135deg, #EEF4EC, #d8ecd4); display:flex; align-items:center; justify-content:center; margin: 0 auto 16px; transition: background 0.3s; }
.service-card:hover .service-icon-wrap { background: linear-gradient(135deg, #2D5A27, #4A7C3F); }
.service-card:hover .service-icon-wrap i { color: #D4AF55 !important; }

/* ── Why choose ── */
.why-card { border: 1px solid rgba(212,175,85,0.2); transition: border-color 0.3s, background 0.3s; }
.why-card:hover { border-color: #D4AF55; background: rgba(212,175,85,0.08); }

/* ── Steps ── */
.step-connector { position:absolute; top:40px; left:50%; width:100%; height:2px;
  background: repeating-linear-gradient(90deg, #B8962E 0, #B8962E 8px, transparent 8px, transparent 16px); }

/* ── Gallery ── */
.gallery-item { overflow:hidden; position:relative; cursor:pointer; }
.gallery-item img { transition: transform 0.5s ease; width:100%; height:100%; object-fit:cover; display:block; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay { position:absolute; inset:0; background: linear-gradient(to top, rgba(28,58,22,0.9) 0%, transparent 60%);
  opacity:0; transition: opacity 0.4s; display:flex; align-items:flex-end; padding:16px; }
.gallery-item:hover .gallery-overlay { opacity:1; }

/* ── Reviews ── */
.reviews-track { display:flex; gap:24px; transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94); }
.review-card { min-width: calc(33.333% - 16px); flex-shrink:0; }
@media(max-width:1024px){ .review-card { min-width: calc(50% - 12px); } }
@media(max-width:640px){ .review-card { min-width: 100%; } }
.stars-gold { color: #B8962E; }

/* ── CTA ── */
.cta-section { background: linear-gradient(135deg, #2D5A27 0%, #1C3A16 50%, #4A7C3F 100%); }

/* ── Form ── */
.form-input { border: 1.5px solid #e0e0e0; transition: border-color 0.3s, box-shadow 0.3s; }
.form-input:focus { outline:none; border-color: #2D5A27; box-shadow: 0 0 0 3px rgba(45,90,39,0.1); }

/* ── Footer ── */
.footer-link { color: #9CA3AF; transition: color 0.3s; }
.footer-link:hover { color: #D4AF55; }

/* ── Scroll reveal ── */
.reveal { opacity:0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity:1; transform: translateY(0); }

/* ── Mobile menu ── */
#mobile-menu { transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.4,0,0.2,1); }
#mobile-menu.open { transform: translateX(0); }

/* ── Btn ── */
.btn-gold { background: linear-gradient(135deg, #B8962E, #D4AF55); color: #1C3A16; font-weight:700; transition: all 0.3s; }
.btn-gold:hover { background: linear-gradient(135deg, #D4AF55, #B8962E); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(184,150,46,0.4); }
.btn-outline-white { border: 2px solid rgba(255,255,255,0.8); color:#fff; transition: all 0.3s; }
.btn-outline-white:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }

/* ── ABN badge ── */
.abn-badge { font-size: 11px; letter-spacing: 0.05em; }

/* Lightbox override */
.lb-outerContainer { border-radius: 8px !important; }
.lb-data .lb-caption { font-family: 'DM Sans', sans-serif; }

/* Animated counter */
.stat-number { font-feature-settings: "tnum"; }

/* Hero badge pulse */
@keyframes pulse-gold {
  0%,100% { box-shadow: 0 0 0 0 rgba(184,150,46,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(184,150,46,0); }
}
.hero-badge { animation: pulse-gold 2.5s infinite; }

/* Leaf decoration */
.leaf-deco { position:absolute; opacity:0.06; pointer-events:none; }
