/* ========================================
   style.css - No Fly Zone of the Northwest
   Green Theme | Professional | Responsive
   ======================================== */

/* ---------- CSS Variables ---------- */
:root {
  /* Colors – Green Theme */
  --primary-green: #2E7D32;
  --primary-green-dark: #1B5E20;
  --primary-green-light: #4CAF50;
  --secondary-green: #66BB6A;
  --dark-black: #1A1A1A;
  --dark-gray: #2A2A2A;
  --medium-gray: #3A3A3A;
  --light-gray: #F8F9FA;
  --light-green-bg: #F0F7F0;   /* Light green for containers */
  --white: #FFFFFF;
  --off-white: #FAFAFA;
  --text-dark: #1A1A1A;
  --text-muted: #555555;
  --text-light: #777777;
  --border-color: #E5E7EB;

  /* Spacing */
  --spacing-xs: 5px;
  --spacing-sm: 10px;
  --spacing-md: 20px;
  --spacing-lg: 30px;
  --spacing-xl: 40px;
  --spacing-xxl: 60px;
  --spacing-xxxl: 80px;

  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-heading: 'Inter', -apple-system, 'Segoe UI', sans-serif;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;
  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --line-height-loose: 1.7;

  /* Borders & Shadows */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 12px;
  --border-radius-xl: 20px;
  --border-radius-circle: 50%;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 16px 32px rgba(0, 0, 0, 0.15);
  --shadow-green: 0 4px 15px rgba(46, 125, 50, 0.3);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;

  /* Container */
  --container-max-width: 1280px;
  --container-padding: 0 20px;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-primary);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-loose);
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  color: var(--text-dark);
  margin-bottom: var(--spacing-md);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 6vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 5vw, 2.8rem); }
h3 { font-size: clamp(1.4rem, 4vw, 2rem); }
h4 { font-size: 1.4rem; }
h5 { font-size: 1.2rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1.2rem;
  color: var(--text-muted);
  line-height: var(--line-height-loose);
  font-size: 1rem;
}

@media (max-width: 768px) {
  p { font-size: 0.95rem; }
}

a {
  color: var(--primary-green);
  text-decoration: none;
  transition: color var(--transition-fast);
}
a:hover {
  color: var(--primary-green-dark);
}

ul, ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}
li {
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ========== IMAGE OPTIMIZATION BY ROLE ========== */

/* --- 1. LOGO IMAGES --- */

.logo img {
  height: 220px;        /* Pehle 190px tha, ab 220px */
  width: auto;
  max-width: 220px;     
  object-fit: contain;
}

@media (max-width: 768px) {
  .logo img {
    height: 170px;      /* Pehle 150px tha, ab 170px */
    max-width: 170px;
  }
}

@media (max-width: 480px) {
  .logo img {
    height: 130px;      /* Pehle 115px tha, ab 130px */
    max-width: 130px;
  }
}

/* --- 2. HERO SECTION BACKGROUND IMAGES --- */
.hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

@media (max-width: 768px) {
  .hero {
    background-attachment: scroll;
  }
}

/* --- 3. SERVICE CARD THUMBNAILS --- */


/* --- 4. GALLERY IMAGES --- */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1/1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* --- 5. TEAM/ABOUT SECTION IMAGES --- */
.image-wrapper {
  position: relative;
  width: 90%;
  max-width: 500px;
}

.image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  display: block;
}

@media (max-width: 768px) {
  .image-wrapper {
    width: 100%;
  }
}

/* --- 6. BLOG FEATURED IMAGES --- */
/* Featured Post */
.featured-post {
    padding: 60px 20px;
    background: #f8fdf8;
}

.featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.featured-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.featured-content .badge {
    display: inline-block;
    background: #d4ed7a;
    color: #1b5e20;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.featured-content h2 {
    color: #1b5e20;
    font-size: 32px;
    margin-bottom: 10px;
}

.meta {
    color: #888;
    font-size: 14px;
    margin-bottom: 15px;
}

.featured-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.btn-primary {
    display: inline-block;
    background: #1b5e20;
    color: #fff;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
}

/* Blog Grid */
.blog-grid-section {
    padding: 80px 20px;
    background: #fff;
}

.blog-grid-section h2 {
    color: #1b5e20;
    font-size: 32px;
    text-align: center;
    margin-bottom: 50px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.blog-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 1px solid #e8f5e9;
    transition: transform 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    color: #888;
    font-size: 13px;
    margin-bottom: 10px;
}

.blog-content h3 {
    margin-bottom: 10px;
}

.blog-content h3 a {
    color: #1b5e20;
    text-decoration: none;
    font-size: 20px;
}

.blog-excerpt {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.read-more {
    color: #2e7d32;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.current {
    color: #666;
}

.next {
    color: #1b5e20;
    text-decoration: none;
    font-weight: 600;
}

/* Newsletter */
.newsletter {
    padding: 60px 20px;
    background: #f8fdf8;
}

.newsletter-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-box h2 {
    color: #1b5e20;
    font-size: 28px;
    margin-bottom: 10px;
}

.newsletter-box p {
    color: #666;
    margin-bottom: 25px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.newsletter-form input {
    padding: 12px 20px;
    border: 2px solid #e8f5e9;
    border-radius: 25px;
    width: 300px;
    font-size: 15px;
}

.newsletter-form button {
    padding: 12px 25px;
    background: #d4ed7a;
    color: #1b5e20;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 968px) {
    .featured-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter-form input {
        width: 100%;
        max-width: 300px;
    }
}

/* --- 8. TESTIMONIAL IMAGES --- */
.testimonial-image,
.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-green);
}

.testimonial-bg-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  z-index: 0;
}

/* --- 9. PROCESS STEP IMAGES --- */
.process-step-image,
.step-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: var(--spacing-md);
}

@media (max-width: 768px) {
  .process-step-image,
  .step-image {
    height: 180px;
  }
}

/* --- 10. ICON/SMALL IMAGES --- */
.icon-image,
.pest-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .icon-image,
  .pest-icon {
    width: 60px;
    height: 60px;
  }
}

/* --- 11. INLINE IMAGES IN TEXT --- */
.content-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: var(--spacing-lg) 0;
  display: block;
}

/* --- 12. FOOTER LOGO --- */
.footer .logo img {
  height: 50px;
  width: auto;
  max-width: 50px;
}

/* --- 13. RESPONSIVE IMAGE HANDLING --- */
picture,
figure {
  max-width: 100%;
  margin: 0;
}

figure img {
  width: 100%;
  height: auto;
}

figcaption {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: var(--spacing-sm);
  padding: var(--spacing-md);
  background: var(--light-gray);
  border-radius: 4px;
}

/* ========== ULTRA-RESPONSIVE IMAGE SIZES (480px Mobile) ========== */
@media (max-width: 480px) {
  /* Blog card images on small phones */
  .blog-card img,
  .blog-thumbnail {
    height: 120px;
  }

  /* Process step images on small phones */
  .process-step-image,
  .step-image {
    height: 140px;
  }

  /* Icons on small phones */
  .icon-image,
  .pest-icon {
    width: 50px;
    height: 50px;
  }

  /* Testimonial avatars on small phones */
  .testimonial-image,
  .testimonial-avatar {
    width: 48px;
    height: 48px;
  }

  /* Reduce spacing for images on small phones */
  .featured-image,
  .blog-featured-img {
    margin-bottom: var(--spacing-md);
  }

  .content-image {
    margin: var(--spacing-md) 0;
  }

  /* Gallery items with fixed aspect ratio */
  .gallery-item {
    aspect-ratio: 1/1;
  }
}

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: var(--container-padding);
  box-sizing: border-box;
}

@media (min-width: 1280px) {
  .container {
    max-width: var(--container-max-width);
  }
}

/* ---------- Background Utilities ---------- */
.bg-light {
  background-color: var(--light-gray);
}
.bg-light-green {
  background-color: var(--light-green-bg);
}
.bg-dark {
  background-color: var(--dark-black);
  color: var(--white);
}
.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4, .bg-dark h5, .bg-dark h6 {
  color: var(--white);
}
.bg-dark p {
  color: rgba(255,255,255,0.8);
}
.bg-green {
  background-color: var(--primary-green);
  color: var(--white);
}

