/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --forest:    #1b4332;
  --green:     #2d6a4f;
  --mid:       #40916c;
  --light:     #74c69d;
  --mint:      #d8f3dc;
  --earth:     #7a5c2e;
  --earth-lt:  #c9a96e;
  --cream:     #faf7f2;
  --white:     #ffffff;
  --text:      #1e2a1e;
  --text-muted:#5a6b5a;
  --shadow:    0 4px 24px rgba(27,67,50,.12);
  --shadow-lg: 0 12px 48px rgba(27,67,50,.18);
  --radius:    14px;
  --nav-h:     72px;
}

html { scroll-behavior: smooth; }

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

h1,h2,h3 { font-family: 'Playfair Display', serif; line-height: 1.2; }

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

ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section { padding: 96px 0; }

/* ── Buttons ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: var(--white);
  padding: 14px 32px; border-radius: 50px;
  font-weight: 600; font-size: 1rem;
  transition: background .2s, transform .2s, box-shadow .2s;
  border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--forest); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(45,106,79,.35); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white);
  padding: 14px 32px; border-radius: 50px;
  font-weight: 600; font-size: 1rem;
  border: 2px solid rgba(255,255,255,.6);
  transition: all .2s;
}
.btn-outline:hover { background: rgba(255,255,255,.15); border-color: var(--white); }

.btn-outline-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white);
  padding: 12px 28px; border-radius: 50px;
  font-weight: 600; border: 2px solid rgba(255,255,255,.7);
  transition: all .2s;
}
.btn-outline-white:hover { background: var(--white); color: var(--green); }

.btn-full { width: 100%; justify-content: center; font-size: 1.05rem; padding: 16px; }

.btn-nav {
  background: var(--green); color: var(--white) !important;
  padding: 10px 24px; border-radius: 50px;
  font-weight: 600; transition: background .2s;
}
.btn-nav:hover { background: var(--forest); }

/* ── Section Headers ── */
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  background: var(--mint); color: var(--green);
  padding: 6px 18px; border-radius: 50px;
  font-size: .85rem; font-weight: 600; letter-spacing: .05em;
  text-transform: uppercase; margin-bottom: 16px;
}
.section-header h2 { font-size: clamp(2rem, 4vw, 2.8rem); color: var(--forest); margin-bottom: 16px; }
.section-sub { color: var(--text-muted); font-size: 1.1rem; max-width: 560px; margin: 0 auto; }

/* ── NAV ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  padding: 0 24px;
  transition: background .3s, box-shadow .3s;
}
#navbar.scrolled {
  background: var(--forest);
  box-shadow: 0 2px 20px rgba(0,0,0,.2);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 100%;
}
.logo {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; color: var(--white); font-weight: 700;
}
.logo-leaf { font-size: 1.5rem; }
.nav-links {
  display: flex; align-items: center; gap: 32px;
}
.nav-links a {
  color: rgba(255,255,255,.85); font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover { color: var(--white); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: all .3s;
}

/* ── HERO ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  background: linear-gradient(160deg, #0d2b1e 0%, #1b4332 40%, #2d6a4f 75%, #40916c 100%);
  overflow: hidden;
}
.hero-overlay {
  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");
}

/* Decorative trees */
.hero-trees { position: absolute; bottom: 0; left: 0; right: 0; display: flex; align-items: flex-end; justify-content: space-between; pointer-events: none; }
.tree {
  width: 0; height: 0;
  border-left: solid transparent;
  border-right: solid transparent;
  border-bottom: solid var(--forest);
  opacity: .25;
  filter: drop-shadow(0 -8px 0 var(--forest));
}
.tree::before {
  content: '';
  position: absolute;
  width: 0; height: 0;
  border-left: solid transparent;
  border-right: solid transparent;
  border-bottom: solid #134229;
}
.tree-1 { border-left-width: 30px; border-right-width: 30px; border-bottom-width: 160px; margin-left: 40px; }
.tree-2 { border-left-width: 45px; border-right-width: 45px; border-bottom-width: 220px; margin-left: 120px; opacity: .15; }
.tree-3 { border-left-width: 35px; border-right-width: 35px; border-bottom-width: 180px; margin-right: 100px; opacity: .18; }
.tree-4 { border-left-width: 50px; border-right-width: 50px; border-bottom-width: 240px; margin-right: 30px; opacity: .12; }

