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

/* ===== CSS VARIABLES ===== */
:root {
  --green-deep:   #0d2b12;
  --green-dark:   #1a4a22;
  --green-mid:    #2d7a3a;
  --green-bright: #4caf50;
  --green-light:  #a8d5ab;
  --white:        #f5f5f0;
  --off-white:    #e8e8e2;
  --black:        #0a0a0a;
  --gray:         #888880;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Outfit', sans-serif;
  --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ===== NAVIGATION ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(76, 175, 80, 0.25);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo-icon {
  width: 36px; height: 36px;
  background: var(--green-mid);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  display: inline-block;
  flex-shrink: 0;
}
.nav-logo span {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}
.nav-logo span em {
  color: var(--green-bright);
  font-style: normal;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--off-white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--green-bright);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--green-bright); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--green-bright); }
.nav-links a.active::after { width: 100%; }
.nav-cta {
  background: var(--green-mid);
  color: var(--white) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
  transition: background var(--transition) !important;
}
.nav-cta:hover { background: var(--green-bright) !important; }
.nav-cta::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--green-mid);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--green-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(76,175,80,0.3);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}
.btn-dark {
  background: var(--black);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--green-deep);
  transform: translateY(-2px);
}

/* ===== SECTION COMMONS ===== */
section { padding: 6rem 5%; }
.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 1rem;
  display: block;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 540px;
  line-height: 1.8;
}
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ===== HERO (homepage) ===== */
.hero {
  min-height: 100vh;
  background: var(--green-deep);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 5% 6rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 80% at 70% 50%, rgba(45,122,58,0.18) 0%, transparent 70%),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 60px,
      rgba(76,175,80,0.03) 60px,
      rgba(76,175,80,0.03) 61px
    );
}
.hero-content {
  position: relative;
  max-width: 640px;
  animation: fadeUp 0.9s ease both;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(76,175,80,0.15);
  border: 1px solid rgba(76,175,80,0.35);
  color: var(--green-light);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 2rem;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--green-bright);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.hero h1 span {
  color: var(--green-bright);
  display: block;
}
.hero-desc {
  font-size: 1.1rem;
  color: rgba(245,245,240,0.7);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 480px;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-visual {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: min(45%, 520px);
  animation: fadeIn 1.2s ease 0.3s both;
}
.hero-img-placeholder {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid rgba(76,175,80,0.3);
  overflow: hidden;
  position: relative;
}
.hero-img-placeholder::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(13,43,18,0.6), transparent);
}
.placeholder-icon {
  font-size: 4rem;
  opacity: 0.5;
}
.placeholder-text {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--green-bright);
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(245,245,240,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}

/* ===== SERVICES SECTION ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.service-card {
  background: var(--black);
  border: 1px solid rgba(76,175,80,0.15);
  border-radius: 10px;
  padding: 2.5rem 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--green-bright);
  transition: height 0.4s ease;
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(76,175,80,0.4); }
.service-card:hover::before { height: 100%; }
.service-icon {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
}
.service-card a {
  display: inline-block;
  margin-top: 1.2rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green-bright);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.service-card a:hover { text-decoration: underline; }

/* ===== SERVICE AREA SECTION ===== */
.area-section {
  background: var(--green-deep);
  color: var(--white);
}
.area-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.area-map-placeholder {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.75rem;
  border: 1px solid rgba(76,175,80,0.3);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.area-map-placeholder span { font-size: 3rem; opacity: 0.5; }
.area-content .section-label { color: var(--green-light); }
.area-counties {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 2rem 0;
}
.county-tag {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.1rem;
  font-weight: 500;
}
.county-tag::before {
  content: '●';
  color: var(--green-bright);
  font-size: 0.6rem;
}

/* ===== WHY US ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
}
.why-item {
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid var(--off-white);
  border-radius: 8px;
  transition: var(--transition);
}
.why-item:hover {
  border-color: var(--green-mid);
  box-shadow: 0 8px 32px rgba(45,122,58,0.1);
  transform: translateY(-4px);
}
.why-icon { font-size: 2rem; margin-bottom: 1rem; }
.why-item h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.why-item p { font-size: 0.875rem; color: var(--gray); }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--green-dark);
  color: var(--white);
  text-align: center;
  padding: 5rem 5%;
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
}
.cta-banner p {
  color: rgba(255,255,255,0.65);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}
.cta-banner .btn-primary {
  background: var(--green-bright);
}

/* ===== FOOTER ===== */
footer {
  background: var(--black);
  color: rgba(255,255,255,0.55);
  padding: 4rem 5% 2rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}
.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.8;
  max-width: 280px;
  margin: 1rem 0;
}
.footer-brand .nav-logo { margin-bottom: 0.5rem; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul a {
  font-size: 0.875rem;
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--green-bright); }
.footer-col .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}
.contact-item-icon { opacity: 0.5; flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom a:hover { color: var(--green-bright); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: 10rem 5% 5rem;
  background: var(--green-deep);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(76,175,80,0.03) 40px,
    rgba(76,175,80,0.03) 41px
  );
}
.page-hero-inner { position: relative; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 0.75rem 0 1rem;
}
.page-hero p {
  color: rgba(245,245,240,0.65);
  font-size: 1.05rem;
  max-width: 500px;
  line-height: 1.8;
}