/* ---------- Section Padding ---------- */
.section-padding {
  padding: var(--spacing-xxxl) 0;
}
.section-padding-sm {
  padding: var(--spacing-xl) 0;
}
.section-padding-lg {
  padding: var(--spacing-xxxl) 0;
}
@media (max-width: 768px) {
  .section-padding {
    padding: var(--spacing-xxl) 0;
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: var(--font-weight-semibold);
  font-size: 1rem;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-base);
  border: none;
  outline: none;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
  letter-spacing: 0.3px;
}
.btn i {
  margin-right: 8px;
  font-size: 1.1rem;
}
.btn-primary {
  background-color: var(--primary-green);
  color: var(--white);
  box-shadow: var(--shadow-green);
}
.btn-primary:hover {
  background-color: var(--primary-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(46,125,50,0.4);
}
.btn-primary:active {
  transform: translateY(0);
}
.btn-secondary {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  box-shadow: none;
}
.btn-secondary:hover {
  background-color: var(--white);
  color: var(--dark-black);
  transform: translateY(-2px);
}
.btn-outline {
  background-color: transparent;
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
  box-shadow: none;
}
.btn-outline:hover {
  background-color: var(--primary-green);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-link {
  padding: 0;
  background: none;
  color: var(--primary-green);
  font-weight: var(--font-weight-semibold);
  box-shadow: none;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.btn-link i {
  transition: transform var(--transition-fast);
}
.btn-link:hover i {
  transform: translateX(5px);
}
.btn-large {
  padding: 16px 40px;
  font-size: 1.1rem;
}
.btn-small {
  padding: 8px 20px;
  font-size: 0.9rem;
}
.btn-block {
  width: 100%;
  display: block;
  text-align: center;
}
@media (max-width: 480px) {
  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  .btn-large {
    padding: 14px 30px;
    font-size: 1rem;
  }
}

/* ---------- Forms ---------- */
.form-group {
  margin-bottom: var(--spacing-lg);
}
.form-group label {
  display: block;
  margin-bottom: var(--spacing-xs);
  font-weight: var(--font-weight-medium);
  color: var(--text-dark);
  font-size: 0.95rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.5;
  background-color: var(--white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(46,125,50,0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-md);
}
.form-group.full-width {
  grid-column: span 2;
}
@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group.full-width {
    grid-column: span 1;
  }
}

/* ---------- Top Bar ---------- */
/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding-top: 60px; /* Topbar height - Important! */
    background: #f8f9fa;
}

/* ===== TOPBAR - FIXED BLACK ===== */
.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 60px;
    background: #0a0a0a; /* Pure black */
    z-index: 9999;
    box-shadow: 0 2px 20px rgba(0,0,0,0.4);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    margin: 0;
    padding: 0;
}

.topbar .container {
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Phone Number Link */
.topbar-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s;
    padding: 8px 12px;
    border-radius: 20px;
    background: rgba(255,255,255,0.05);
}

.topbar-phone i {
    color: #4caf50;
    font-size: 14px;
}

.topbar-phone:hover {
    background: rgba(255,255,255,0.1);
    color: #4caf50;
}

/* Book Button */
.topbar-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #4caf50;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.topbar-btn:hover {
    background: #ffffff;
    color: #0a0a0a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4);
}

.topbar-btn i {
    font-size: 13px;
}

/* Topbar Scrolled Effect */
.topbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    padding: 5px 0;
}

.topbar.scrolled .topbar-phone,
.topbar.scrolled .topbar-btn {
    transform: scale(0.95);
}

/* ===== MAIN HEADER (Navigation) ===== */
.main-header {
    background: #1b5e20;
    padding: 15px 0;
    position: sticky;
    top: 60px; /* Topbar ke neeche stick hoga */
    z-index: 9998;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.main-header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ===== LAPTOP/DESKTOP ===== */
@media (min-width: 769px) {
    .topbar-phone span {
        display: inline;
    }
    
    .topbar-btn span {
        display: inline;
    }
}

/* ===== TABLET ===== */
@media (max-width: 768px) {
    body {
        padding-top: 55px;
    }
    
    .topbar {
        height: 55px;
    }
    
    .main-header {
        top: 55px;
    }
    
    .topbar .container {
        padding: 0 15px;
    }
    
    .topbar-phone {
        font-size: 14px;
        padding: 6px 10px;
    }
    
    .topbar-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
}

/* ===== MOBILE ===== */
@media (max-width: 480px) {
    body {
        padding-top: 50px;
    }
    
    .topbar {
        height: 50px;
    }
    
    .main-header {
        top: 50px;
    }
    
    .topbar .container {
        padding: 0 12px;
        gap: 10px;
    }
    
    .topbar-phone {
        font-size: 13px;
        gap: 6px;
        padding: 5px 10px;
    }
    
    .topbar-phone span {
        /* Agar bohat chota ho toh sirf icon dikhaye */
        /* display: none; */
    }
    
    .topbar-btn {
        padding: 6px 12px;
        font-size: 12px;
        gap: 5px;
    }
    
    .topbar-btn span {
        /* Mobile pe sirf "Book" dikhaye */
        /* content: "Book"; */
    }
}

/* ===== SCROLL EFFECT (Optional) ===== */
.topbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    height: 55px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

/* ===== MAIN CONTENT SPACING ===== */
.main-content {
    min-height: 200vh; /* Scroll test karne ke liye */
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}



/* Right side – book button (also larger) */

/* License text (small, stays) */

  


/* ---------- Header / Navbar ---------- */
/* ===== HEADER & DROPDOWNS ===== */
/* ===== CSS VARIABLES ===== */
:root {
  --dark-black: #1a1a1a;
  --dark-gray: #2d2d2d;
  --primary-green: #4caf50;
  --light-green: #d4ed7a;
  --white: #ffffff;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== HEADER BASE ===== */
.header {
  background: var(--dark-black);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(26, 26, 26, 0.98);
  backdrop-filter: blur(10px);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== LOGO ===== */
.logo {
  display: flex;
  align-items: center;
  z-index: 1002;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--white);
  transition: var(--transition);
}

.logo a:hover {
  opacity: 0.9;
}

.logo img {
  height: 100px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
}

.logo-subtitle {
  font-size: 0.75rem;
  color: var(--light-green);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== NAVIGATION ===== */
.navbar {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  gap: 35px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu > li {
  position: relative;
}

.nav-menu > li > a {
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 10px 0;
  position: relative;
  display: block;
  transition: var(--transition);
}

/* Underline animation */
.nav-menu > li > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-green);
  transition: width 0.3s ease;
}

.nav-menu > li > a:hover::after,
.nav-menu > li > a.active::after {
  width: 100%;
}

.nav-menu > li > a:hover {
  color: var(--light-green);
}

/* ===== DROPDOWNS ===== */
.dropdown-menu,
.mega-menu,
.submenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: var(--dark-gray);
  min-width: 240px;
  border-radius: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  padding: 10px 0;
  list-style: none;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.1);
}

.dropdown:hover .dropdown-menu,
.mega-dropdown:hover .mega-menu,
.dropdown-submenu:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Arrow at top of dropdown */
.dropdown-menu::before,
.mega-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 30px;
  width: 12px;
  height: 12px;
  background: var(--dark-gray);
  transform: rotate(45deg);
  border-left: 1px solid rgba(255,255,255,0.1);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.dropdown-menu a,
.mega-menu a,
.submenu a {
  display: block;
  padding: 12px 25px;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
  position: relative;
}

.dropdown-menu a:hover,
.mega-menu a:hover,
.submenu a:hover {
  background: rgba(76, 175, 80, 0.1);
  color: var(--light-green);
  padding-left: 30px;
}

/* Submenu specific */
.submenu {
  left: calc(100% + 5px);
  top: 0;
}

.submenu::before {
  display: none;
}

.dropdown-submenu > a::after {
  content: '›';
  position: absolute;
  right: 20px;
  font-size: 1.2rem;
  opacity: 0.7;
}

