/* ===== VARIABLES ===== */
:root {
  --green-dark: #1B5E20;
  --green-mid: #2E7D32;
  --green-light: #4CAF50;
  --green-accent: #66BB6A;
  --black: #0A0A0A;
  --gray-900: #1A1A1A;
  --gray-800: #2A2A2A;
  --gray-700: #3A3A3A;
  --gray-400: #888;
  --gray-200: #D0D0D0;
  --white: #FFFFFF;
  --off-white: #F5F5F5;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--gray-900);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

img {
  max-width: 100%;
  display: block;
}

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

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s ease;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.85) 0%, rgba(10, 10, 10, 0.4) 60%, transparent 100%);
}

.navbar.scrolled {
  background: linear-gradient(135deg, var(--green-dark) 0%, #143D18 50%, var(--black) 100%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  padding: 10px 0;
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--white);
  transition: color 0.3s;
}

.navbar.scrolled .nav-brand {
  color: var(--white);
}

.brand-logo {
  flex-shrink: 0;
}

.logo-icon {
  width: 46px;
  height: 42px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.25));
  transition: filter 0.3s;
}

.navbar.scrolled .logo-icon {
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.15));
}

/* Hammer nail animation - pivots from grip at bottom, head swings left to hit wall */
.hammer-swing {
  transform-origin: 48px 38px;
  animation: hammerNail 2.4s ease-in-out infinite;
}

@keyframes hammerNail {
  0%, 50%, 100% { transform: rotate(0deg); }
  10%  { transform: rotate(20deg); }
  17%  { transform: rotate(-8deg); }
  24%  { transform: rotate(20deg); }
  31%  { transform: rotate(-8deg); }
  38%  { transform: rotate(20deg); }
  44%  { transform: rotate(-8deg); }
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-top {
  font-size: 1.3rem;
  letter-spacing: 2px;
}

.brand-bottom {
  font-size: 0.7rem;
  letter-spacing: 3px;
  opacity: 0.8;
  font-weight: 500;
}

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

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.5px;
  transition: color 0.3s;
  text-transform: uppercase;
}

.navbar.scrolled .nav-links a {
  color: rgba(255, 255, 255, 0.85);
}

.nav-links a:hover {
  color: var(--green-accent);
}

.navbar.scrolled .nav-links a:hover {
  color: var(--green-accent);
}

.nav-cta {
  background: var(--green-mid) !important;
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 600 !important;
  transition: background 0.3s, transform 0.2s !important;
}

.nav-cta:hover {
  background: var(--green-dark) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
  border-radius: 2px;
}

.navbar.scrolled .nav-toggle span {
  background: var(--white);
}

/* ===== HERO - DIAGONAL SPLIT ===== */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--black);
}

/* Photo fills the entire hero */
.hero-photo {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 25s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(10, 10, 10, 0.3) 100%);
}

/* Dark triangle covering top-left: diagonal from bottom-left to top-right */
.hero-dark {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(160deg, var(--black) 0%, #0d2e10 100%);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

/* Glowing diagonal accent line */
.hero-diagonal-line {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.hero-diagonal-line::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 141.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--green-dark), var(--green-accent), var(--green-dark));
  transform-origin: top left;
  transform: rotate(45deg) scaleX(0);
  animation: diagonalDraw 1.2s 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  box-shadow: 0 0 15px rgba(102, 187, 106, 0.4), 0 0 30px rgba(102, 187, 106, 0.15);
}

/* Adjust the line angle to match the clip-path diagonal exactly */
.hero-diagonal-line::before {
  /* For polygon(0 0, 100% 0, 0 100%), the hypotenuse angle depends on aspect ratio.
     atan(height/width) for a typical 16:9-ish screen. We use a CSS approach instead. */
  top: 0;
  right: 0;
  left: auto;
  width: 2px;
  height: 141.5%;
  transform: rotate(-45deg);
  transform-origin: top right;
}

