 *,
 *::before,
 *::after {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
 }

 body {
   font-family: 'Segoe UI', Arial, sans-serif;
   color: #222;
   background: #fff;
 }

 a {
   color: inherit;
   text-decoration: none;
 }

 a:hover {
   color: #1a7a3c;
 }

 /* NAV */
 .site-header {
   background: #fff;
   border-bottom: 2px solid #e5e7eb;
   position: sticky;
   top: 0;
   z-index: 100;
 }

 .nav-top {
   background: #1a7a3c;
   color: #fff;
   display: flex;
   justify-content: flex-end;
   gap: 16px;
   padding: 6px 24px;
   font-size: 14px;
 }

 .nav-top a {
   color: #fff;
   font-weight: 600;
 }

 .nav-main {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 12px 24px;
   max-width: 1200px;
   margin: 0 auto;
 }

 .nav-logo {
   display: flex;
   align-items: center;
   gap: 12px;
   font-size: 22px;
   font-weight: 800;
   color: #1a7a3c;
   letter-spacing: -0.5px;
 }

 .nav-logo img {
   max-height: 40px;
   width: auto;
   display: block;
 }

 .nav-logo span {
   color: #222;
   font-size: 13px;
   font-weight: 600;
   display: block;
 }

 .nav-links {
   display: flex;
   gap: 24px;
   align-items: center;
   list-style: none;
 }

 .nav-links a {
   font-weight: 500;
   font-size: 15px;
   color: #333;
   transition: color 0.2s;
 }

 .nav-links a:hover,
 .nav-links a.active {
   color: #1a7a3c;
 }

 .nav-cta {
   background: #1a7a3c;
   color: #fff !important;
   padding: 8px 18px;
   border-radius: 6px;
   font-weight: 700;
 }

 .nav-cta:hover {
   background: #155f30;
   color: #fff !important;
 }

 .nav-toggle {
   display: none;
   border: none;
   background: transparent;
   color: #1a7a3c;
   font-size: 24px;
   cursor: pointer;
 }

 .nav-toggle:focus {
   outline: 2px solid #1a7a3c;
   outline-offset: 2px;
 }

 /* carosel */
 .slider {
   position: relative;
   width: 100%;
   height: 350px;
   overflow: hidden;
   border-radius: 20px;
 }

 .slide {
   position: absolute;
   width: 100%;
   height: 100%;
   object-fit: cover;
   opacity: 0;
   transition: 1s;
 }

 .slide.active {
   opacity: 1;
 }

 /* Mobile optimizations for carousel */
 @media (max-width: 768px) {
   .slider {
     -webkit-touch-callout: none;
     user-select: none;
     -webkit-user-select: none;
   }

   .slide {
     transition: opacity 0.8s ease-in-out;
   }
 }

 /* Touch-friendly improvements */
 @media (hover: none) and (pointer: coarse) {

   a,
   button,
   .btn {
     min-height: 44px;
     min-width: 44px;
     padding: 12px 16px;
   }
 }


 /* FOOTER */
 footer {
   background: #111;
   color: #ccc;
   padding: 48px 24px 24px;
 }

 .footer-inner {
   max-width: 1200px;
   margin: 0 auto;
   display: grid;
   grid-template-columns: 2fr 1fr 1fr;
   gap: 40px;
 }

 footer h4 {
   color: #fff;
   font-size: 15px;
   margin-bottom: 14px;
 }

 footer ul {
   list-style: none;
 }

 footer ul li {
   margin-bottom: 8px;
   font-size: 14px;
 }

 footer ul a {
   color: #bbb;
 }

 footer ul a:hover {
   color: #fff;
 }

 .footer-brand {
   font-size: 22px;
   font-weight: 800;
   color: #fff;
   margin-bottom: 8px;
 }

 .footer-tagline {
   font-size: 13px;
   color: #999;
   margin-bottom: 16px;
 }

 .footer-btns {
   display: flex;
   gap: 10px;
   flex-wrap: wrap;
 }

 .footer-btns a {
   background: #1a7a3c;
   color: #fff;
   padding: 8px 16px;
   border-radius: 6px;
   font-size: 13px;
   font-weight: 600;
 }

 .footer-copyright {
   text-align: center;
   margin-top: 32px;
   padding-top: 16px;
   border-top: 1px solid #333;
   font-size: 13px;
   color: #777;
 }

 .footer-copyright a {
   color: #aaa;
 }

 /* Social icons */

 .footer-btns {
   display: flex;
   gap: 10px;
   align-items: center;
   flex-wrap: wrap;
 }

 .footer-btns a {
   text-decoration: none;
 }

 .footer-btns .fa-facebook-f,
 .footer-btns .fa-instagram,
 .footer-btns .fa-youtube,
 .footer-btns .fa-x-twitter {
   font-size: 20px;
 }

 /* SECTIONS */
 section {
   padding: 64px 24px;
 }

 .container {
   max-width: 1200px;
   margin: 0 auto;
 }

 .section-label {
   font-size: 13px;
   font-weight: 700;
   color: #1a7a3c;
   text-transform: uppercase;
   letter-spacing: 1px;
   margin-bottom: 8px;
 }

 h1 {
   font-size: clamp(28px, 4vw, 48px);
   font-weight: 900;
   line-height: 1.2;
 }

 h2 {
   font-size: clamp(22px, 3vw, 36px);
   font-weight: 800;
   margin-bottom: 16px;
 }

 h3 {
   font-size: 18px;
   font-weight: 700;
   margin-bottom: 8px;
 }

 p {
   line-height: 1.7;
   color: #444;
 }

 .btn {
   display: inline-block;
   padding: 12px 24px;
   border-radius: 8px;
   font-weight: 700;
   font-size: 15px;
   cursor: pointer;
   transition: 0.2s;
 }

 .btn-primary {
   background: #1a7a3c;
   color: #fff;
 }

 .btn-primary:hover {
   background: #155f30;
   color: #fff;
 }

 .btn-outline {
   border: 2px solid #1a7a3c;
   color: #1a7a3c;
 }

 .btn-outline:hover {
   background: #1a7a3c;
   color: #fff;
 }

 .btn-group {
   display: flex;
   gap: 12px;
   flex-wrap: wrap;
   margin-top: 24px;
 }

 img,
 iframe,
 embed,
 object,
 video {
   max-width: 100%;
   height: auto;
 }

 body {
   min-height: 100vh;
   overflow-x: hidden;
 }

 table {
   width: 100%;
   border-collapse: collapse;
   font-size: 14px;
 }

 th {
   background: #1a7a3c;
   color: #fff;
   padding: 12px 14px;
   text-align: left;
 }

 td {
   padding: 10px 14px;
   border-bottom: 1px solid #e5e7eb;
 }

 tr:nth-child(even) td {
   background: #f9fafb;
 }

 .badge {
   display: inline-block;
   background: #dcfce7;
   color: #166534;
   font-size: 11px;
   font-weight: 700;
   padding: 2px 8px;
   border-radius: 20px;
 }

 .responsive-grid-2 {
   display: grid;
   grid-template-columns: 1.1fr 0.9fr;
   gap: 40px;
   align-items: center;
 }

 .responsive-grid-2>* {
   min-width: 0;
 }

 .container iframe {
   width: 100%;
   min-height: 300px;
 }

 @media (max-width: 900px) {
   .responsive-grid-2 {
     grid-template-columns: 1fr !important;
   }

   .btn-group {
     flex-direction: column;
     align-items: stretch;
   }

   .btn-group .btn {
     width: 100%;
   }
 }

 @media (max-width: 600px) {
   section {
     padding: 40px 16px;
   }

   .btn {
     width: 100%;
   }

   .container {
     padding: 0;
   }

   .btn-group {
     gap: 12px;
   }

   .nav-main {
     padding: 12px 16px;
   }
 }

 @media (max-width: 768px) {
   .footer-inner {
     grid-template-columns: 1fr;
   }

   .nav-main {
     flex-wrap: wrap;
     padding: 12px 16px;
     position: relative;
   }

   .nav-logo {
     font-size: 18px;
     gap: 8px;
   }

   .nav-links {
     display: none;
     position: absolute;
     top: 100%;
     right: 16px;
     left: 16px;
     background: #fff;
     flex-direction: column;
     align-items: stretch;
     gap: 0;
     margin-top: 12px;
     padding: 10px 0;
     border: 1px solid #e5e7eb;
     border-radius: 14px;
     box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
     z-index: 90;
   }

   .nav-links.open {
     display: flex;
   }

   .nav-links li {
     width: 100%;
   }

   .nav-links a {
     display: block;
     width: 100%;
     padding: 12px 18px;
   }

   .nav-links a.nav-cta {
     margin: 8px 18px 0;
     width: auto;
   }

   .nav-toggle {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     width: 44px;
     height: 44px;
     border: 1px solid rgba(26, 122, 60, 0.25);
     border-radius: 12px;
     background: #fff;
   }

   .nav-top {
     justify-content: center;
     flex-wrap: wrap;
     padding: 10px 16px;
   }
 }

 /* ========== HERO SECTION MOBILE RESPONSIVE ========== */
 @media (max-width: 900px) {

   /* Hero container responsive */
   .hero-container {
     gap: 24px !important;
   }

   /* Hero text section */
   .hero-text {
     min-width: unset !important;
   }

   /* Hero carousel */
   .hero-carousel {
     min-width: unset !important;
   }

   .slider {
     height: 280px;
   }
 }

 @media (max-width: 768px) {

   /* Hero section padding reduced */
   section:first-of-type {
     padding: 60px 16px 48px !important;
   }

   /* Stack hero content vertically */
   .hero-container {
     flex-direction: column !important;
     gap: 32px !important;
   }

   /* Hero title responsive */
   .hero-container h1 {
     font-size: clamp(24px, 5vw, 36px) !important;
     line-height: 1.3 !important;
   }

   /* Hero text section */
   .hero-text {
     order: 1;
   }

   /* Hero carousel */
   .hero-carousel {
     order: 2;
     width: 100%;
   }

   .slider {
     height: 240px;
     border-radius: 16px;
   }

   /* Hero tagline responsive */
   .hero-container p {
     font-size: 16px !important;
   }

   /* Hero buttons full width on mobile */
   .hero-buttons {
     display: flex !important;
     flex-direction: column !important;
     gap: 12px !important;
     flex-wrap: nowrap !important;
   }

   .hero-buttons a {
     width: 100% !important;
     text-align: center !important;
     padding: 14px 20px !important;
   }
 }

 @media (max-width: 600px) {

   /* Hero section minimum padding */
   section:first-of-type {
     padding: 48px 12px 40px !important;
   }

   .slider {
     height: 200px;
     border-radius: 12px;
   }

   /* Hero title very small screens */
   .hero-container h1 {
     font-size: clamp(20px, 6vw, 28px) !important;
     line-height: 1.25 !important;
     margin-bottom: 12px !important;
   }

   /* Hero subtitle/description */
   .hero-container p:nth-of-type(2) {
     font-size: 14px !important;
     margin-bottom: 12px !important;
   }

   .hero-container p:nth-of-type(3) {
     font-size: 13px !important;
     margin-bottom: 20px !important;
   }

   /* Hero section label responsive */
   .hero-container p:first-child {
     font-size: 11px !important;
     letter-spacing: 0.5px !important;
   }

   /* Hero buttons stacked */
   .hero-buttons a {
     padding: 12px 16px !important;
     font-size: 14px !important;
   }
 }

 /* ========== ABOUT STATS2 SECTION MOBILE RESPONSIVE ========== */
 @media (max-width: 900px) {

   /* About section responsive grid */
   .about-container {
     grid-template-columns: 1fr !important;
     gap: 40px !important;
   }

   /* Stats grid remains 2 columns */
   .stats-grid {
     grid-template-columns: repeat(2, 1fr) !important;
     gap: 16px !important;
   }

   .stats-card {
     padding: 20px !important;
   }

   .stats-card-icon {
     font-size: 24px !important;
     margin-bottom: 8px !important;
   }

   .stats-card-number {
     font-size: 24px !important;
   }

   .stats-card-label {
     font-size: 12px !important;
   }
 }

 @media (max-width: 768px) {

   /* About section responsive */
   .about-container {
     grid-template-columns: 1fr !important;
     gap: 32px !important;
   }

   /* About text */
   .about-text h2 {
     font-size: clamp(22px, 4vw, 32px) !important;
     margin-bottom: 12px !important;
   }

   .about-text p {
     font-size: 15px !important;
     line-height: 1.6 !important;
   }

   /* Info boxes responsive */
   .about-info-boxes {
     display: grid !important;
     grid-template-columns: 1fr !important;
     gap: 12px !important;
     margin-bottom: 16px !important;
   }

   .about-info-box {
     padding: 12px !important;
     border-radius: 6px !important;
   }

   .about-info-box strong {
     font-size: 14px !important;
   }

   .about-info-box span {
     font-size: 12px !important;
   }

   /* Stats cards */
   .stats-grid {
     grid-template-columns: repeat(2, 1fr) !important;
     gap: 12px !important;
   }

   .stats-card {
     padding: 16px !important;
     border-radius: 10px !important;
   }

   .stats-card-icon {
     font-size: 20px !important;
     margin-bottom: 6px !important;
   }

   .stats-card-number {
     font-size: 20px !important;
     margin: 4px 0 !important;
   }

   .stats-card-label {
     font-size: 11px !important;
     line-height: 1.3 !important;
   }
 }

 @media (max-width: 600px) {

   /* About section very small screens */
   .about-container {
     gap: 24px !important;
   }

   /* About text responsive */
   .about-text h2 {
     font-size: clamp(18px, 5vw, 26px) !important;
     margin-bottom: 16px !important;
   }

   .about-text p {
     font-size: 14px !important;
     line-height: 1.5 !important;
     margin-bottom: 12px !important;
   }

   /* Info boxes single column */
   .about-info-boxes {
     grid-template-columns: 1fr !important;
     gap: 10px !important;
   }

   .about-info-box {
     padding: 10px !important;
     font-size: 12px !important;
   }

   .about-info-box strong {
     font-size: 13px !important;
   }

   .about-info-box span {
     font-size: 11px !important;
     display: block !important;
     margin-top: 4px !important;
   }

   /* Stats cards single column or 2 columns */
   .stats-grid {
     grid-template-columns: 1fr 1fr !important;
     gap: 10px !important;
   }

   .stats-card {
     padding: 14px !important;
     border-radius: 8px !important;
   }

   .stats-card-icon {
     font-size: 18px !important;
     margin-bottom: 4px !important;
   }

   .stats-card-number {
     font-size: 18px !important;
     font-weight: 900 !important;
     margin: 2px 0 !important;
   }

   .stats-card-label {
     font-size: 10px !important;
     line-height: 1.2 !important;
   }

   /* About buttons responsive */
   .btn-group {
     flex-direction: column !important;
     gap: 10px !important;
   }

   .btn-group a {
     width: 100% !important;
     padding: 12px 16px !important;
     font-size: 14px !important;
     text-align: center !important;
   }
 }

 @media (max-width: 480px) {

   /* Ultra small screens */
   .about-text h2 {
     font-size: clamp(16px, 4vw, 22px) !important;
   }

   .about-text p {
     font-size: 13px !important;
   }

   .stats-grid {
     grid-template-columns: 1fr !important;
     gap: 8px !important;
   }

   .stats-card {
     padding: 12px !important;
   }

   .stats-card-icon {
     font-size: 16px !important;
   }

   .stats-card-number {
     font-size: 16px !important;
   }

   .stats-card-label {
     font-size: 9px !important;
   }
 }


 /* WHATSAPP */

 .whatsapp {
   position: fixed;
   bottom: 20px;
   right: 20px;
   background: #25D366;
   color: white;
   width: 56px;
   height: 56px;
   display: flex;
   align-items: center;
   justify-content: center;
   border-radius: 50%;
   text-decoration: none;
   box-shadow: 0 8px 20px rgba(0, 0, 0, .2);
   z-index: 999;
 }

 .whatsapp svg {
   width: 28px;
   height: 28px;
 }

