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

:root {
  --green: #2e7d32;
  --green-light: #43a047;
  --green-dark: #1b5e20;
  --green-pale: #f1f8f1;
  --white: #ffffff;
  --gray-bg: #f7f8f5;
  --text: #1a1a1a;
  --text-muted: #5a6470;
  --border: #e0e5d8;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
}

body {
  font-family: 'Segoe UI', system-ui, Georgia, sans-serif;
  background: var(--white);
  color: var(--text);
}

/* ─── NAV ─── */
nav {
  background: var(--white);
  padding: 0 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.logo {
  padding: 18px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 40px;
  width: auto;
}

.logo-name {
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.2px;
}

.logo-name strong {
  font-weight: 800;
  color: var(--green);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 4px;
  align-items: center;
}

nav ul a {
  color: var(--text-muted);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s;
  display: block;
}

nav ul a:hover,
nav ul a.active {
  color: var(--text);
  background: var(--gray-bg);
}

nav ul a.nav-cta {
  background: var(--green);
  color: white;
  border-radius: 6px;
}

nav ul a.nav-cta:hover {
  background: var(--green-light);
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.62) 40%, rgba(0,0,0,0.15) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 52px;
  max-width: 680px;
}

.hero-label {
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #a5d6a7;
  font-weight: 600;
  margin-bottom: 18px;
}

.hero-content h1 {
  font-size: 3.8rem;
  font-weight: 800;
  color: white;
  line-height: 1.1;
  margin-bottom: 22px;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ─── BUTTONS ─── */
.btn {
  padding: 13px 30px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-white {
  background: white;
  color: var(--green-dark);
}

.btn-white:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.18);
}

.btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.6);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
}

.btn-green {
  background: var(--green);
  color: white;
}

.btn-green:hover {
  background: var(--green-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(46,125,50,0.3);
}

/* ─── SECTION COMMON ─── */
.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
}

.label {
  font-size: 0.75rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
}

.section-header h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.2;
}

.sub {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

/* ─── SERVICES ─── */
.services-section {
  padding: 96px 52px;
  background: var(--gray-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  max-width: 1100px;
  margin: 0 auto;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.service-card {
  background: var(--white);
  padding: 36px 30px;
  transition: background 0.2s;
}

.service-card:hover {
  background: var(--green-pale);
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 10px;
  padding-left: 12px;
  border-left: 3px solid var(--green);
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ─── PHOTO FEATURES ─── */
.photo-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.photo-feature.reverse {
  direction: rtl;
}

.photo-feature.reverse > * {
  direction: ltr;
}

.photo-feature-img {
  overflow: hidden;
}

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

.photo-feature:hover .photo-feature-img img {
  transform: scale(1.03);
}

.photo-feature-text {
  padding: 70px 60px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.photo-feature.reverse .photo-feature-text {
  background: var(--gray-bg);
}

.photo-feature-text h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 18px;
}

.photo-feature-text p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.75;
  margin-bottom: 24px;
}

.feature-list {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-list li {
  color: var(--text-muted);
  font-size: 0.92rem;
  padding-left: 18px;
  position: relative;
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
}

/* ─── STATS ─── */
.stats-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--green-dark);
}

.stat {
  padding: 48px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
}

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

.stat-num {
  display: block;
  font-size: 2.4rem;
  font-weight: 800;
  color: white;
  margin-bottom: 6px;
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.82rem;
  color: #a5d6a7;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* ─── ABOUT ─── */
.about-section {
  padding: 96px 52px;
  background: var(--green-pale);
}

/* ─── CTA ─── */
.cta-section {
  position: relative;
  padding: 110px 52px;
  background-size: cover;
  background-position: center;
  text-align: center;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.58);
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
}

.cta-content p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ─── FOOTER ─── */
footer {
  background: #4a7a4f;
  padding: 40px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  overflow: visible;
}

.footer-logo-img {
  height: 140px;
  width: auto;
  margin-top: -25px;
  margin-bottom: -25px;
}

.footer-contact {
  font-size: 0.88rem;
  color: #6b7280;
}

.footer-contact a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: white;
}

.footer-copy {
  color: #374151;
  font-size: 0.8rem;
}

/* ─── CONTACT PAGE ─── */
.contact-hero {
  background: var(--green-dark);
  color: white;
  padding: 72px 52px 56px;
  text-align: center;
}

.contact-hero h2 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.contact-hero p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
}

.contact-body {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 60px;
  max-width: 1060px;
  margin: 0 auto;
  padding: 72px 52px;
}

.contact-info h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.contact-info > p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 32px;
  line-height: 1.6;
}

.info-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.info-icon-wrap {
  font-size: 1.1rem;
  width: 38px;
  height: 38px;
  background: var(--green-pale);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-row strong {
  display: block;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.info-row span {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.info-row a {
  color: var(--green);
  text-decoration: none;
}

/* ─── FORM ─── */
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 44px;
  box-shadow: var(--shadow);
}

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

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.93rem;
  font-family: inherit;
  color: var(--text);
  background: var(--gray-bg);
  transition: border-color 0.2s, background 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  background: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  width: 100%;
  padding: 14px;
  font-size: 0.98rem;
  letter-spacing: 0.3px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  .photo-feature {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .photo-feature.reverse {
    direction: ltr;
  }

  .photo-feature-img {
    height: 320px;
  }

  .photo-feature-text {
    padding: 50px 36px;
  }

  .stats-section {
    grid-template-columns: 1fr 1fr;
  }

  .stat {
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .contact-body {
    grid-template-columns: 1fr;
    padding: 50px 24px;
  }
}

@media (max-width: 768px) {
  nav {
    flex-direction: column;
    padding: 14px 24px;
    gap: 10px;
  }

  .hero-content {
    padding: 0 24px;
  }

  .hero-content h1 { font-size: 2.4rem; }

  .services-section,
  .about-section { padding: 64px 24px; }

  .cta-section { padding: 80px 24px; }

  footer {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }

  .contact-hero { padding: 56px 24px 44px; }
  .contact-hero h2 { font-size: 2rem; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }

  .stats-section { grid-template-columns: 1fr 1fr; }
}