/* ===== CTA BUTTON (Phone) ===== */
.nav-cta {
  margin-left: 30px;
}

.nav-cta .btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 10px 20px;
  border: 2px solid var(--primary-green);
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-cta .btn-phone:hover {
  background: var(--primary-green);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.nav-cta .btn-phone i {
  font-size: 0.9rem;
}

/* ===== HAMBURGER MENU ===== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
  z-index: 1002;
  position: relative;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

/* Hamburger Animation to X */
.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 992px) {
  .hamburger {
    display: flex;
  }

  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: var(--dark-gray);
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 100px;
    transition: var(--transition);
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    overflow-y: auto;
  }

  .navbar.active {
    right: 0;
  }

  /* Backdrop overlay */
  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
  }

  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .nav-menu {
    flex-direction: column;
    gap: 0;
    width: 100%;
    padding: 0 25px;
  }

  .nav-menu > li {
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .nav-menu > li > a {
    padding: 18px 0;
    font-size: 1.1rem;
  }

  .nav-cta {
    margin: 30px 25px 0;
    width: calc(100% - 50px);
  }

  .nav-cta .btn-phone {
    width: 100%;
    justify-content: center;
    background: var(--primary-green);
  }

  /* Mobile Dropdowns */
  .dropdown-menu,
  .mega-menu,
  .submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(0,0,0,0.2);
    box-shadow: none;
    border: none;
    border-radius: 0;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    min-width: auto;
    transition: max-height 0.3s ease;
  }

  .dropdown.active .dropdown-menu,
  .mega-dropdown.active .mega-menu,
  .dropdown-submenu.active .submenu {
    max-height: 500px;
    padding: 10px 0;
  }

  .dropdown-menu::before,
  .mega-menu::before {
    display: none;
  }

  .dropdown > a::after,
  .dropdown-submenu > a::after {
    content: '+';
    float: right;
    font-size: 1.2rem;
    transition: transform 0.3s;
  }

  .dropdown.active > a::after,
  .dropdown-submenu.active > a::after {
    transform: rotate(45deg);
  }

  .mega-menu-column {
    padding: 0;
  }

  .mega-menu-header {
    color: var(--light-green);
    padding: 10px 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
  }
}

@media (max-width: 480px) {
  .header .container {
    height: 70px;
  }

  .logo img {
    height: 85px;
  }

  .logo-title {
    font-size: 1.2rem;
  }

  .logo-subtitle {
    display: none;
  }

  .navbar {
    width: 280px;
  }
}
/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 600px;
  height: 80vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(46,125,50,0.6) 80%, transparent 100%);
  z-index: 1;
}
.hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-content {
  max-width: 600px;
  padding: var(--spacing-xl);
  animation: slideInLeft 0.8s ease-out;
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}
.hero-content h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: var(--spacing-md);
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.hero-content p {
  color: rgba(255,255,255,0.95);
  font-size: 1.2rem;
  margin-bottom: var(--spacing-lg);
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}
.hero-buttons {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}
.hero-contact {
  margin-top: var(--spacing-lg);
  font-size: 1rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: var(--spacing-md);
}
.hero-contact a {
  color: var(--primary-green);
  font-weight: var(--font-weight-semibold);
}
.hero-contact a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .hero {
    min-height: 500px;
    height: auto;
    padding: 60px 0;
  }
  .hero-overlay {
    background: linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(46,125,50,0.6) 100%);
  }
  .hero-content {
    max-width: 100%;
    padding: var(--spacing-lg);
    margin: 0 var(--spacing-md);
  }
  .hero-content h1 { font-size: 2rem; }
  .hero-content p { font-size: 1rem; }
  .hero-buttons { flex-direction: column; gap: var(--spacing-sm); }
  .hero-buttons .btn { width: 100%; text-align: center; }
}
@media (max-width: 480px) {
  .hero-content h1 { font-size: 1.8rem; }
  .hero-content p { font-size: 0.95rem; }
}


/* ---------- About Highlight (Image Overlap) ---------- */

/* =====ABOUT SECTION (Image with Green Block) ===== */
.about-highlight {
  background: var(--white);
  padding: 80px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Image side */
.about-image {
  position: relative;
}

.image-wrapper {
  position: relative;
  z-index: 2;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.image-wrapper-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}
.image-wrapper:hover .image-wrapper-img {
  transform: scale(1.02);
}

/* Green background block (behind image, shifted bottom-left) */
.about-image::before {
  content: '';
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 85%;
  height: 85%;
  background: var(--primary-green);
  border-radius: var(--border-radius-lg);
  z-index: 1;
  transition: all 0.3s ease;
}

.about-image:hover::before {
  bottom: -15px;
  left: -15px;
  width: 90%;
  height: 90%;
}

/* Content side */
.about-content h2 {
  color: var(--primary-green);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  font-weight: 600;
}

.about-content h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.3;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 30px;
  line-height: 1.7;
}

.about-content .btn {
  margin-top: 10px;
}

/* Responsive */
@media (max-width: 992px) {
  .about-grid {
    gap: 40px;
  }
  .about-content h3 {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .about-highlight {
    padding: 60px 0;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-image {
    max-width: 500px;
    margin: 0 auto;
  }
  .about-image::before {
    bottom: -15px;
    left: -15px;
    width: 90%;
    height: 90%;
  }
  .about-content {
    text-align: center;
  }
  .about-content h2 {
    display: inline-block;
    border-bottom: 2px solid var(--primary-green);
    padding-bottom: 5px;
  }
  .about-content h3 {
    font-size: 1.6rem;
  }
  .about-content .btn {
    margin: 0 auto;
  }
}
/* ===== TRUST BAR SECTION ===== */
.trust-bar {
  background: var(--light-gray);      /* or #F8F9FA */
  padding: 60px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

/* Heading above the grid */
.trust-heading {
  text-align: center;
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  color: var(--text-dark);
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.trust-heading::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary-green);
  border-radius: 2px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 0;
}

.trust-item {
  text-align: center;
  padding: 20px;
  background: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  border: 1px solid var(--border-color);
}

.trust-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-green);
}

.trust-icon {
  font-size: 2.8rem;
  color: var(--primary-green);
  margin-bottom: 15px;
  display: inline-block;
}

.trust-item h4 {
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.2;
}

.trust-item p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: var(--font-weight-medium);
}

/* Responsive */
@media (max-width: 992px) {
  .trust-heading {
    font-size: 1.8rem;
  }
  .trust-grid {
    gap: 20px;
  }
  .trust-item h4 {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .trust-bar {
    padding: 40px 0;
  }
  .trust-heading {
    font-size: 1.6rem;
    margin-bottom: 30px;
    white-space: normal;
    width: 100%;
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .trust-item {
    padding: 20px;
  }
  .trust-item h4 {
    font-size: 1.6rem;
  }
}


/* ---------- Services Overview (Cards with Background Image) ---------- */


/* ---------- Why Choose (Features Grid) ---------- */


/* ---------- Service Areas Grid (Cards with Background Image) ---------- */
.areas-grid {
  display: grid;
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}
@media (min-width: 992px) {
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 576px) and (max-width: 991px) {
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
  .areas-grid { grid-template-columns: 1fr; }
}
.area-card {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 220px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-decoration: none;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-base);
}
.area-card:hover {
  transform: scale(1.02);
}
.card-overlay {
  background: linear-gradient(to top, var(--dark-black), transparent);
  padding: var(--spacing-lg);
  width: 100%;
  text-align: center;
  transition: padding var(--transition-base);
}
.area-card:hover .card-overlay {
  background: linear-gradient(to top, var(--primary-green), transparent);
  padding-bottom: var(--spacing-xl);
}
.card-overlay h3 {
  color: var(--white);
  margin-bottom: 0;
  font-size: 1.3rem;
}

/* ---------- Contact Form Section ---------- */
.form-container {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  padding: 40px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}
.contact-form .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-md);
}
.form-group.full-width {
  grid-column: span 2;
}
@media (max-width: 768px) {
  .contact-form .form-grid { grid-template-columns: 1fr; }
  .form-group.full-width { grid-column: span 1; }
  .form-container { padding: 30px 20px; }
}
.btn-block {
  width: 100%;
  display: block;
  text-align: center;
  margin-top: var(--spacing-md);
}