/* ========== LOCATION PAGE MOBILE RESPONSIVE ========== */

/* Mobile: Hero Section - Location */
@media (max-width: 900px) {
  .location-hero {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
    align-items: stretch !important;
  }

  .location-hero h1 {
    font-size: clamp(24px, 5vw, 36px) !important;
    margin-bottom: 16px !important;
  }

  .location-hero p {
    font-size: 15px !important;
  }

  .location-info-box {
    padding: 20px !important;
  }
}

@media (max-width: 768px) {
  /* Location Hero Section */
  section:first-of-type[style*="background: linear-gradient"] {
    padding: 60px 16px 48px !important;
  }

  .location-hero {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .location-hero h1 {
    font-size: clamp(22px, 5vw, 32px) !important;
    line-height: 1.3 !important;
    margin-bottom: 14px !important;
  }

  .location-hero p {
    font-size: 14px !important;
    line-height: 1.6 !important;
    margin-bottom: 12px !important;
  }

  .location-hero > div:first-child {
    order: 1;
  }

  .location-hero > div:last-child {
    order: 2;
    background: rgba(26, 122, 60, 0.08) !important;
    padding: 20px !important;
    border-radius: 16px !important;
  }

  /* Location Details Cards */
  .location-details-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .location-detail-item {
    background: rgba(255, 255, 255, 0.05) !important;
    padding: 14px !important;
    border-radius: 12px !important;
  }

  .location-detail-item strong {
    font-size: 14px !important;
  }

  .location-detail-item p {
    font-size: 13px !important;
    margin-top: 6px !important;
  }

  /* How to Reach Section */
  .location-reach-section {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .section-label {
    font-size: 12px !important;
    margin-bottom: 6px !important;
  }

  h2 {
    font-size: clamp(20px, 4vw, 28px) !important;
    margin-bottom: 12px !important;
  }

  .location-reach-section ul {
    list-style: disc inside !important;
    padding-left: 0 !important;
    margin-left: 16px !important;
    font-size: 13px !important;
  }

  .location-reach-section ul li {
    margin-bottom: 8px !important;
  }

  /* Map Responsiveness */
  .location-reach-section iframe {
    min-height: 280px !important;
    border-radius: 12px !important;
  }

  /* Benefits Grid - Mobile */
  .benefits-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .benefit-card {
    padding: 20px !important;
    border-radius: 14px !important;
    border: 1px solid #e5e7eb !important;
  }

  .benefit-card > div:first-child {
    font-size: 28px !important;
    margin-bottom: 10px !important;
  }

  .benefit-card h3 {
    font-size: 16px !important;
    margin-bottom: 6px !important;
  }

  .benefit-card p {
    font-size: 13px !important;
    margin-top: 8px !important;
    color: #666 !important;
  }

  /* Service Areas Grid - Mobile */
  .service-areas-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    margin-top: 24px !important;
  }

  .service-area-badge {
    padding: 14px 12px !important;
    border-radius: 10px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    text-align: center !important;
  }

  /* CTA Section - Location */
  .location-cta-section {
    padding: 48px 16px !important;
    text-align: center !important;
  }

  .location-cta-section h2 {
    font-size: clamp(20px, 4vw, 28px) !important;
    margin-bottom: 10px !important;
  }

  .location-cta-section p {
    font-size: 14px !important;
    margin-bottom: 16px !important;
  }
}

@media (max-width: 600px) {
  /* Location Hero - Very Small Screens */
  section:first-of-type[style*="background: linear-gradient"] {
    padding: 48px 12px 40px !important;
  }

  .location-hero h1 {
    font-size: clamp(18px, 5vw, 26px) !important;
    line-height: 1.25 !important;
    margin-bottom: 12px !important;
  }

  .location-hero p {
    font-size: 13px !important;
    margin-bottom: 10px !important;
  }

  /* Buttons Full Width */
  .location-hero > div:first-child .btn-group {
    flex-direction: column !important;
    gap: 10px !important;
    margin-top: 16px !important;
  }

  .location-hero > div:first-child .btn {
    width: 100% !important;
    text-align: center !important;
    padding: 12px 16px !important;
    font-size: 14px !important;
  }

  .location-hero > div:last-child {
    padding: 16px !important;
    border-radius: 12px !important;
  }

  .location-detail-item {
    padding: 12px !important;
  }

  .location-detail-item strong {
    font-size: 13px !important;
  }

  .location-detail-item p {
    font-size: 12px !important;
  }

  /* Map Height for Mobile */
  .location-reach-section iframe {
    min-height: 240px !important;
  }

  .location-reach-section ul {
    font-size: 12px !important;
    margin-left: 14px !important;
  }

  .location-reach-section ul li {
    margin-bottom: 6px !important;
  }

  /* Service Areas - 2 Column on Small */
  .service-areas-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }

  .service-area-badge {
    padding: 12px 10px !important;
    font-size: 11px !important;
    border-radius: 8px !important;
  }

  /* Buttons in CTA Section */
  .location-cta-section .btn {
    width: 100% !important;
    margin-bottom: 8px !important;
  }

  .location-cta-section .btn-group {
    flex-direction: column !important;
  }

  .location-cta-section h2 {
    font-size: clamp(18px, 4vw, 24px) !important;
    margin-bottom: 8px !important;
  }

  .location-cta-section p {
    font-size: 13px !important;
  }
}

@media (max-width: 480px) {
  /* Extra Small Screens */
  section {
    padding: 32px 12px !important;
  }

  h1 {
    font-size: clamp(16px, 5vw, 24px) !important;
  }

  h2 {
    font-size: clamp(16px, 4vw, 22px) !important;
  }

  .location-hero h1 {
    font-size: clamp(16px, 5vw, 22px) !important;
  }

  .service-areas-grid {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }

  .location-detail-item {
    padding: 10px !important;
  }

  .location-reach-section iframe {
    min-height: 200px !important;
  }
}