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

:root {
  --green: #2E7D32;
  --green-dark: #1B5E20;
  --green-light: #4CAF50;
  --brown: #5D4037;
  --brown-light: #8D6E63;
  --tan: #F5F0EB;
  --white: #FFFFFF;
  --off-white: #f8f9fa;
  --gray-light: #F9F9F9;
  --gray: #666;
  --text: #333;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.1);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', 'Source Sans Pro', Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Montserrat', sans-serif; line-height: 1.2; }

a { color: var(--green); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--green-dark); }

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

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

/* ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* GREEN DIVIDER */
.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-light));
  margin: 0 auto 20px;
  border-radius: 2px;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: transparent;
  transition: background 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
  padding: 0;
}
nav.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  backdrop-filter: blur(10px);
}
/* For inner pages without hero - nav starts dark */
nav.nav-dark {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
nav.nav-dark .logo { color: var(--green-dark); }
nav.nav-dark .logo span { color: var(--brown); }
nav.nav-dark ul a { color: var(--text); }
nav.nav-dark ul a:hover { color: var(--green); }
nav.nav-dark .nav-toggle { color: var(--text); }

nav .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
}
nav .logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem; font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  transition: color 0.4s;
}
nav .logo a { color: inherit; }
nav .logo a:hover { color: inherit; }
nav.scrolled .logo { color: var(--green-dark); }
nav .logo span {
  color: rgba(255,255,255,0.7);
  font-weight: 600; font-size: 0.7rem; display: block;
  letter-spacing: 2px; text-transform: uppercase;
  transition: color 0.4s;
}
nav.scrolled .logo span { color: var(--brown); }

nav .nav-links { list-style: none; display: flex; gap: 32px; align-items: center; }
nav .nav-links > li { position: relative; }
nav .nav-links > li > a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600; font-size: 0.85rem; color: rgba(255,255,255,0.9);
  transition: color 0.3s;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  display: flex; align-items: center; gap: 4px;
}
nav .nav-links > li > a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--green-light);
  transition: width 0.3s;
}
nav .nav-links > li > a:hover::after { width: 100%; }
nav.scrolled .nav-links > li > a { color: var(--text); }
nav .nav-links > li > a:hover { color: var(--white); }
nav.scrolled .nav-links > li > a:hover { color: var(--green); }

/* Dropdown */
.dropdown-arrow { font-size: 0.6rem; transition: transform 0.3s; }
.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: -16px;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(10px);
  min-width: 260px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  padding: 12px 0;
  z-index: 1001;
  list-style: none;
}
.nav-dropdown li a {
  display: block;
  padding: 10px 24px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--text) !important;
  letter-spacing: 0.3px;
  transition: background 0.2s, color 0.2s;
}
.nav-dropdown li a:hover {
  background: rgba(46,125,50,0.06);
  color: var(--green) !important;
}
.nav-dropdown li a::after { display: none; }
@media (min-width: 769px) {
  .nav-links > li:hover > .nav-dropdown { display: block; }
  .nav-links > li:hover .dropdown-arrow { transform: rotate(180deg); }
}

.nav-toggle {
  display: none; background: none; border: none;
  font-size: 1.6rem; cursor: pointer; color: var(--white);
  transition: color 0.4s;
}
nav.scrolled .nav-toggle { color: var(--text); }

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}
.hero-bg {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: url('images/hero-trucks.jpg') center/cover no-repeat;
  transform: scale(1.1);
  transition: transform 0.1s linear;
  will-change: transform;
}
.hero-overlay {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(27,94,32,0.7) 0%, rgba(0,0,0,0.6) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 800px; padding: 0 24px;
}
.hero-content h1 {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: -1px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.3);
}
.hero-content .tagline {
  font-size: 1.5rem;
  font-weight: 300;
  opacity: 0.95;
  margin-bottom: 8px;
  font-family: 'Source Sans 3', sans-serif;
  letter-spacing: 1px;
}
.hero-content .location {
  font-size: 1.05rem;
  opacity: 0.8;
  margin-bottom: 40px;
  font-family: 'Source Sans 3', sans-serif;
}
.hero .cta-group { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

/* Page Hero (for inner pages) */
.page-hero {
  position: relative;
  padding: 160px 0 80px;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  color: var(--white);
  text-align: center;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80"><circle cx="40" cy="40" r="1" fill="rgba(255,255,255,0.03)"/></svg>') repeat;
  background-size: 80px 80px;
}
.page-hero h1 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 12px;
  position: relative;
}
.page-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

/* BUTTONS */
.btn {
  display: inline-block; padding: 16px 36px; border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 0.95rem;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  border: 2px solid transparent;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}