/* ---------- Reviews Section ---------- */
.reviews-grid {
  display: grid;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}
@media (min-width: 992px) {
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 576px) and (max-width: 991px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
  .reviews-grid { grid-template-columns: 1fr; }
}
.review-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--spacing-lg);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.review-header {
  display: flex;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-sm);
  align-items: center;
}
.reviewer-avatar {
  font-size: 3rem;
  color: var(--primary-green);
  line-height: 1;
  flex-shrink: 0;
}
.reviewer-info h3 {
  font-size: 1.2rem;
  margin-bottom: 4px;
  color: var(--text-dark);
}
.review-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-light);
  align-items: center;
}
.review-meta .badge {
  background-color: var(--light-gray);
  padding: 2px 8px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.review-meta .badge i {
  color: var(--primary-green);
  font-size: 0.8rem;
}
.review-count, .photo-count {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.review-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: var(--spacing-sm);
  flex-wrap: wrap;
}
.review-rating i {
  font-size: 1rem;
}
.star-filled {
  color: #ffb400;
}
.star-empty {
  color: #ddd;
}
.review-date {
  margin-left: auto;
  font-size: 0.85rem;
  color: var(--text-light);
}
.review-text {
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: var(--spacing-sm);
  line-height: 1.6;
  flex-grow: 1;
  word-break: break-word;
}
.review-author-detail {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
  border-top: 1px dashed var(--border-color);
  padding-top: var(--spacing-sm);
  margin-top: auto;
}
@media (max-width: 575px) {
  .review-header { flex-wrap: wrap; }
  .review-rating { margin-top: var(--spacing-xs); }
  .review-date { margin-left: 0; width: 100%; text-align: left; margin-top: var(--spacing-xs); }
}

/* ---------- Recommendation Section ---------- */
.recommendation-section {
  background-color: var(--light-green-bg);
  padding: var(--spacing-xl) 0;
  border-top: 3px solid var(--primary-green);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.recommendation-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-lg);
  flex-wrap: wrap;
  text-align: center;
}
.recommendation-icon {
  font-size: 3.5rem;
  color: var(--primary-green);
  animation: pulse 2s infinite;
}
.recommendation-text {
  display: flex;
  flex-direction: column;
}
.recommendation-number {
  font-size: 2.8rem;
  font-weight: var(--font-weight-bold);
  color: var(--primary-green);
  line-height: 1.2;
}
.recommendation-label {
  font-size: 1.2rem;
  color: var(--text-dark);
  max-width: 500px;
}
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}
@media (max-width: 768px) {
  .recommendation-content { flex-direction: column; gap: var(--spacing-md); }
  .recommendation-icon { font-size: 3rem; }
  .recommendation-number { font-size: 2.2rem; }
  .recommendation-label { font-size: 1rem; }
}

/* ---------- License Section ---------- */
.license {
  padding: 20px 0;
  text-align: center;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* ---------- Footer ---------- */
.footer {
  background-color: var(--dark-black);
  color: #aaa;
  padding: var(--spacing-xxxl) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}
.footer h3 {
  color: var(--white);
  margin-bottom: var(--spacing-lg);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}
.footer h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-green);
}
.footer-about p {
  margin-bottom: var(--spacing-sm);
  line-height: 1.8;
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  font-size: 0.95rem;
  color: #aaa;
}
.footer-about i {
  color: var(--primary-green);
  width: 20px;
}
.footer-links ul,
.footer-services ul,
.footer-areas ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li,
.footer-services li,
.footer-areas li {
  margin-bottom: var(--spacing-sm);
}
.footer-links a,
.footer-services a,
.footer-areas a {
  color: #aaa;
  transition: color var(--transition-fast), transform var(--transition-fast);
  display: inline-block;
  font-size: 0.95rem;
}
.footer-links a:hover,
.footer-services a:hover,
.footer-areas a:hover {
  color: var(--primary-green);
  transform: translateX(5px);
}
.footer-bottom {
  border-top: 1px solid #333;
  padding: 30px 0 20px;
  margin-top: 30px;
}
.footer-bottom-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}
.footer-bottom-row p {
  margin: 0;
  color: #aaa;
  font-size: 0.9rem;
}
.footer-links-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.9rem;
}
.footer-links-row .separator { color: #444; }
.powered-by a {
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}
.powered-by a:hover {
  color: var(--primary-green);
}
.footer-bottom a.admin-link {
  color: #aaa;
  text-decoration: none;
  transition: color var(--transition-fast);
  margin-left: 8px;
}
.footer-bottom a.admin-link:hover {
  color: var(--primary-green);
}
@media (min-width: 768px) {
  .footer-bottom-row {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    flex-wrap: wrap;
  }
  .footer-copyright { text-align: left; }
  .footer-credentials { text-align: center; }
  .footer-links-row { text-align: right; justify-content: flex-end; }
}
@media (max-width: 767px) {
  .footer-links-row .separator { display: none; }
  .footer-links-row { flex-direction: column; gap: 5px; }
}
@media (max-width: 992px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer h3::after { left: 50%; transform: translateX(-50%); }
  .footer-about p { justify-content: center; }
}

/* ---------- Mobile Overrides for Center Alignment ---------- */
@media (max-width: 768px) {
  .container { padding-left: 20px; padding-right: 20px; margin-left: auto; margin-right: auto; }
  .hero .container,
  .page-header .container,
  section .container { left: 0; right: 0; }
  .hero-content,
  .about-content,
  .service-detail,
  .area-content,
  .contact-info,
  .contact-form,
  .booking-form-section,
  .content-container,
  .cert-item,
  .feature,
  .service-card,
  .blog-card,
  .review-card {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .btn { margin-left: auto; margin-right: auto; display: block; max-width: 300px; }
  .hero::before { width: 100%; background: linear-gradient(90deg, rgba(0,0,0,0.9) 0%, rgba(46,125,50,0.6) 70%, rgba(0,0,0,0.3) 100%); }
}

/* ---------- Page Header (for inner pages) ---------- */
.page-header {
  position: relative;
  height: 200px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
}
.page-header .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
}
.page-header .container {
  position: relative;
  z-index: 2;
}
.page-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: var(--spacing-xs);
}
.page-header p {
  font-size: 1rem;
}
@media (max-width: 768px) {
  .page-header { height: 150px; }
  .page-header h1 { font-size: 1.5rem; }
}
@media (max-width: 480px) {
  .page-header { height: 120px; }
  .page-header h1 { font-size: 1.2rem; }
  .page-header p { font-size: 0.9rem; }
}
/* ===== CHATBOT WIDGET ===== */
.chatbot-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  font-family: 'Open Sans', sans-serif;
}

