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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: #1a1a1a;
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

h1, h2, h3 { line-height: 1.2; }

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 30px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: #2d6a4f;
  color: #fff;
}
.btn-primary:hover { background: #1b4332; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(45,106,79,0.3); }

.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.22); transform: translateY(-2px); }

.btn-white {
  background: #fff;
  color: #2d6a4f;
}
.btn-white:hover { background: #f0faf5; transform: translateY(-2px); }

.full-width { width: 100%; justify-content: center; }

/* ===== LABELS ===== */
.label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #74c69d;
  margin-bottom: 12px;
}

.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { font-size: 40px; font-weight: 900; color: #1a1a1a; }
.section-header.light h2 { color: #fff; }
.section-header.light .label { color: #a8e063; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.3s, box-shadow 0.3s;
}

.navbar.scrolled {
  background: rgba(22, 34, 28, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.2);
}

.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px 0 12px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 72px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.35));
  transition: transform 0.2s;
}
.nav-logo:hover .logo-img { transform: scale(1.05); }

.footer-logo {
  height: 88px;
  margin-bottom: 8px;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }

.nav-cta {
  background: #2d6a4f !important;
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 700 !important;
}
.nav-cta:hover { background: #1b4332 !important; }

.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: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(22,34,28,0.98);
  padding: 16px 32px 24px;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(255,255,255,0.9);
  font-size: 16px;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1734303023491-db8037a21f09?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  /* Fallback gradient if image doesn't load */
  background-color: #1b4332;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero:hover .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 26, 18, 0.80) 0%,
    rgba(27, 67, 50, 0.65) 50%,
    rgba(10, 26, 18, 0.50) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(116, 198, 157, 0.18);
  border: 1px solid rgba(116, 198, 157, 0.4);
  color: #a8e063;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-content h1 {
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.05;
}

.hero-content h1 em {
  font-style: normal;
  color: #74c69d;
  font-family: 'Playfair Display', serif;
}

.hero-content p {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.7;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; height: 40px; }
  50% { opacity: 1; height: 52px; }
}

/* ===== STATS ===== */
.stats {
  background: #1b2e24;
  padding: 56px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}