.btn-white {
  background: var(--white); color: var(--green-dark);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-white:hover {
  background: var(--green); color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(46,125,50,0.3);
}
.btn-outline {
  border-color: rgba(255,255,255,0.8); color: var(--white); background: transparent;
}
.btn-outline:hover {
  background: var(--white); color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,255,255,0.2);
}
.btn-green {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(46,125,50,0.3);
}
.btn-green:hover {
  background: linear-gradient(135deg, var(--green-light) 0%, var(--green) 100%);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(46,125,50,0.4);
}

/* SECTIONS */
section { padding: 100px 0; }
.bg-white { background: var(--white); }
.bg-light { background: var(--off-white); }

.section-title {
  text-align: center;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.section-subtitle {
  text-align: center;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto 56px;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* SERVICES */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  border: 1px solid rgba(0,0,0,0.04);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.service-card a { color: inherit; display: block; }
.service-card a:hover { color: inherit; }
.service-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: inline-block;
  width: 70px; height: 70px;
  line-height: 70px;
  background: linear-gradient(135deg, rgba(46,125,50,0.08), rgba(76,175,80,0.08));
  border-radius: 20px;
}
.service-card h3 {
  font-size: 1.05rem;
  color: var(--green-dark);
  margin-bottom: 10px;
  font-weight: 700;
}
.service-card p { font-size: 0.95rem; color: var(--gray); }

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(27,94,32,0.85) 100%);
  display: flex; align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

/* Gallery Filter */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 10px 24px;
  border: 2px solid #e0e0e0;
  border-radius: 50px;
  background: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--gray);
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute;
  top: 24px; right: 32px;
  font-size: 2.5rem;
  color: var(--white);
  cursor: pointer;
  background: none;
  border: none;
  font-family: sans-serif;
  z-index: 10000;
  transition: transform 0.3s;
}
.lightbox-close:hover { transform: scale(1.2); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.5rem;
  color: var(--white);
  cursor: pointer;
  background: rgba(255,255,255,0.1);
  border: none;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.2); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* STATS */
.stats-section {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  padding: 80px 0;
  color: var(--white);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-item h3 {
  font-size: 3.2rem;
  font-weight: 900;
  margin-bottom: 8px;
  font-family: 'Montserrat', sans-serif;
}
.stat-item p {
  font-size: 0.8rem;
  opacity: 0.85;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-family: 'Montserrat', sans-serif;
}

/* MISSION */
.mission-section { position: relative; }
.mission-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.mission-inner .leaf-icon {
  font-size: 3rem;
  margin-bottom: 24px;
  display: inline-block;
}
.mission-inner blockquote {
  font-size: 1.15rem;
  line-height: 2;
  color: var(--text);
  font-style: italic;
  position: relative;
  padding: 0 20px;
}
.mission-inner blockquote::before {
  content: '';
  display: block;
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-light));
  margin: 0 auto 30px;
  border-radius: 2px;
}

/* WHY US */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.why-item {
  padding: 32px 20px;
  border-radius: 16px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s;
}
.why-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  background: var(--white);
}
.why-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: inline-block;
  width: 70px; height: 70px;
  line-height: 70px;
  background: linear-gradient(135deg, rgba(46,125,50,0.1), rgba(76,175,80,0.06));
  border-radius: 50%;
}
.why-item h3 {
  font-size: 1.05rem;
  color: var(--green-dark);
  margin-bottom: 10px;
  font-weight: 700;
}
.why-item p { font-size: 0.9rem; color: var(--gray); line-height: 1.7; }