.hero-content {
  position: relative; z-index: 2;
  max-width: 680px; margin: 0 auto;
  padding: 120px 24px 80px;
  text-align: center;
  animation: fadeUp .8s ease both;
}
.hero-tag {
  display: inline-block;
  background: rgba(255,255,255,.12); color: rgba(255,255,255,.9);
  padding: 6px 18px; border-radius: 50px;
  font-size: .85rem; font-weight: 500; letter-spacing: .08em;
  text-transform: uppercase; margin-bottom: 24px;
  border: 1px solid rgba(255,255,255,.2);
}
.hero-content h1 {
  font-size: clamp(2.8rem, 7vw, 5rem);
  color: var(--white); margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.accent { color: var(--light); }
.hero-sub {
  color: rgba(255,255,255,.8); font-size: 1.15rem;
  margin-bottom: 40px; line-height: 1.7;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero-badge {
  position: absolute; bottom: 100px; right: 60px; z-index: 2;
  background: rgba(255,255,255,.1); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 16px; padding: 20px 24px;
  display: flex; align-items: center; gap: 12px;
  color: var(--white);
  animation: fadeUp .8s .3s ease both;
}
.badge-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--light); }
.badge-text { font-size: .85rem; line-height: 1.4; opacity: .9; }

.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2; color: rgba(255,255,255,.5); font-size: .8rem;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  animation: bounce 2s infinite;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--forest); color: var(--white);
  padding: 20px 24px;
}
.trust-bar-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: .95rem; font-weight: 500; opacity: .9;
}
.trust-item i { color: var(--light); font-size: 1.1rem; }

/* ── SERVICES ── */
.services { background: var(--cream); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--white); border-radius: var(--radius);
  padding: 36px 28px; position: relative;
  box-shadow: var(--shadow);
  border: 1px solid rgba(45,106,79,.08);
  transition: transform .25s, box-shadow .25s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card.featured {
  border: 2px solid var(--green);
  background: linear-gradient(135deg, var(--white) 0%, #f0faf4 100%);
}
.featured-badge {
  position: absolute; top: -12px; left: 24px;
  background: var(--green); color: var(--white);
  padding: 4px 14px; border-radius: 50px; font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em;
}
.service-icon {
  width: 60px; height: 60px; border-radius: 16px;
  background: var(--mint); display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--green); margin-bottom: 20px;
}
.service-card.featured .service-icon { background: var(--green); color: var(--white); }
.service-card h3 { font-size: 1.3rem; color: var(--forest); margin-bottom: 12px; }
.service-card p { color: var(--text-muted); margin-bottom: 20px; font-size: .95rem; }
.service-list { display: flex; flex-direction: column; gap: 8px; }
.service-list li {
  display: flex; align-items: center; gap: 8px;
  color: var(--text-muted); font-size: .9rem;
}
.service-list li::before {
  content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0;
}