/* Simpler approach: SVG-like line using a rotated thin element */
.hero-diagonal-line {
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  z-index: 4;
  pointer-events: none;
  overflow: hidden;
}

.hero-diagonal-line::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border: none;
  /* Use a pseudo-element background with the diagonal as a thin strip */
}

/* Actually use an SVG line via background for precision */
.hero-diagonal-line {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background: linear-gradient(to bottom right, transparent calc(50% - 1.5px), var(--green-accent) calc(50% - 1.5px), var(--green-accent) calc(50% + 0.5px), transparent calc(50% + 0.5px));
  opacity: 0;
  animation: lineReveal 0.8s 0.6s ease forwards;
}

@keyframes lineReveal {
  to { opacity: 0.7; }
}

/* Subtle glow pulse on the diagonal line */
.hero-diagonal-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right,
    transparent calc(50% - 1.5px),
    rgba(102, 187, 106, 0.8) calc(50% - 1px),
    rgba(255, 255, 255, 0.6) 50%,
    rgba(102, 187, 106, 0.8) calc(50% + 1px),
    transparent calc(50% + 1.5px)
  );
  animation: linePulse 3s 1.5s ease-in-out infinite;
  opacity: 0;
}

@keyframes linePulse {
  0%, 100% { opacity: 0; }
  50% { opacity: 0.5; }
}

.hero-content {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  text-align: left;
  padding: 120px 60px 60px;
  max-width: 550px;
}

.badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--green-accent);
  padding: 6px 16px;
  border: 1px solid rgba(102, 187, 106, 0.3);
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.tagline {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 380px;
  margin: 0 0 28px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  justify-content: flex-start;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-buttons .btn-primary,
.hero-buttons .btn-outline {
  padding: 14px 28px;
  font-size: 0.9rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green-mid);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s;
}

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

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  padding: 16px 32px;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s;
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.05);
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  padding: 16px 32px;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s;
}

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

.hero-trust {
  display: flex;
  justify-content: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78rem;
  font-weight: 500;
}

.trust-item svg {
  color: var(--green-accent);
  flex-shrink: 0;
}

/* ===== SECTION COMMON ===== */
.section-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--green-mid);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-400);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

/* ===== SERVICES ===== */
.services {
  padding: 100px 0;
  text-align: center;
  background: var(--white);
}

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

.service-card {
  background: var(--off-white);
  border-radius: 12px;
  padding: 40px 28px;
  text-align: left;
  transition: all 0.3s;
  border: 1px solid transparent;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(46, 125, 50, 0.15);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--white);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  color: var(--black);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.6;
}

/* ===== WHY US ===== */
.why-us {
  padding: 100px 0;
  background: var(--off-white);
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-us-content .section-title {
  text-align: left;
}

.why-us-content .section-label {
  text-align: left;
}

.why-us-items {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 32px;
}

.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: transform 0.3s ease;
}

.why-item:hover {
  transform: translateX(6px);
}

.why-item:hover .why-number {
  color: var(--green-accent);
}

.why-number {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-mid);
  flex-shrink: 0;
  line-height: 1;
  padding-top: 2px;
  transition: color 0.3s;
}

.why-item h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--black);
}

.why-item p {
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.6;
}

/* Section images */
.section-image {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  border-radius: 12px;
}

/* ===== ABOUT ===== */
.about {
  padding: 100px 0;
  background: var(--white);
}

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

.about-content .section-label,
.about-content .section-title {
  text-align: left;
}

.about-content p {
  font-size: 0.95rem;
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--green-mid);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--gray-400);
  font-weight: 500;
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== GALLERY ===== */
.work {
  padding: 100px 0;
  background: var(--off-white);
  text-align: center;
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

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

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.gallery-item:nth-child(1) {
  grid-row: span 2;
}

.gallery-item:nth-child(5) {
  grid-row: span 2;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--black) 100%);
}