.stat {
  padding: 16px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat:last-child { border-right: none; }

.stat-number {
  font-size: 48px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-number span { color: #74c69d; font-size: 32px; }

.stat-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== SERVICES ===== */
.services { padding: 100px 0; background: #f8faf9; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}

.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 28px;
  border: 1px solid #e8f5ee;
  transition: all 0.3s ease;
  overflow: hidden;
}

.service-photo {
  margin: -36px -28px 24px;
  height: 180px;
  overflow: hidden;
  border-radius: 0;
}

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

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

.service-card:hover {
  border-color: #74c69d;
  box-shadow: 0 16px 48px rgba(45,106,79,0.12);
  transform: translateY(-6px);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: #e8f5ee;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #2d6a4f;
  transition: background 0.3s;
}
.service-card:hover .service-icon { background: #2d6a4f; color: #fff; }

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.service-card p { font-size: 15px; color: #666; line-height: 1.6; }

/* ===== GALLERY ===== */
.gallery { padding: 100px 0; background: #f8faf9; }

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

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item--tall {
  grid-row: span 2;
  aspect-ratio: unset;
}

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,26,18,0.7) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery-overlay span {
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ===== BEFORE & AFTER ===== */
.before-after { padding: 100px 0; background: #1b2e24; }

.before-after .section-header .label { color: #a8e063; }
.before-after .section-header h2 { color: #fff; }

.section-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  margin-top: 12px;
}

.ba-pair {
  display: grid;
  grid-template-columns: 1fr 48px 1fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 24px;
}

.ba-item { position: relative; }

.ba-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  height: 460px;
}

.ba-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.ba-label {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 18px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.ba-label--before { background: rgba(0,0,0,0.55); color: #fff; }
.ba-label--after  { background: #2d6a4f; color: #fff; }

.ba-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #74c69d;
}

.ba-caption {
  text-align: center;
  font-size: 15px;
  color: rgba(255,255,255,0.45);
  font-style: italic;
}

/* ===== ABOUT ===== */
.about { padding: 100px 0; background: #fff; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: visible;
}

.about-img-placeholder {
  width: 100%;
  padding-bottom: 110%;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  background: #1b4332;
}

.about-real-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: #2d6a4f;
  color: #fff;
  border-radius: 16px;
  padding: 20px 24px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(45,106,79,0.3);
}

.float-number {
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.float-label {
  font-size: 12px;
  opacity: 0.75;
  margin-top: 4px;
}

.about-content .label { margin-bottom: 12px; }

.about-content h2 {
  font-size: 38px;
  font-weight: 900;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 16px;
  color: #555;
  margin-bottom: 16px;
  line-height: 1.75;
}

.about-checks {
  list-style: none;
  margin: 24px 0 32px;
  display: grid;
  gap: 10px;
}

.about-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: #333;
}

.about-checks li::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: #2d6a4f;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-size: 13px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ===== PRICING ===== */
.pricing {
  padding: 100px 0;
  background: linear-gradient(135deg, #1b2e24 0%, #2d6a4f 100%);
}

.pricing-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  padding: 60px;
  display: flex;
  align-items: center;
  gap: 60px;
  backdrop-filter: blur(10px);
}

.pricing-left { text-align: center; min-width: 200px; }

.price-from {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.price-amount {
  font-size: 96px;
  font-weight: 900;
  color: #a8e063;
  line-height: 1;
  margin-bottom: 8px;
}

.price-note {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.pricing-divider {
  width: 1px;
  height: 200px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

.pricing-right { flex: 1; }

.pricing-includes {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px;
}

.pricing-includes li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

.pricing-includes li::before {
  content: '✓';
  color: #74c69d;
  font-weight: 700;
  font-size: 16px;
}

/* ===== CTA STRIP ===== */
.cta-strip {
  background: #a8e063;
  padding: 80px 0;
  text-align: center;
}

.cta-strip h2 {
  font-size: 36px;
  font-weight: 900;
  color: #1b2e24;
  margin-bottom: 12px;
}

.cta-strip p {
  font-size: 17px;
  color: #2d5016;
  margin-bottom: 28px;
}

/* ===== CONTACT ===== */
.contact { padding: 100px 0; background: #f8faf9; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.contact-info .label { margin-bottom: 12px; }

.contact-info h2 {
  font-size: 36px;
  font-weight: 900;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.contact-info > p {
  font-size: 16px;
  color: #666;
  margin-bottom: 36px;
  line-height: 1.7;
}

.contact-items { display: flex; flex-direction: column; gap: 16px; }

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: #fff;
  border: 1px solid #e4ede8;
  border-radius: 14px;
  transition: all 0.2s;
}

a.contact-item:hover {
  border-color: #74c69d;
  box-shadow: 0 4px 16px rgba(45,106,79,0.1);
  transform: translateX(4px);
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: #e8f5ee;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2d6a4f;
}

.contact-item-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #74c69d;
  margin-bottom: 3px;
}

.contact-item-value {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
}

.contact-form-wrap {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  border: 1px solid #e4ede8;
  box-shadow: 0 8px 40px rgba(0,0,0,0.06);
}

.contact-form h3 {
  font-size: 22px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: #444;
}

.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid #e4ede8;
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  color: #1a1a1a;
  background: #f8faf9;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #2d6a4f;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(45,106,79,0.08);
}

.form-success {
  display: none;
  margin-top: 16px;
  text-align: center;
  color: #2d6a4f;
  font-weight: 700;
  font-size: 15px;
  padding: 14px;
  background: #e8f5ee;
  border-radius: 10px;
}

/* ===== FOOTER ===== */
.footer {
  background: #0d1f16;
  padding-top: 60px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .nav-logo { font-size: 24px; margin-bottom: 8px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.4); margin-top: 8px; }

.footer-links, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 8px;
}

.footer-links a, .footer-contact a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-links a:hover, .footer-contact a:hover { color: #74c69d; }

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

/* ===== FADE IN ANIMATION ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Stagger service cards */
.service-card:nth-child(1) { transition-delay: 0.05s; }
.service-card:nth-child(2) { transition-delay: 0.15s; }
.service-card:nth-child(3) { transition-delay: 0.25s; }
.service-card:nth-child(4) { transition-delay: 0.35s; }

.stat:nth-child(1) { transition-delay: 0.0s; }
.stat:nth-child(2) { transition-delay: 0.1s; }
.stat:nth-child(3) { transition-delay: 0.2s; }
.stat:nth-child(4) { transition-delay: 0.3s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .ba-pair { grid-template-columns: 1fr; grid-template-rows: auto auto auto; }
  .ba-arrow { transform: rotate(90deg); }
  .ba-img-wrap { height: 320px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item--tall { grid-row: span 1; aspect-ratio: 4/3; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image { max-width: 480px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat:nth-child(even) { border-bottom: none; }
  .pricing-card { flex-direction: column; gap: 40px; padding: 40px; }
  .pricing-divider { width: 100%; height: 1px; }
  .pricing-includes { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .container { padding: 0 20px; }
  .hero-content h1 { font-size: 42px; }
  .section-header h2 { font-size: 30px; }
  .form-row { grid-template-columns: 1fr; }
  .about-content h2 { font-size: 28px; }
  .contact-info h2 { font-size: 28px; }
  .contact-form-wrap { padding: 28px 20px; }
  .cta-strip h2 { font-size: 26px; }
}