/* ── ABOUT ── */
.about { background: var(--white); }
.about-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-placeholder {
  width: 100%; aspect-ratio: 4/5; border-radius: 24px;
  background: linear-gradient(135deg, var(--mint) 0%, #b7e4c7 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; color: var(--green); font-size: .9rem;
}
.about-img-placeholder i { font-size: 3rem; opacity: .6; }
.about-stat-card {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--forest); color: var(--white);
  border-radius: 16px; padding: 20px 24px; text-align: center;
  box-shadow: var(--shadow-lg);
}
.stat-num { display: block; font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--light); }
.stat-label { font-size: .8rem; opacity: .8; }
.about-text .section-tag { display: inline-block; margin-bottom: 16px; }
.about-text h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); color: var(--forest); margin-bottom: 20px; }
.about-text p { color: var(--text-muted); margin-bottom: 16px; line-height: 1.8; }
.about-features { display: flex; flex-direction: column; gap: 12px; margin: 28px 0 36px; }
.about-feature {
  display: flex; align-items: center; gap: 12px;
  font-weight: 500; color: var(--text);
}
.about-feature i { color: var(--green); font-size: 1.1rem; }

/* ── GALLERY ── */
.gallery { background: var(--cream); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.gallery-card { position: relative; border-radius: 16px; overflow: hidden; }
.gallery-card:hover .gallery-label { opacity: 1; }
.gallery-big { grid-row: span 2; }
.gallery-placeholder {
  width: 100%; height: 200px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; color: rgba(255,255,255,.7); font-size: .85rem;
}
.gallery-big .gallery-placeholder { height: 100%; min-height: 416px; }
.gp-1 { background: linear-gradient(135deg, #1b4332, #2d6a4f); }
.gp-2 { background: linear-gradient(135deg, #2d6a4f, #40916c); }
.gp-3 { background: linear-gradient(135deg, #40916c, #74c69d); }
.gp-4 { background: linear-gradient(135deg, #52796f, #2d6a4f); }
.gallery-placeholder i { font-size: 2.5rem; opacity: .5; }
.gallery-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(27,67,50,.8); color: var(--white);
  padding: 10px 16px; font-weight: 600; font-size: .9rem;
  opacity: 0; transition: opacity .25s;
}
.gallery-cta {
  text-align: center; margin-top: 32px;
  color: var(--green); font-weight: 600; font-size: 1rem;
}

/* ── BEFORE / AFTER GALLERY ── */
.ba-grid { display: flex; flex-direction: column; gap: 24px; }

.ba-pair {
  display: grid; grid-template-columns: 1fr 48px 1fr;
  align-items: center; gap: 0;
  border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.ba-img-wrap {
  position: relative; overflow: hidden;
  aspect-ratio: 4/3;
}
.ba-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.ba-pair:hover .ba-img-wrap img { transform: scale(1.03); }

.after-img img {
  filter: brightness(1.08) saturate(1.5) contrast(1.08);
}

.ba-tag {
  position: absolute; top: 14px; left: 14px;
  padding: 5px 14px; border-radius: 50px;
  font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
}
.before-tag { background: rgba(0,0,0,.55); color: #fff; }
.after-tag  { background: var(--green); color: #fff; }

.ba-divider {
  background: var(--forest); color: var(--light);
  height: 100%; display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}

@media (max-width: 640px) {
  .ba-pair { grid-template-columns: 1fr; grid-template-rows: 1fr 36px 1fr; }
  .ba-divider { height: 36px; width: 100%; }
  .ba-divider i { transform: rotate(90deg); }
}

/* ── TESTIMONIALS ── */
.testimonials {
  background: linear-gradient(135deg, var(--forest) 0%, var(--green) 100%);
  color: var(--white);
}
.testimonials .section-tag { background: rgba(255,255,255,.15); color: var(--white); }
.testimonials h2 { color: var(--white); }
.testimonials-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
}
.testimonial-card {
  background: rgba(255,255,255,.1); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius); padding: 36px;
}
.featured-testimonial .stars { color: #ffc107; font-size: 1.3rem; margin-bottom: 16px; }
.featured-testimonial p { font-size: 1.05rem; line-height: 1.8; margin-bottom: 24px; opacity: .9; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--light); color: var(--forest);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.1rem;
}
.testimonial-author strong { display: block; }
.testimonial-author span { font-size: .85rem; opacity: .7; }
.cta-card {
  display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 16px;
}
.cta-card i { font-size: 2.5rem; color: var(--light); }
.cta-card h3 { font-size: 1.6rem; }
.cta-card p { opacity: .85; line-height: 1.7; }

/* ── CONTACT ── */
.contact { background: var(--cream); }
.contact-inner { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: start; }
.contact-info .section-tag { display: inline-block; margin-bottom: 16px; }
.contact-info h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--forest); margin-bottom: 16px; }
.contact-info > p { color: var(--text-muted); margin-bottom: 36px; line-height: 1.8; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; }
.detail-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--mint); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.contact-detail strong { display: block; font-size: .9rem; margin-bottom: 2px; }
.contact-detail span { color: var(--text-muted); font-size: .9rem; }

/* ── FORM ── */
.contact-form-wrap {
  background: var(--white); border-radius: 20px;
  padding: 40px; box-shadow: var(--shadow-lg);
  border: 1px solid rgba(45,106,79,.08);
}
.quote-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: .9rem; font-weight: 600; color: var(--text); }
.form-group input, .form-group textarea {
  padding: 12px 16px; border-radius: 10px;
  border: 1.5px solid #dde5dd;
  font-family: 'Inter', sans-serif; font-size: .95rem; color: var(--text);
  background: #fcfcfc;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(64,145,108,.12);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.checkboxes { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.checkbox-label {
  display: flex; align-items: center; gap: 8px;
  font-size: .9rem; cursor: pointer; color: var(--text-muted);
}
.checkbox-label input { accent-color: var(--green); width: 16px; height: 16px; cursor: pointer; }

.form-message {
  padding: 14px 18px; border-radius: 10px;
  font-weight: 500; text-align: center;
}
.form-message.success { background: var(--mint); color: var(--forest); }
.form-message.error { background: #fde8e8; color: #b91c1c; }
.hidden { display: none; }

/* ── FOOTER ── */
.footer { background: var(--forest); color: var(--white); padding: 72px 24px 0; }
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .logo { margin-bottom: 16px; display: flex; }
.footer-brand p { color: rgba(255,255,255,.6); font-size: .9rem; margin-bottom: 24px; }
.social-links { display: flex; gap: 14px; }
.social-links a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.1); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: background .2s;
}
.social-links a:hover { background: var(--green); }
.footer-links h4, .footer-services h4 {
  font-size: 1rem; font-weight: 600; margin-bottom: 20px;
  color: var(--light);
}
.footer-links ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: rgba(255,255,255,.65); font-size: .9rem; transition: color .2s; }
.footer-links a:hover { color: var(--white); }
.footer-services ul { display: flex; flex-direction: column; gap: 10px; }
.footer-services li { color: rgba(255,255,255,.65); font-size: .9rem; }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding: 20px 0; display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { color: rgba(255,255,255,.4); font-size: .85rem; }
.admin-link { color: rgba(255,255,255,.2); font-size: .75rem; transition: color .2s; }
.admin-link:hover { color: rgba(255,255,255,.5); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .about-inner, .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-stat-card { right: 0; bottom: -16px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-big { grid-column: span 2; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .hero-badge { display: none; }
}

@media (max-width: 640px) {
  .nav-links {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: var(--forest); flex-direction: column; gap: 0;
    padding: 16px 0; transform: translateY(-100%);
    opacity: 0; pointer-events: none;
    transition: transform .3s, opacity .3s;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 14px 24px; }
  .btn-nav { border-radius: 0; margin: 8px 16px; border-radius: 8px; display: block; text-align: center; }
  .hamburger { display: flex; }

  .form-row { grid-template-columns: 1fr; }
  .checkboxes { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-big { grid-column: auto; }
  .gallery-big .gallery-placeholder { min-height: 200px; }
  .trust-bar-inner { gap: 20px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .hero-btns { flex-direction: column; align-items: center; }
  .contact-form-wrap { padding: 28px 20px; }
  .section { padding: 72px 0; }
}