.cta-banner-inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  margin-bottom: 32px;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-buttons .btn-primary {
  animation: ctaPulse 3s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(46, 125, 50, 0.4); }
  50% { box-shadow: 0 0 0 12px rgba(46, 125, 50, 0); }
}

/* ===== TESTIMONIALS / UNDER CONSTRUCTION ===== */
.testimonials {
  padding: 100px 0;
  background: var(--white);
  text-align: center;
}

.reviews-coming {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.hard-hat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--off-white);
  color: var(--green-mid);
  margin-bottom: 24px;
  animation: hardHatBounce 2s ease-in-out infinite;
}

@keyframes hardHatBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.coming-soon-text {
  font-size: 1rem;
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: 32px;
}

.construction-bar {
  width: 100%;
  height: 12px;
  border-radius: 6px;
  overflow: hidden;
  background: var(--off-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.construction-stripes {
  width: 200%;
  height: 100%;
  background: repeating-linear-gradient(
    -45deg,
    var(--green-mid),
    var(--green-mid) 10px,
    var(--green-dark) 10px,
    var(--green-dark) 20px
  );
  animation: movingStripes 1.5s linear infinite;
}

@keyframes movingStripes {
  0% { transform: translateX(0); }
  100% { transform: translateX(-28px); }
}

/* ===== CONTACT ===== */
.contact {
  padding: 100px 0;
  background: var(--off-white);
}

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

.contact-info .section-label,
.contact-info .section-title {
  text-align: left;
}

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

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-item svg {
  color: var(--green-mid);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-item a,
.contact-item span {
  font-size: 0.9rem;
  color: var(--gray-400);
}

.contact-item a:hover {
  color: var(--green-mid);
}

/* Contact Form */
.contact-form-wrapper {
  position: relative;
}

.contact-form {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
}

.contact-form h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--black);
  margin-bottom: 28px;
}

/* Honeypot - visually hidden */
.form-field-hp {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
  pointer-events: none;
}

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

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

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--gray-700);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--gray-900);
  background: var(--off-white);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

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

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green-mid);
  color: var(--white);
  padding: 14px 32px;
  border: none;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
  justify-content: center;
}

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

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.btn-loading .spinner {
  animation: spin 0.8s linear infinite;
}

.btn-arrow {
  transition: transform 0.2s;
}

.btn-submit:hover .btn-arrow {
  transform: translateX(3px);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Success message */
.success-message {
  text-align: center;
  padding: 60px 40px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
}

.success-icon {
  color: var(--green-mid);
  margin-bottom: 20px;
}

.success-message h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--black);
  margin-bottom: 12px;
}

.success-message p {
  font-size: 0.95rem;
  color: var(--gray-400);
  line-height: 1.6;
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(180deg, #0d1a0e 0%, var(--black) 100%);
  padding: 0 0 0;
  color: rgba(255, 255, 255, 0.6);
  position: relative;
  overflow: hidden;
}

/* Animated green accent bar at top */
.footer-accent-bar {
  height: 3px;
  background: linear-gradient(90deg, var(--green-dark), var(--green-accent), var(--green-dark));
  position: relative;
  overflow: hidden;
}

.footer-accent-glow {
  position: absolute;
  top: 0;
  left: -30%;
  width: 30%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
  animation: glowSweep 3s ease-in-out infinite;
}

@keyframes glowSweep {
  0% { left: -30%; }
  100% { left: 130%; }
}

/* Subtle green corner glow */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(46, 125, 50, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.footer::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(46, 125, 50, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.footer > .container {
  position: relative;
  z-index: 1;
  padding-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(102, 187, 106, 0.1);
}

.footer-logo-icon {
  width: 56px;
  height: 48px;
  margin-bottom: 16px;
  filter: drop-shadow(0 2px 8px rgba(102, 187, 106, 0.2));
}

.footer-logo-icon svg {
  width: 100%;
  height: 100%;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
  display: block;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--green-accent);
  margin-bottom: 4px;
}

.footer-location {
  font-size: 0.85rem;
}

.footer-grid h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-accent);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.footer-grid h4::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--green-mid);
  border-radius: 1px;
}

