/* =====================================================
   AUBREY PORTA POTTY PROS — MAIN STYLESHEET
   Color Palette:
   Primary Green  : #2d7a2d
   Dark Green     : #1a5c1a
   Accent Orange  : #f57c00
   Dark           : #1a1a2e
   Text Gray      : #4a4a5a
   Light BG       : #f5f7fa
   White          : #ffffff
===================================================== */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  color: #4a4a5a;
  line-height: 1.7;
  background-color: #ffffff;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.3s; }
ul { list-style: none; }

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== SECTION PADDING ===== */
.section-pad { padding: 90px 0; }
.bg-light { background-color: #f5f7fa; }

/* ===== SECTION HEADER ===== */
.section-label {
  display: inline-block;
  background: linear-gradient(135deg, #2d7a2d, #3a9a3a);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 30px;
  margin-bottom: 14px;
}

.section-header { margin-bottom: 55px; }
.section-header.text-center { text-align: center; }

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: #6b6b7b;
  max-width: 680px;
  margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-lg { padding: 16px 34px; font-size: 1.05rem; }

.btn-primary {
  background: linear-gradient(135deg, #2d7a2d, #3a9a3a);
  color: #fff;
  border-color: #2d7a2d;
  box-shadow: 0 4px 20px rgba(45, 122, 45, 0.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #1a5c1a, #2d7a2d);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(45, 122, 45, 0.45);
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  transform: translateY(-2px);
  color: #fff;
}

.btn-call {
  background: linear-gradient(135deg, #f57c00, #ff9800);
  color: #fff;
  border-color: #f57c00;
  padding: 10px 20px;
  font-size: 0.88rem;
  border-radius: 8px;
  box-shadow: 0 3px 14px rgba(245, 124, 0, 0.35);
}
.btn-call:hover {
  background: linear-gradient(135deg, #e65100, #f57c00);
  transform: translateY(-1px);
  color: #fff;
  box-shadow: 0 6px 20px rgba(245, 124, 0, 0.45);
}

.btn-white {
  background: #fff;
  color: #2d7a2d;
  border-color: #fff;
  font-size: 1.1rem;
  box-shadow: 0 6px 25px rgba(0,0,0,0.2);
}
.btn-white:hover {
  background: #f5f7fa;
  transform: translateY(-2px);
  box-shadow: 0 10px 35px rgba(0,0,0,0.25);
  color: #1a5c1a;
}

.mt-1 { margin-top: 24px; }

/* ================================================
   HEADER
================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: all 0.35s ease;
}

.site-header.scrolled {
  background: rgba(26, 26, 46, 0.99);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 20px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #2d7a2d, #3a9a3a);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 3px 12px rgba(45, 122, 45, 0.4);
}

.logo-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.2px;
}

.logo-accent { color: #f57c00; }

/* Nav */
.nav-menu ul {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-menu ul li a {
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 7px 12px;
  border-radius: 6px;
  transition: all 0.25s;
  letter-spacing: 0.2px;
}

.nav-menu ul li a:hover {
  color: #fff;
  background: rgba(255,255,255,0.1);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  background: #1a1a2e;
  border-top: 1px solid rgba(255,255,255,0.1);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.mobile-nav.open {
  display: block;
  max-height: 500px;
}

.mobile-nav ul {
  padding: 16px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav ul li a {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 8px;
  display: block;
  transition: all 0.25s;
}

.mobile-nav ul li a:hover { background: rgba(255,255,255,0.08); color: #fff; }

.mobile-call {
  background: linear-gradient(135deg, #f57c00, #ff9800) !important;
  color: #fff !important;
  text-align: center;
  margin-top: 8px;
  border-radius: 8px;
}

/* ================================================
   HERO SECTION
================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background:
    url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1600&q=80') center center / cover no-repeat;
  padding-top: 72px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 46, 0.92) 0%,
    rgba(26, 46, 26, 0.85) 60%,
    rgba(45, 122, 45, 0.5) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 20px;
  max-width: 820px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(245, 124, 0, 0.2);
  border: 1px solid rgba(245, 124, 0, 0.5);
  color: #ffb74d;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 7px 16px;
  border-radius: 30px;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.hero-badge i { color: #f57c00; }

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 22px;
  letter-spacing: -0.5px;
}

.hero-title .highlight {
  color: #f57c00;
  position: relative;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.12rem);
  color: rgba(255,255,255,0.82);
  max-width: 680px;
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 50px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 32px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: #f57c00;
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 600;
}

/* ================================================
   ABOUT SECTION
================================================ */
.about { background: #fff; }

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

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

.about-content p {
  color: #5a5a6a;
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.8;
}

.about-icons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.icon-box {
  background: #fff;
  border: 1px solid #e8eaf0;
  border-radius: 14px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.icon-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(45, 122, 45, 0.15);
  border-color: #2d7a2d;
}

.icon-box-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(45,122,45,0.1), rgba(45,122,45,0.2));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #2d7a2d;
  flex-shrink: 0;
}

.icon-box-content h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 5px;
}

.icon-box-content p {
  font-size: 0.82rem;
  color: #6b6b7b;
  line-height: 1.6;
}

/* ================================================
   SERVICES SECTION
================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 26px;
  border: 1px solid #e8eaf0;
  box-shadow: 0 3px 18px rgba(0,0,0,0.06);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2d7a2d, #f57c00);
  transform: scaleX(0);
  transition: transform 0.35s ease;
}

.service-card:hover { transform: translateY(-7px); box-shadow: 0 14px 42px rgba(0,0,0,0.12); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 62px;
  height: 62px;
  background: linear-gradient(135deg, #2d7a2d, #3a9a3a);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 18px;
  box-shadow: 0 4px 16px rgba(45, 122, 45, 0.35);
}

.featured-service .service-icon {
  background: linear-gradient(135deg, #f57c00, #ff9800);
  box-shadow: 0 4px 16px rgba(245, 124, 0, 0.35);
}

.service-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, #f57c00, #ff9800);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 20px;
}

.service-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.9rem;
  color: #6b6b7b;
  line-height: 1.75;
  margin-bottom: 18px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #2d7a2d;
  font-size: 0.88rem;
  font-weight: 700;
  transition: gap 0.25s;
}
.service-link:hover { gap: 10px; color: #1a5c1a; }
.featured-service .service-link { color: #f57c00; }

/* ================================================
   WHY CHOOSE US
================================================ */
.why-us { background: #fff; }

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

.why-card {
  background: #f5f7fa;
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  border: 1px solid #e8eaf0;
  transition: all 0.35s ease;
}

.why-card:hover {
  background: #fff;
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(45, 122, 45, 0.13);
  border-color: #2d7a2d;
}

.why-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #2d7a2d, #3a9a3a);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: #fff;
  margin: 0 auto 20px;
  box-shadow: 0 5px 20px rgba(45, 122, 45, 0.3);
  transition: all 0.35s ease;
}

.why-card:hover .why-icon {
  background: linear-gradient(135deg, #f57c00, #ff9800);
  box-shadow: 0 5px 20px rgba(245, 124, 0, 0.35);
  transform: scale(1.08);
}

.why-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 0.9rem;
  color: #6b6b7b;
  line-height: 1.75;
}

/* ================================================
   TESTIMONIALS
================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-bottom: 46px;
}

.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  border: 1px solid #e8eaf0;
  box-shadow: 0 3px 18px rgba(0,0,0,0.07);
  position: relative;
  transition: all 0.35s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.12);
  border-color: #2d7a2d;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 14px;
  right: 24px;
  font-size: 5rem;
  line-height: 1;
  color: rgba(45, 122, 45, 0.08);
  font-family: Georgia, serif;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.testimonial-stars i { color: #f57c00; font-size: 0.85rem; }

.testimonial-text {
  font-size: 0.92rem;
  color: #5a5a6a;
  line-height: 1.8;
  margin-bottom: 22px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid #f0f0f5;
  padding-top: 18px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #2d7a2d, #3a9a3a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-info strong {
  font-weight: 700;
  color: #1a1a2e;
  font-size: 0.92rem;
}

.author-info span {
  font-size: 0.8rem;
  color: #8a8a9a;
}

/* Rating Summary */
.rating-summary {
  text-align: center;
  background: linear-gradient(135deg, #1a1a2e, #2d3a2e);
  border-radius: 16px;
  padding: 30px;
  color: #fff;
}

.rating-summary .rating-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 12px;
}

.rating-summary .rating-stars i { color: #f57c00; font-size: 1.2rem; }

.rating-summary p {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
}

/* ================================================
   AREAS WE SERVE
================================================ */
.areas { background: #fff; }

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

.areas-content p {
  color: #5a5a6a;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 18px;
}

.areas-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 24px 0 14px;
}

.city-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.city-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.92rem;
  color: #4a4a5a;
  background: #f5f7fa;
  padding: 9px 14px;
  border-radius: 8px;
  border: 1px solid #e8eaf0;
  transition: all 0.25s;
}

.city-list li:hover {
  background: rgba(45, 122, 45, 0.08);
  border-color: #2d7a2d;
  color: #1a5c1a;
}

.city-list li i { color: #f57c00; font-size: 0.8rem; flex-shrink: 0; }
.city-list li strong { color: #1a1a2e; }

.areas-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: rgba(45, 122, 45, 0.07);
  border-left: 4px solid #2d7a2d;
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 0.88rem;
  color: #4a4a5a;
}

.areas-note i { color: #2d7a2d; margin-top: 2px; flex-shrink: 0; }
.areas-note a { color: #2d7a2d; font-weight: 700; }

.areas-map iframe {
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  width: 100%;
  height: 460px;
}

/* ================================================
   FAQ SECTION
================================================ */
.faq-list {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e8eaf0;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: box-shadow 0.3s;
}

.faq-item.active {
  box-shadow: 0 6px 25px rgba(45, 122, 45, 0.12);
  border-color: #2d7a2d;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.25s;
}

.faq-question:hover { background: #f9fafb; }

.faq-question span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.97rem;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.4;
}

.faq-icon {
  color: #2d7a2d;
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: transform 0.35s ease;
}

.faq-item.active .faq-icon { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer p {
  padding: 0 24px 22px;
  font-size: 0.93rem;
  color: #5a5a6a;
  line-height: 1.8;
}

.faq-item.active .faq-answer { max-height: 300px; }

/* ================================================
   CTA BANNER
================================================ */
.cta-banner {
  position: relative;
  background:
    linear-gradient(135deg, rgba(26,26,46,0.93), rgba(26,60,26,0.88)),
    url('https://images.unsplash.com/photo-1416879595882-3373a0480b5b?w=1200&q=75') center / cover no-repeat;
  padding: 90px 20px;
  overflow: hidden;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #1a1a2e 0%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: center;
}

.cta-text h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.3;
}

.cta-text p {
  font-size: 1.02rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
}

.cta-text strong { color: #f57c00; }

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.cta-note {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.65);
  font-size: 0.82rem;
}

.cta-note i { color: #f57c00; }

/* ================================================
   FOOTER
================================================ */
.site-footer {
  background: #0f0f1e;
  color: rgba(255,255,255,0.75);
}

.footer-main { padding: 72px 20px 48px; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1fr 1.2fr;
  gap: 50px;
}

.footer-logo {
  margin-bottom: 18px;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.75;
  margin-bottom: 22px;
  color: rgba(255,255,255,0.65);
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.75);
}

.footer-contact i { color: #f57c00; margin-top: 2px; flex-shrink: 0; }

.footer-contact a {
  color: rgba(255,255,255,0.85);
  transition: color 0.25s;
}
.footer-contact a:hover { color: #f57c00; }

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(45, 122, 45, 0.5);
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links li a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.65);
  transition: all 0.25s;
}

.footer-links li a:hover {
  color: #f57c00;
  padding-left: 5px;
}

.footer-links li a i {
  font-size: 0.7rem;
  color: #2d7a2d;
  flex-shrink: 0;
}

/* Footer Bottom */
.footer-bottom {
  background: #080814;
  padding: 20px;
  text-align: center;
}

.footer-bottom-inner p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 6px;
}

.footer-bottom-inner a {
  color: rgba(255,255,255,0.65);
  transition: color 0.25s;
}
.footer-bottom-inner a:hover { color: #f57c00; }

.footer-disclaimer {
  color: rgba(255,255,255,0.35) !important;
}

/* ================================================
   BACK TO TOP
================================================ */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #2d7a2d, #3a9a3a);
  color: #fff;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 20px rgba(45, 122, 45, 0.4);
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.35s ease;
  pointer-events: none;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: linear-gradient(135deg, #f57c00, #ff9800);
  box-shadow: 0 6px 24px rgba(245, 124, 0, 0.45);
  transform: translateY(-3px);
}

/* ================================================
   RESPONSIVE — TABLET (max 1024px)
================================================ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 45px; }
  .about-icons { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .cta-content { grid-template-columns: 1fr; text-align: center; gap: 30px; }
  .cta-actions { flex-direction: row; justify-content: center; }
  .areas-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ================================================
   RESPONSIVE — TABLET (max 900px)
================================================ */
@media (max-width: 900px) {
  .nav-menu { display: none; }
  .hamburger { display: flex; }
  .btn-call span { display: none; }
  .btn-call { padding: 10px 14px; }
  .btn-call i { font-size: 1rem; }
}

/* ================================================
   RESPONSIVE — MOBILE (max 640px)
================================================ */
@media (max-width: 640px) {
  .section-pad { padding: 64px 0; }

  .hero-content { padding: 60px 20px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { justify-content: center; width: 100%; }
  .hero-stats { gap: 20px; }

  .about-icons { grid-template-columns: 1fr 1fr; }

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

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-main { padding: 50px 20px 32px; }

  .city-list { grid-template-columns: 1fr; }

  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { text-align: center; justify-content: center; }

  .back-to-top { bottom: 18px; right: 18px; }

  .header-inner { height: 64px; }
  .logo-text { font-size: 0.85rem; }
}

@media (max-width: 400px) {
  .about-icons { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); display: grid; gap: 16px; }
}

/* ================================================
   ANIMATIONS & UTILITIES
================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-in {
  animation: fadeInUp 0.65s ease forwards;
}

/* Scroll reveal base */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

[data-aos="fade-left"] { transform: translateX(30px); }
[data-aos="fade-left"].aos-animate { transform: translateX(0); }

[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos="fade-right"].aos-animate { transform: translateX(0); }