/* Chat Button */
.chatbot-button {
  width: 60px;
  height: 60px;
  background: var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.chatbot-button:hover {
  background: var(--primary-green-dark);
  transform: scale(1.1);
}

.chatbot-button i {
  color: var(--white);
  font-size: 28px;
}

/* Chat Window */
.chatbot-window {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 350px;
  height: 500px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 5px 30px rgba(0,0,0,0.2);
  display: none;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.chatbot-window.active {
  display: flex;
}

/* Header */
.chatbot-header {
  background: var(--primary-green);
  color: var(--white);
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chatbot-header h3 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

.chatbot-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
  transition: transform 0.2s;
}
.chatbot-close:hover {
  transform: scale(1.2);
}

/* Messages Area */
.chatbot-messages {
  flex: 1;
  padding: 15px;
  overflow-y: auto;
  background: var(--light-gray);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.message {
  display: flex;
  max-width: 85%;
}

.message.bot {
  align-self: flex-start;
}
.message.user {
  align-self: flex-end;
}

.message-content {
  padding: 10px 15px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.5;
  word-wrap: break-word;
}

.message.bot .message-content {
  background: var(--white);
  border: 1px solid var(--border-color);
  color: var(--text-dark);
  border-bottom-left-radius: 4px;
}
.message.user .message-content {
  background: var(--primary-green);
  color: var(--white);
  border-bottom-right-radius: 4px;
}

/* Suggestions */
.chatbot-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.suggestion-btn {
  background: #f0f0f0;
  border: none;
  border-radius: 20px;
  padding: 6px 12px;
  font-size: 12px;
  cursor: pointer;
  color: var(--text-dark);
  transition: all 0.2s ease;
  white-space: nowrap;
}
.suggestion-btn:hover {
  background: var(--primary-green);
  color: var(--white);
}

/* Input Area */
.chatbot-input-area {
  border-top: 1px solid var(--border-color);
  padding: 10px;
  background: var(--white);
}

.chatbot-input {
  display: flex;
  gap: 10px;
}

.chatbot-input input {
  flex: 1;
  padding: 10px;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  outline: none;
  font-size: 14px;
}
.chatbot-input input:focus {
  border-color: var(--primary-green);
}

.chatbot-input button {
  width: 40px;
  height: 40px;
  background: var(--primary-green);
  border: none;
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  transition: background 0.3s;
}
.chatbot-input button:hover {
  background: var(--primary-green-dark);
}

/* Pulse Animation */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(46,125,50,0.4); }
  70% { box-shadow: 0 0 0 10px rgba(46,125,50,0); }
  100% { box-shadow: 0 0 0 0 rgba(46,125,50,0); }
}

/* Responsive */
@media (max-width: 480px) {
  .chatbot-container {
    bottom: 20px;
    right: 20px;
  }
  .chatbot-window {
    width: 300px;
    height: 450px;
    right: 0;
    bottom: 70px;
  }
  .chatbot-button {
    width: 50px;
    height: 50px;
  }
  .chatbot-button i {
    font-size: 24px;
  }
}
/* ---------- Utility Classes ---------- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-green { color: var(--primary-green); }
.text-white { color: var(--white); }
.text-dark { color: var(--dark-black); }
.bg-green { background-color: var(--primary-green); }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }
.mt-5 { margin-top: var(--spacing-xl); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }
.mb-5 { margin-bottom: var(--spacing-xl); }
.py-1 { padding-top: var(--spacing-sm); padding-bottom: var(--spacing-sm); }
.py-2 { padding-top: var(--spacing-md); padding-bottom: var(--spacing-md); }
.py-3 { padding-top: var(--spacing-lg); padding-bottom: var(--spacing-lg); }
.py-4 { padding-top: var(--spacing-xl); padding-bottom: var(--spacing-xl); }
.py-5 { padding-top: var(--spacing-xxl); padding-bottom: var(--spacing-xxl); }
.px-1 { padding-left: var(--spacing-sm); padding-right: var(--spacing-sm); }
.px-2 { padding-left: var(--spacing-md); padding-right: var(--spacing-md); }
.px-3 { padding-left: var(--spacing-lg); padding-right: var(--spacing-lg); }
.px-4 { padding-left: var(--spacing-xl); padding-right: var(--spacing-xl); }
.px-5 { padding-left: var(--spacing-xxl); padding-right: var(--spacing-xxl); }
/* ===== SERVICES CAROUSEL SECTION ===== */
.services-section {
    padding: 80px 20px;
    background: #f8fdf8;
    overflow: hidden;
}

.services-section h2 {
    color: #1b5e20;
    font-size: 36px;
    text-align: center;
    margin-bottom: 10px;
}

.subhead {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
    font-size: 18px;
}

/* Carousel Container */
.services-grid {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 20px 10px;
    /* Hide scrollbar */
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.services-grid::-webkit-scrollbar {
    display: none;
}

/* Cards - 3 on laptop, 2 on phone */
.service-card {
    flex: 0 0 calc(33.333% - 17px); /* 3 cards desktop */
    min-width: 300px;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(27, 94, 32, 0.1);
    border: 1px solid #e8f5e9;
    scroll-snap-align: start;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(27, 94, 32, 0.15);
}

/* Image styling (agar use karni ho toh, warna hata do) */
.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 3px solid #d4ed7a;
}

.card-content {
    padding: 25px;
}

.service-card h3 {
    color: #1b5e20;
    font-size: 22px;
    margin-bottom: 10px;
}

.service-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-learn {
    color: #2e7d32;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s;
}

.btn-learn:hover {
    gap: 10px;
    color: #1b5e20;
}

/* Navigation Buttons */
.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.nav-btn {
    width: 50px;
    height: 50px;
    background: #d4ed7a;
    border: none;
    border-radius: 50%;
    color: #1b5e20;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.nav-btn:hover {
    background: #1b5e20;
    color: #ffffff;
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 968px) {
    .service-card {
        flex: 0 0 calc(50% - 13px); /* 2 cards tablet */
        min-width: 280px;
    }
}

@media (max-width: 600px) {
    .service-card {
        flex: 0 0 calc(50% - 10px); /* 2 cards phone */
        min-width: 200px;
    }
    
    .service-card img {
        height: 150px;
    }
    
    .services-section h2 {
        font-size: 28px;
    }
}

/* Agar images nahi chahiye toh yeh use karo: */
.service-card.no-img {
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 250px;
}

.service-card.no-img h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.service-card.no-img::before {
    content: '→';
    font-size: 40px;
    color: #d4ed7a;
    margin-bottom: 20px;
    display: block;
}
/* ===== VIDEO GALLERY SECTION ===== */
.video-section {
    padding: 60px 20px;
    background: #f8fdf8;
}

.video-section h2 {
    color: #1b5e20;
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.video-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border: 1px solid #e8f5e9;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background: #1b5e20;
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-card h3 {
    color: #1b5e20;
    font-size: 20px;
    margin: 20px 20px 10px;
}

.video-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.5;
    margin: 0 20px 20px;
}

@media (max-width: 600px) {
    .video-grid { grid-template-columns: 1fr; }
    .video-section h2 { font-size: 26px; }
}
/* ==== services areas home pages card */
.service-areas-cards {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f8fdf8 0%, #ffffff 50%, #e8f5e9 100%);
    position: relative;
    overflow: hidden;
}

/* Background decoration */
.service-areas-cards::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 237, 122, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.service-areas-cards .container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.service-areas-cards h2 {
    color: #1b5e20;
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.service-areas-cards h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #d4ed7a, #4caf50);
    margin: 15px auto 0;
    border-radius: 2px;
}

.service-areas-cards > .container > p {
    text-align: center;
    color: #555;
    font-size: 18px;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Grid Layout */
.areas-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Individual Cards */
.area-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    background: #ffffff;
    border: 2px solid #e8f5e9;
    border-radius: 16px;
    text-decoration: none;
    color: #1b5e20;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    overflow: hidden;
}

/* Location pin icon */
.area-card::before {
    content: '📍';
    font-size: 24px;
    margin-bottom: 10px;
    opacity: 0.7;
    transition: all 0.3s;
}

/* Hover line effect */
.area-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #d4ed7a, #4caf50);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.area-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(27, 94, 32, 0.15);
    border-color: #d4ed7a;
    background: linear-gradient(135deg, #ffffff 0%, #f8fdf8 100%);
}

.area-card:hover::before {
    transform: scale(1.2);
    opacity: 1;
}

.area-card:hover::after {
    transform: scaleX(1);
}

/* "View" text on hover */
.area-card span {
    font-size: 13px;
    color: #4caf50;
    margin-top: 8px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s;
    font-weight: 500;
}

.area-card:hover span {
    opacity: 1;
    transform: translateY(0);
}

/* Twin Falls highlight (Headquarters) */
.area-card[href*="twin-falls"] {
    background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 100%);
    color: #ffffff;
    border-color: #1b5e20;
    grid-column: span 1;
}

.area-card[href*="twin-falls"]::before {
    content: '★';
    color: #d4ed7a;
    font-size: 20px;
}

.area-card[href*="twin-falls"]:hover {
    background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
    box-shadow: 0 20px 40px rgba(27, 94, 32, 0.3);
}

/* Responsive */
@media (max-width: 968px) {
    .areas-card-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .service-areas-cards h2 {
        font-size: 32px;
    }
}