.footer-nav a,
.footer-services a,
.footer-contact a,
.footer-contact span {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  padding: 5px 0;
  transition: color 0.3s, padding-left 0.3s;
}

.footer-nav a:hover,
.footer-services a:hover,
.footer-contact a:hover {
  color: var(--green-accent);
  padding-left: 6px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0 12px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-bottom-right a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s;
}

.footer-bottom-right a:hover {
  color: var(--green-accent);
}

/* Credit line */
.footer-credit {
  text-align: center;
  padding: 16px 0 24px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.5px;
}

.footer-credit a {
  color: var(--green-accent);
  font-weight: 600;
  transition: color 0.3s, text-shadow 0.3s;
}

.footer-credit a:hover {
  color: var(--green-light);
  text-shadow: 0 0 12px rgba(102, 187, 106, 0.4);
}

/* ===== ANIMATIONS ===== */
/* Hero elements slide in from left */
.hero .fade-in {
  opacity: 0;
  transform: translateX(-40px);
  animation: slideInLeft 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero .fade-in.delay-1 { animation-delay: 0.25s; }
.hero .fade-in.delay-2 { animation-delay: 0.45s; }
.hero .fade-in.delay-3 { animation-delay: 0.65s; }

/* General fade-in for non-hero elements */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeIn 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

/* Stagger for fade-in-up */
.fade-in-up.delay-1 { transition-delay: 0.1s; }
.fade-in-up.delay-2 { transition-delay: 0.2s; }

/* Service cards slide from alternating sides */
.service-card.fade-in-up {
  transform: translateX(-30px) translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.service-card.fade-in-up.delay-1 {
  transform: translateY(30px);
}

.service-card.fade-in-up.delay-2 {
  transform: translateX(30px) translateY(20px);
}

.service-card.fade-in-up.visible {
  transform: translateX(0) translateY(0);
}

/* Gallery reveal wipe */
.gallery-item.fade-in-up {
  transform: translateY(0);
  clip-path: inset(100% 0 0 0);
  transition: clip-path 0.7s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease;
}

.gallery-item.fade-in-up.visible {
  clip-path: inset(0 0 0 0);
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero heading green accent underline */
.hero h1 .accent {
  position: relative;
  display: inline-block;
}

.hero h1 .accent::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 0;
  height: 4px;
  background: var(--green-mid);
  border-radius: 2px;
  animation: underlineGrow 1s 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes underlineGrow {
  to { width: 100%; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 0;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    color: var(--gray-900) !important;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 0.95rem;
  }

  .nav-cta {
    margin-top: 16px;
    text-align: center;
  }

  .hero-content {
    padding: 120px 24px 40px;
    max-width: 100%;
  }

  .hero-dark {
    clip-path: polygon(0 0, 100% 0, 100% 55%, 0 75%);
  }

  .hero-diagonal-line {
    background: linear-gradient(to bottom right, transparent calc(35% - 1px), var(--green-accent) calc(35% - 1px), var(--green-accent) calc(35% + 0.5px), transparent calc(35% + 0.5px));
  }

  .why-us-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image { order: -1; }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }



  .contact-form {
    padding: 28px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .footer-bottom-right {
    justify-content: center;
    flex-wrap: wrap;
  }

  .about-stats {
    gap: 24px;
  }

  .hero-trust {
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero-content {
    padding: 110px 20px 30px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-outline,
  .btn-outline-light {
    width: 100%;
    justify-content: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn-primary,
  .cta-buttons .btn-outline-light {
    width: 100%;
    justify-content: center;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(5) {
    grid-row: span 1;
  }

  .about-stats {
    flex-direction: column;
    gap: 20px;
  }
}