/* TESTIMONIALS */
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.testimonial {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s;
  border: 1px solid rgba(0,0,0,0.04);
}
.testimonial:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.testimonial .quote-mark {
  font-size: 5rem;
  font-family: Georgia, serif;
  color: rgba(46,125,50,0.12);
  line-height: 1;
  position: absolute;
  top: 20px; left: 28px;
}
.testimonial p {
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.8;
  font-size: 1.05rem;
  position: relative;
  z-index: 1;
}
.testimonial .author {
  font-weight: 700;
  color: var(--green-dark);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
}
.testimonial .source { font-size: 0.85rem; color: var(--gray); margin-top: 4px; }
.testimonial .stars {
  color: #FFC107;
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

/* CONTACT */
.contact-wrapper {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
}
.contact-info h3 {
  font-size: 1.5rem;
  color: var(--green-dark);
  margin-bottom: 24px;
  font-weight: 800;
}
.contact-info p { margin-bottom: 16px; font-size: 1.05rem; }
.contact-info .phone-link {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--green);
  display: inline-block;
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
}
.contact-info .counties {
  font-size: 0.95rem;
  color: var(--gray);
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #eee;
}
.contact-detail {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px; font-size: 1.05rem;
}
.contact-detail .icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, rgba(46,125,50,0.1), rgba(76,175,80,0.06));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* Map Card */
.map-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 64px;
  border: 1px solid rgba(0,0,0,0.04);
}
.map-card-header {
  padding: 32px 36px;
}
.map-card-header h3 {
  font-size: 1.5rem;
  color: var(--green-dark);
  margin-bottom: 12px;
  font-weight: 800;
}
.map-card-header p {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.6;
}
.map-counties {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.map-counties span {
  background: linear-gradient(135deg, rgba(46,125,50,0.08), rgba(76,175,80,0.08));
  color: var(--green-dark);
  padding: 6px 16px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.3px;
}
.map-card iframe {
  width: 100%;
  height: 350px;
  border: none;
  display: block;
}

/* FLOATING LABEL FORM */
.form-group {
  position: relative;
  margin-bottom: 0;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 18px 16px 8px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  background: var(--white);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
  color: var(--text);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(46,125,50,0.1);
}
.form-group label {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  font-size: 1rem;
  color: #999;
  pointer-events: none;
  transition: all 0.3s;
  background: var(--white);
  padding: 0 4px;
}
.form-group textarea ~ label {
  top: 18px;
  transform: translateY(0);
}
.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
  top: 0;
  font-size: 0.75rem;
  color: var(--green);
  font-weight: 600;
}
.form-group textarea ~ label {
  top: 18px; transform: none;
}
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
  top: -8px;
  font-size: 0.75rem;
  color: var(--green);
  font-weight: 600;
}
.form-group select { cursor: pointer; padding-top: 14px; padding-bottom: 14px; color: var(--text); }
.form-group textarea { resize: vertical; min-height: 130px; }
form.premium-form { display: flex; flex-direction: column; gap: 20px; }

/* SERVICE PAGE SPECIFIC */
.service-content {
  padding: 80px 0;
}
.service-content .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.service-text h2 {
  font-size: 1.8rem;
  color: var(--green-dark);
  margin-bottom: 20px;
  font-weight: 800;
}
.service-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 24px;
}
.service-includes h3 {
  font-size: 1.2rem;
  color: var(--green-dark);
  margin-bottom: 16px;
  font-weight: 700;
}
.service-includes ul {
  list-style: none;
  padding: 0;
}
.service-includes ul li {
  padding: 10px 0;
  padding-left: 28px;
  position: relative;
  font-size: 1.02rem;
  border-bottom: 1px solid #f0f0f0;
}
.service-includes ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}
.service-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}
.service-cta {
  text-align: center;
  padding: 80px 0;
  background: var(--off-white);
}
.service-cta h2 {
  font-size: 2rem;
  color: var(--green-dark);
  margin-bottom: 16px;
}
.service-cta p {
  color: var(--gray);
  font-size: 1.1rem;
  margin-bottom: 32px;
}
.service-cta .cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* FOOTER */
footer {
  background: linear-gradient(180deg, var(--green-dark) 0%, #0d3a10 100%);
  color: rgba(255,255,255,0.85);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.footer-col p { margin-bottom: 10px; font-size: 0.95rem; }
.footer-col a { color: rgba(255,255,255,0.8); transition: color 0.3s; }
.footer-col a:hover { color: var(--white); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: 0.95rem; }
.footer-brand {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-brand span { display: block; font-weight: 600; font-size: 0.7rem; letter-spacing: 2px; opacity: 0.7; text-transform: uppercase; }
.footer-social a {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1);
  padding: 10px 20px; border-radius: 50px;
  font-size: 0.9rem; transition: background 0.3s, transform 0.3s;
  color: var(--white);
  margin-top: 16px;
}
.footer-social a:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.6;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-content h1 { font-size: 3rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .service-content .container { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  nav .nav-links {
    display: none; position: absolute; top: 80px; left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    flex-direction: column; padding: 24px; gap: 0;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
  }
  nav .nav-links.open { display: flex; }
  nav .nav-links > li > a { color: var(--text) !important; padding: 12px 0; }
  nav .nav-links > li > a:hover { color: var(--green) !important; }
  .nav-dropdown {
    position: static;
    display: none;
    box-shadow: none;
    background: transparent;
    min-width: 0;
    padding: 0 0 0 16px;
    border-radius: 0;
  }
  .nav-dropdown.mobile-open { display: block; }
  .nav-dropdown li a { padding: 8px 0; font-size: 0.8rem; }
  .nav-toggle { display: block; }
  .hero-content h1 { font-size: 2.4rem; }
  .hero-content .tagline { font-size: 1.15rem; }
  .page-hero h1 { font-size: 2.2rem; }
  section { padding: 72px 0; }
  .section-title { font-size: 2rem; }
  .services-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .stat-item h3 { font-size: 2.4rem; }
  .service-content .container { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 480px) {
  .hero-content h1 { font-size: 1.9rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
}