@media (max-width: 600px) {
    .areas-card-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .area-card {
        padding: 25px 15px;
        font-size: 16px;
    }
    
    .service-areas-cards h2 {
        font-size: 28px;
    }
}
/* ==== How It Works Section (Step-by-Step) ==== */
.process-section {
    padding: 80px 20px;
    background: #f8fdf8;
}

.process-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.badge {
    display: inline-block;
    background: #d4ed7a;
    color: #1b5e20;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-header h2 {
    color: #1b5e20;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}

/* Grid Layout */
.process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 30px;
    align-items: center;
    position: relative;
}

/* Text Boxes */
.text-box h3 {
    color: #1b5e20;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.text-box p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.top-left {
    grid-column: 1;
    grid-row: 1;
    text-align: right;
}

.top-right {
    grid-column: 3;
    grid-row: 1;
    text-align: right;
}

.bottom-left {
    grid-column: 2;
    grid-row: 3;
    text-align: left;
}

.bottom-right {
    grid-column: 4;
    grid-row: 3;
    text-align: left;
}

/* Image Boxes */
.img-box {
    display: flex;
    justify-content: center;
}

.process-step-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #d4ed7a;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.top-img-1 {
    grid-column: 2;
    grid-row: 1;
}

.top-img-2 {
    grid-column: 4;
    grid-row: 1;
}

.bottom-img-1 {
    grid-column: 1;
    grid-row: 3;
}

.bottom-img-2 {
    grid-column: 3;
    grid-row: 3;
}