/* ===== SERVICES PAGE ===== */
.services-detail {
  display: grid;
  gap: 5rem;
}
.service-detail-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.service-detail-item:nth-child(even) .service-detail-img { order: 2; }
.service-detail-item:nth-child(even) .service-detail-text { order: 1; }
.service-detail-img {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1px solid rgba(76,175,80,0.2);
}
.service-detail-img span { font-size: 4rem; opacity: 0.4; }
.service-detail-text h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  margin: 0.5rem 0 1rem;
}
.service-detail-text p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.service-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.service-bullets li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
}
.service-bullets li::before {
  content: '✓';
  color: var(--green-mid);
  font-weight: 700;
  font-size: 0.85rem;
}

/* ===== ABOUT PAGE ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
}
.team-card {
  background: var(--black);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(76,175,80,0.15);
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-6px); }
.team-img {
  height: 220px;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  color: rgba(255,255,255,0.3);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.team-img span { font-size: 3.5rem; opacity: 0.4; }
.team-info { padding: 1.75rem; }
.team-info h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
}
.team-role {
  font-size: 0.8rem;
  color: var(--green-bright);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0.4rem 0 0.75rem;
  display: block;
}
.team-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  margin-top: 1rem;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.value-card {
  padding: 2rem;
  border-left: 3px solid var(--green-mid);
  background: var(--off-white);
}
.value-card h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.value-card p { font-size: 0.875rem; color: var(--gray); line-height: 1.7; }

/* ===== CONTACT PAGE ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 5rem;
  align-items: start;
}
.contact-form-wrap h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.contact-form-wrap > p {
  color: var(--gray);
  margin-bottom: 2rem;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 0.4rem;
}
input, textarea, select {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--white);
  border: 1px solid var(--off-white);
  border-radius: 6px;
  outline: none;
  transition: border-color var(--transition);
  color: var(--black);
}
input:focus, textarea:focus, select:focus {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(45,122,58,0.1);
}
textarea { resize: vertical; min-height: 130px; }
.form-submit { margin-top: 1.5rem; }
.form-success {
  display: none;
  background: rgba(76,175,80,0.1);
  border: 1px solid var(--green-mid);
  color: var(--green-dark);
  padding: 1rem 1.25rem;
  border-radius: 6px;
  font-size: 0.9rem;
  margin-top: 1rem;
}
.contact-info-card {
  background: var(--black);
  border-radius: 10px;
  padding: 2.5rem;
  color: var(--white);
  border: 1px solid rgba(76,175,80,0.2);
  position: sticky;
  top: 100px;
}
.contact-info-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
.info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.75rem;
  align-items: flex-start;
}
.info-icon {
  width: 40px; height: 40px;
  background: rgba(76,175,80,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.info-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-bright);
  margin-bottom: 0.25rem;
}
.info-value {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}
.info-value a:hover { color: var(--green-bright); }
.estimate-note {
  background: rgba(76,175,80,0.12);
  border: 1px solid rgba(76,175,80,0.3);
  border-radius: 8px;
  padding: 1.25rem;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--green-light);
  line-height: 1.6;
  text-align: center;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(1.4); }
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: rgba(10,10,10,0.97);
    padding: 1.5rem 5%;
    border-top: 1px solid rgba(76,175,80,0.2);
  }
  .hamburger { display: flex; }
  .hero { padding: 8rem 5% 5rem; }
  .hero-visual { display: none; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .area-inner { grid-template-columns: 1fr; }
  .area-map-placeholder { aspect-ratio: 16/7; }
  .service-detail-item { grid-template-columns: 1fr; }
  .service-detail-item:nth-child(even) .service-detail-img,
  .service-detail-item:nth-child(even) .service-detail-text { order: unset; }
  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  section { padding: 4rem 5%; }
}