/* Timeline */
.timeline-row {
    grid-column: 1 / -1;
    grid-row: 2;
    position: relative;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.timeline-line {
    position: absolute;
    width: 80%;
    height: 2px;
    background: #e0e0e0;
    top: 50%;
    transform: translateY(-50%);
}

.timeline-numbers {
    display: flex;
    justify-content: space-around;
    width: 80%;
    position: relative;
    z-index: 2;
}

.num-badge {
    width: 45px;
    height: 45px;
    background: #d4ed7a;
    color: #1b5e20;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    border: 3px solid #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 968px) {
    .process-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .text-box {
        text-align: center !important;
        grid-column: span 1 !important;
    }
    
    .img-box {
        grid-column: span 1 !important;
        grid-row: auto !important;
    }
    
    .timeline-row {
        display: none;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .process-step-image {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 600px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .text-box {
        order: 2;
        text-align: center !important;  
    }
    .img-box {
        order: 1;
        margin-bottom: 20px;
    }
    .section-header h2 {
        font-size: 24px;
    }
    .process-step-image {
        width: 120px;
        height: 120px;
    }
}

/* customer review section */
.testimonials-section {
    padding: 60px 20px;
    background: #1b5e20;
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/images/hero.png');
    opacity: 0.1;
    background-size: cover;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-tag {
    color: #d4ed7a;
    font-size: 14px;
    font-weight: 600;
}

.section-title {
    color: #fff;
    font-size: 30px;
    margin: 10px 0 0;
}

.text-gradient {
    color: #d4ed7a;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
}

.quote-icon {
    color: #d4ed7a;
    font-size: 24px;
    margin-bottom: 15px;
}

.testimonial-text {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.client-name {
    color: #1b5e20;
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}

.client-role {
    color: #777;
    font-size: 14px;
    margin: 5px 0 0;
}

@media (max-width: 600px) {
    .section-title { font-size: 24px; }
}
 /* Call to Action --> */
 .final-cta {
    padding: 50px 20px;
    background: #1b5e20;
    text-align: center;
}

.final-cta h2 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 10px;
}

.final-cta p {
    color: #fff;
    opacity: 0.9;
    margin-bottom: 20px;
    line-height: 1.5;
}

.contact-info {
    margin-bottom: 25px;
}

.contact-info p {
    color: #d4ed7a;
    margin: 5px 0;
}

.contact-info a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.btn-white {
    display: inline-block;
    background: #fff;
    color: #1b5e20;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
}
/* about page */
/* Hero Section */


/* About Main */
.about-main {
    padding: 80px 20px;
    background: #fff;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
}

.about-text h2 {
    color: #1b5e20;
    font-size: 32px;
    margin-bottom: 20px;
}

.about-text p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Stats */
.stats-section {
    padding: 60px 20px;
    background: #f8fdf8;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.stat-number {
    color: #1b5e20;
    font-size: 36px;
    font-weight: bold;
    display: block;
}

.stat-label {
    color: #666;
    font-size: 14px;
}

/* Values */
.values {
    padding: 80px 20px;
    background: #fff;
}

.values h2 {
    color: #1b5e20;
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.value-item {
    text-align: center;
    padding: 30px;
    background: #f8fdf8;
    border-radius: 15px;
}

.value-item i {
    font-size: 32px;
    color: #1b5e20;
    margin-bottom: 15px;
}

.value-item h3 {
    color: #1b5e20;
    font-size: 18px;
    margin-bottom: 10px;
}

.value-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

/* CTA */
.cta-section {
    padding: 60px 20px;
    background: #1b5e20;
    text-align: center;
}

.cta-section h2 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 10px;
}

.cta-section p {
    color: #d4ed7a;
    margin-bottom: 10px;
}

.cta-section .phone {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}

.btn-primary {
    display: inline-block;
    background: #d4ed7a;
    color: #1b5e20;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
    .grid-2, .stats-grid, .values-grid {
        grid-template-columns: 1fr;
    }
    
    .hero h1 { font-size: 32px; }
    .stats-grid { gap: 20px; }
}

/* gallery page */
/* Gallery Intro */
.gallery-intro {
    padding: 80px 20px;
    background: #f8fdf8;
}

.gallery-intro .container {
    max-width: 1100px;
    margin: 0 auto;
}

.gallery-intro .grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.intro-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.intro-text h2 {
    color: #1b5e20;
    font-size: 32px;
    margin-bottom: 20px;
}

.intro-text p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.btn-primary {
    display: inline-block;
    background: #d4ed7a;
    color: #1b5e20;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 10px;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #1b5e20;
    color: #fff;
}

/* Filter Buttons */
.gallery-filter {
    padding: 30px 20px;
    background: #fff;
    border-bottom: 1px solid #e8f5e9;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.filter-btn {
    padding: 10px 25px;
    background: #f8fdf8;
    border: 2px solid #e8f5e9;
    border-radius: 25px;
    color: #1b5e20;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: #1b5e20;
    color: #fff;
    border-color: #1b5e20;
}

/* Gallery Grid */
.gallery-section {
    padding: 60px 20px;
    background: #f8fdf8;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(27, 94, 32, 0.95));
    color: #FFFFFF;
    padding: 30px 20px 20px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-overlay h3 {
    margin: 0 0 5px;
    font-size: 20px;
    color: #FFFFFF;
}

.gallery-overlay p {
    margin: 0;
    color: #FFFFFF;
    opacity: 1;
    font-size: 14px;
}
/* Hover Effects */
.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .gallery-intro .grid-2 {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .intro-text h2 {
        font-size: 26px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

/* contact page */
/* Contact Hero */
.contact-hero {
    position: relative;
    padding: 100px 20px;
    background-size: cover;
    background-position: center;
    text-align: center;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(27, 94, 32, 0.85);
}

.contact-hero .container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero h1 {
    color: #fff;
    font-size: 38px;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-hero p {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 60px 20px;
    background: #f8fdf8;
}

.contact-section .container {
    max-width: 1100px;
    margin: 0 auto;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 40px;
    align-items: start;
}

/* Business Info Card */
.info-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.info-card h2 {
    color: #1b5e20;
    font-size: 22px;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #d4ed7a;
}

.info-card h3 {
    color: #1b5e20;
    font-size: 16px;
    margin: 25px 0 12px;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

.info-row i {
    color: #1b5e20;
    width: 20px;
    margin-top: 3px;
    flex-shrink: 0;
}

.info-row a {
    color: #1b5e20;
    text-decoration: none;
    font-weight: 600;
}

.service-areas {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    font-size: 13px;
    color: #666;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: #1b5e20;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: #d4ed7a;
    color: #1b5e20;
}

/* Forms Container */
.forms-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-card {
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.form-card h2 {
    color: #1b5e20;
    font-size: 22px;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #d4ed7a;
}

.form-field {
    margin-bottom: 18px;
}

.form-field label {
    display: block;
    color: #333;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #4caf50;
}

.submit-btn {
    padding: 14px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.submit-btn.primary {
    background: #1b5e20;
    color: #fff;
}

.submit-btn.primary:hover {
    background: #2e7d32;
}

.submit-btn.secondary {
    background: transparent;
    color: #1b5e20;
    border: 2px solid #1b5e20;
}

.submit-btn.secondary:hover {
    background: #1b5e20;
    color: #fff;
}

/* Map Section */
.location-map {
    padding: 60px 20px;
    background: #fff;
    text-align: center;
}

.location-map h2 {
    color: #1b5e20;
    font-size: 28px;
    margin-bottom: 30px;
}

.map-container {
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 400px;
    border: none;
}

/* Responsive */
@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .info-card {
        position: static;
    }
    
    .form-card {
        padding: 25px;
    }
}

@media (max-width: 600px) {
    .contact-hero h1 {
        font-size: 28px;
    }
    
    .service-areas {
        grid-template-columns: repeat(3, 1fr);
    }
}



/* ===== SERVICE DETAILS SECTION ===== */
.service-details-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  padding: 40px 0;
}

.service-detailed {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid #e8f5e9;
}

.service-detailed:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(27,94,32,0.15);
  border-color: #c8e6c9;
}

.service-detailed img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-detailed:hover img {
  transform: scale(1.02);
}

.service-detailed h2 {
  padding: 20px 20px 10px;
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.3;
}

.service-detailed h2 a {
  color: #1b5e20;
  text-decoration: none;
  transition: color 0.2s;
}

.service-detailed h2 a:hover {
  color: #2e7d32;
}

.service-detailed p {
  padding: 0 20px 20px;
  margin: 0;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  flex-grow: 1;
}

.service-detailed .btn {
  display: inline-block;
  margin: 0 20px 25px;
  align-self: flex-start;
  background: #2e7d32;
  color: #fff;
  padding: 10px 24px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.service-detailed .btn:hover {
  background: #1b5e20;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
  .service-details-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .service-detailed img {
    height: 200px;
  }
}
/* ===== SERVICE AREAS PAGE ===== */

/* Cities Grid */
.cities-section {
  padding: 60px 0;
  background: var(--white);
}

.cities-section h2 {
  text-align: center;
  font-size: 2rem;
  color: var(--primary-green);
  margin-bottom: 40px;
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 20px;
}

.city-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.city-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-green);
}

.city-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.city-card:hover img {
  transform: scale(1.05);
}

.city-card h3 {
  padding: 15px;
  text-align: center;
  margin: 0;
  color: var(--text-dark);
  font-size: 1.2rem;
  font-weight: 600;
  background: var(--white);
}

/* Map Section */
.map-section {
  padding: 60px 0;
  background: var(--light-gray);
}

.map-section h2 {
  text-align: center;
  margin-bottom: 30px;
  color: var(--primary-green);
  font-size: 1.8rem;
}

.map-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

/* Call to Action (CTA) Section – reuse existing styles or add consistency */
.cta-section {
  padding: 60px 0;
  background: var(--primary-green);
  color: var(--white);
  text-align: center;
}

.cta-section h2 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.cta-section p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 25px;
}

.cta-section .btn-primary {
  background: var(--white);
  color: var(--primary-green);
  border: none;
  transition: all 0.2s;
}

.cta-section .btn-primary:hover {
  background: var(--light-gray);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
  .city-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .city-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .city-card img {
    height: 160px;
  }
  .cities-section h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .city-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .city-card img {
    height: 180px;
  }
  .map-section h2 {
    font-size: 1.5rem;
  }
}


/* ===== RESIDENTIAL PEST CONTROL PAGE ===== */

/* Intro Section (Image + Text) */
.service-intro {
  padding: 60px 0;
  background: var(--white);
}

.service-intro .grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.service-intro .service-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
}

.service-intro .service-image img:hover {
  transform: scale(1.02);
}

.service-intro .service-text h2 {
  color: var(--primary-green);
  font-size: 2rem;
  margin-bottom: 20px;
}

.service-intro .service-text p {
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.7;
}

.service-intro .service-text ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.service-intro .service-text ul li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
}

.service-intro .service-text ul li i {
  color: var(--primary-green);
  font-size: 1.2rem;
  width: 24px;
}

/* Features Grid (Cards with Icons) */
.service-features {
  padding: 60px 0;
  background: var(--light-gray);
}

.service-features h2 {
  text-align: center;
  color: var(--primary-green);
  margin-bottom: 40px;
  font-size: 2rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.feature-card {
  background: var(--white);
  border-radius: 16px;
  padding: 30px 25px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-green);
  box-shadow: var(--shadow-md);
}

.feature-card i {
  font-size: 2.5rem;
  color: var(--primary-green);
  margin-bottom: 20px;
  display: inline-block;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.feature-card p {
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Common Pests Section – Cards with Uniform Images */
.common-pests {
  padding: 60px 0;
  background: var(--white);
}

.common-pests h2 {
  text-align: center;
  color: var(--primary-green);
  margin-bottom: 40px;
  font-size: 2rem;
}

.pest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  text-align: center;
}

.pest-item {
  background: var(--white);
  border-radius: 16px;
  padding: 20px 15px;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.pest-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary-green);
  box-shadow: var(--shadow-md);
}

.pest-item img {
  width: 100%;
  max-width: 100px;
  height: 100px;
  object-fit: contain;
  margin: 0 auto 15px;
  display: block;
}

.pest-item span {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 1rem;
  display: block;
}

/* Process Steps Grid */
.process {
  padding: 60px 0;
  background: var(--light-gray);
}

.process h2 {
  text-align: center;
  color: var(--primary-green);
  margin-bottom: 40px;
  font-size: 2rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.process-step {
  background: var(--white);
  border-radius: 16px;
  padding: 25px 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-green);
}

.process-step img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
}

.process-step h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--primary-green);
}

.process-step p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .service-intro .grid-2 {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .service-intro .service-image {
    order: 1;
  }
  .service-intro .service-text {
    order: 2;
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  .pest-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .pest-item img {
    max-width: 80px;
    height: 80px;
  }
  .process-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .service-intro .service-text h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .pest-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pest-item img {
    max-width: 70px;
    height: 70px;
  }
}
/* ===== RODENT SIGNS SECTION ===== */
.signs {
  padding: 60px 0;
  background: var(--light-gray);
}

.signs h2 {
  text-align: center;
  color: var(--primary-green);
  font-size: 2rem;
  margin-bottom: 40px;
}

.signs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 20px;
}

.sign-item {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  padding: 20px;
}

.sign-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-green);
}

.sign-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.sign-item:hover img {
  transform: scale(1.02);
}

.sign-item p {
  color: var(--text-dark);
  font-weight: 500;
  margin: 0;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 992px) {
  .signs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 576px) {
  .signs-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .sign-item img {
    height: 200px;
  }
  .signs h2 {
    font-size: 1.6rem;
  }
}
/* ===== PLANS SECTION ===== */
.plans {
  padding: 60px 0;
  background: var(--light-gray);
}

.plans h2 {
  text-align: center;
  color: var(--primary-green);
  font-size: 2rem;
  margin-bottom: 40px;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.plan-card {
  background: var(--white);
  border-radius: 20px;
  padding: 30px 25px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.plan-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-green);
}

.plan-card i {
  font-size: 3rem;
  color: var(--primary-green);
  margin-bottom: 20px;
}

.plan-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.plan-card p {
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-grow: 1;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-green);
  margin: 15px 0;
}

.plan-card .btn {
  margin-top: auto;
  align-self: center;
  display: inline-block;
  padding: 10px 24px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}

.plan-card .btn-outline {
  background: transparent;
  border: 2px solid var(--primary-green);
  color: var(--primary-green);
}
.plan-card .btn-outline:hover {
  background: var(--primary-green);
  color: var(--white);
}

.plan-card .btn-primary {
  background: var(--primary-green);
  color: var(--white);
}
.plan-card .btn-primary:hover {
  background: var(--primary-green-dark);
  transform: translateY(-2px);
}

/* Featured card – slightly larger border and shadow */
.plan-card.featured {
  border: 2px solid var(--primary-green);
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}
.plan-card.featured:hover {
  transform: translateY(-5px) scale(1.02);
}

/* ===== BENEFITS SECTION ===== */
.benefits {
  padding: 60px 0;
  background: var(--white);
}

.benefits h2 {
  text-align: center;
  color: var(--primary-green);
  font-size: 2rem;
  margin-bottom: 40px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.benefit-item {
  text-align: center;
  padding: 20px;
  transition: transform 0.2s;
}

.benefit-item:hover {
  transform: translateY(-5px);
}

.benefit-item i {
  font-size: 2.5rem;
  color: var(--primary-green);
  margin-bottom: 15px;
  display: inline-block;
}

.benefit-item h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.benefit-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

/* ===== WHO CAN BENEFIT SECTION ===== */
.who-benefits {
  padding: 60px 0;
  background: var(--light-gray);
}

.who-benefits h2 {
  text-align: center;
  color: var(--primary-green);
  font-size: 2rem;
  margin-bottom: 40px;
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.who-item {
  background: var(--white);
  border-radius: 40px;
  padding: 12px 20px;
  text-align: center;
  font-weight: 600;
  color: var(--primary-green);
  border: 1px solid var(--border-color);
  transition: all 0.2s;
  box-shadow: var(--shadow-sm);
}

.who-item:hover {
  background: var(--primary-green);
  color: var(--white);
  border-color: var(--primary-green);
  transform: translateY(-2px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  .who-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .plans-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
  }
  .plan-card.featured {
    transform: scale(1);
  }
  .plan-card.featured:hover {
    transform: translateY(-5px);
  }
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .who-grid {
    grid-template-columns: 1fr;
  }
  .who-item {
    padding: 10px;
  }
}
/* ===== INSECTS SECTION ===== */
.insects {
  padding: 60px 0;
  background: var(--light-gray);
}

.insects h2 {
  text-align: center;
  color: var(--primary-green);
  font-size: 2rem;
  margin-bottom: 40px;
}

.insect-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.insect-item {
  background: var(--white);
  border-radius: 16px;
  padding: 25px 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.insect-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary-green);
  box-shadow: var(--shadow-md);
}

.insect-item img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin: 0 auto 15px;
  display: block;
}

.insect-item h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.insect-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .insect-item img {
    width: 80px;
    height: 80px;
  }
  .insects h2 {
    font-size: 1.6rem;
  }
}
/* ===== NAMPA CITY PAGE ===== */

/* City Intro Section */
.city-intro {
  padding: 60px 0;
  background: var(--white);
}

.city-intro .grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.city-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
}

.city-image img:hover {
  transform: scale(1.02);
}

.city-text h2 {
  color: var(--primary-green);
  font-size: 2rem;
  margin-bottom: 20px;
  line-height: 1.3;
}

.city-text p {
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.7;
}

/* Services Mini Grid */
.city-services {
  padding: 60px 0;
  background: var(--light-gray);
}

.city-services h2 {
  text-align: center;
  color: var(--primary-green);
  font-size: 2rem;
  margin-bottom: 40px;
}

.services-mini-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.service-mini {
  background: var(--white);
  border-radius: 40px;
  padding: 12px 20px;
  text-align: center;
  font-weight: 600;
  color: var(--primary-green);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.service-mini:hover {
  background: var(--primary-green);
  color: var(--white);
  border-color: var(--primary-green);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Image Highlight Section */
.image-highlight {
  padding: 60px 0;
  background: var(--white);
}

.full-width {
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
}

.full-width:hover {
  transform: scale(1.01);
}

/* Call to Action */
.city-cta {
  padding: 60px 0;
  background: var(--primary-green);
  text-align: center;
  color: var(--white);
}

.city-cta h2 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 20px;
}

.city-cta p {
  color: rgba(255,255,255,0.9);
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.city-cta .btn-primary {
  background: var(--white);
  color: var(--primary-green);
  border: none;
  padding: 12px 32px;
  font-weight: 600;
  border-radius: 40px;
  transition: all 0.2s;
  display: inline-block;
  text-decoration: none;
}

.city-cta .btn-primary:hover {
  background: var(--light-gray);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Responsive */
@media (max-width: 992px) {
  .city-intro .grid-2 {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .city-intro .city-image {
    order: 1;
  }
  .city-intro .city-text {
    order: 2;
  }
  .services-mini-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .city-intro {
    padding: 40px 0;
  }
  .city-text h2 {
    font-size: 1.8rem;
  }
  .city-cta h2 {
    font-size: 1.6rem;
  }
  .city-cta p {
    font-size: 1rem;
  }
  .services-mini-grid {
    grid-template-columns: 1fr;
    max-width: 280px;
  }
}
/* ===== VALLEY SERVICES SECTION ===== */
.valley-services-section {
    padding: 80px 0;
    background: var(--white);
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 50px;
}

.valley-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 20px;
}

.valley-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.valley-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-green);
}

.valley-card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.valley-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.valley-card:hover .valley-card-image img {
    transform: scale(1.05);
}

.valley-card-content {
    padding: 30px;
}

.valley-card-content h3 {
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.valley-card-content h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-green);
    border-radius: 2px;
}

.valley-card-content p {
    color: var(--text-muted);
    margin: 20px 0 15px;
    line-height: 1.6;
}

.valley-cities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 15px 0 25px;
}

.valley-cities span {
    background: var(--light-gray);
    color: var(--primary-green);
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
}

.valley-card-content .btn {
    margin-top: 5px;
    display: inline-block;
}

/* Responsive */
@media (max-width: 992px) {
    .valley-services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .valley-card-image {
        height: 200px;
    }
    .valley-card-content {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .valley-services-section {
        padding: 60px 0;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .valley-card-content h3 {
        font-size: 1.5rem;
    }
}
/* ===== EXPERTISE / TRUST SECTION ===== */
.expertise {
  padding: 80px 0;
  background: var(--light-gray);
}

.expertise h2 {
  text-align: center;
  color: var(--primary-green);
  font-size: 2rem;
  margin-bottom: 50px;
  position: relative;
}

.expertise h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--primary-green);
  border-radius: 2px;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.expertise-item {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 25px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.expertise-item:hover {
  transform: translateY(-8px);
  border-color: var(--primary-green);
  box-shadow: var(--shadow-lg);
}

.expertise-item i {
  font-size: 3rem;
  color: var(--primary-green);
  margin-bottom: 20px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.expertise-item:hover i {
  transform: scale(1.1);
}

.expertise-item h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.expertise-item p {
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .expertise-grid {
    gap: 25px;
  }
  .expertise-item {
    padding: 30px 20px;
  }
}

@media (max-width: 768px) {
  .expertise {
    padding: 60px 0;
  }
  .expertise-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
  }
  .expertise h2 {
    font-size: 1.8rem;
  }
}
/* ===== WHY CHOOSE SECTION (Treasure Valley) ===== */
.why-choose {
  padding: 80px 0;
  background: var(--white);
}

.why-choose h2 {
  text-align: center;
  color: var(--primary-green);
  font-size: 2rem;
  margin-bottom: 50px;
  position: relative;
}

.why-choose h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--primary-green);
  border-radius: 2px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: var(--light-gray);
  border-radius: 12px;
  padding: 20px 25px;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.why-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary-green);
  box-shadow: var(--shadow-md);
  background: var(--white);
}

.why-icon {
  font-size: 1.8rem;
  color: var(--primary-green);
  min-width: 50px;
  text-align: center;
  margin-top: 3px;
}

.why-item p {
  margin: 0;
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.5;
  font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .why-choose {
    padding: 60px 0;
  }
  .why-choose h2 {
    font-size: 1.8rem;
  }
  .why-item {
    padding: 15px 20px;
  }
  .why-icon {
    font-size: 1.5rem;
    min-width: 40px;
  }
}