:root {
  /* Brand Colors */
  --primary-color:#ffaf37; /* Deep Navy Blue */
  --primary-light: #004d99;
  --secondary-color: #ff9900; /* Logistics Orange/Gold */
  --secondary-hover: #e68a00;
  --text-dark: #1a1a1a;
  --text-light: #666666;
  --white: #ffffff;
  --light-gray: #f4f6f9;
  --border-color: #e1e4e8;
  --success-color: #25d366; /* WhatsApp Green */

  /* Typography */
  --font-main: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Poppins', sans-serif;

  /* Spacing */
  --container-width: 1200px;
  --header-height: 80px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

p {
  text-align: justify;
}

body {
  font-family: var(--font-main);
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Utilities */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 5px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  border: none;
  gap: 8px;
}

.btn-primary {
  background-color: var(--secondary-color);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--secondary-hover);
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
}

.btn-outline:hover {
  background-color: var(--white);
  color: var(--primary-color);
}

.btn-whatsapp {
    background-color: var(--success-color);
    color: white;
}
.btn-whatsapp:hover {
    background-color: #128c7e;
}

.section-padding {
  padding: 60px 0;
}

.text-center {
  text-align: center;
}

/* Header */
.header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  height: var(--header-height);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header .container {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  padding-top: 5px;
  padding-bottom: 5px;
}

.logo img {
  height: 50px;
  width: auto;
}

.nav-menu {
  display: flex;
  gap: 30px;
}

.nav-link {
  font-weight: 500;
  color: var(--text-dark);
}

.nav-link:hover, .nav-link.active {
  color: var(--secondary-color);
}

.header-actions {
  display: flex;
  gap: 15px;
  align-items: center;
}

.mobile-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--primary-color);
  width: 40px;
  height: 40px;
  display: none; /* Controlled by media query */
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-toggle:hover {
    color: var(--secondary-color);
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 51, 102, 0.8), rgba(0, 51, 102, 0.6)), url('../images/hero_branded.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 160px 0 120px; /* More padding top for visual balance */
  text-align: center;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 40px;
  opacity: 0.95;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  border-top: 4px solid var(--secondary-color);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 20px;
}

.service-link {
    margin-top: auto;
    color: var(--primary-color);
    font-weight: 600;
    display: inline-block;
}

/* Why Choose Us / Trust Badges */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}
.trust-item {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}
.trust-icon {
    font-size: 32px;
    margin-bottom: 10px;
    display: inline-block;
}

/* Testimonials */
.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

/* Quote Form Section */
.quote-section {
    background-color: #0a4785   ;
    color: white;
}
.quote-form-container {
    background: white;
    padding: 40px;
    border-radius: 10px;
    color: var(--text-dark);
}
.form-group {
    margin-bottom: 20px;
}
.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Footer Content */
.footer {
  background-color: #0b1c2e;
  color: #adb5bd;
  
}
.footer h3 {
  color: var(--white);
  margin-bottom: 25px;
  font-size: 1.2rem;
}
.footer a {
    color: #adb5bd;
}
.footer a:hover {
    color: var(--secondary-color);
}
.footer-links li {
  margin-bottom: 12px;
}
/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: bold;
    font-size: 18px;
}

.social-icon:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateX(-50%) translateY(0);
}


/* =========================================
   LOCATIONS PAGE REDESIGN
   ========================================= */

/* Locations Hero */
.locations-hero {
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.85) 0%, rgba(0, 77, 153, 0.7) 100%), 
                url('../images/hero_branded.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0 80px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.locations-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    
}

.locations-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.locations-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Generic Page Hero (reusable for all other pages) */
.page-hero {
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.95) 0%, rgb(0 77 153 / 43%) 100%), url(../images/hero_branded.jpg);
    background-size: cover;
    background-position: center;
    padding: 100px 0 80px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Specific Location Hero for individual city pages */
.location-hero {
    background: linear-gradient(rgba(0, 51, 102, 0.8), rgba(0, 51, 102, 0.6)), url('../images/hero_branded.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 160px 0 120px;
    text-align: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("");
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Location Group Styling */
.location-group {
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.05);
}

.location-group h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.location-group h2::before {
    content: '';
    display: block;
    width: 6px;
    height: 30px;
    background: var(--secondary-color);
    border-radius: 3px;
}

/* Area Grid & Cards */
.area-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.area-card {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    padding: 15px 20px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.area-card:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-color: var(--secondary-color);
    color: var(--primary-color);
}

.area-card::before {
    content: '📍';
    margin-right: 10px;
    font-size: 1.1rem;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.area-card:hover::before {
    filter: grayscale(0%);
}

/* =========================================
   CITY BOXES (Locations Page)
   ========================================= */

.main-container {
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 40px 20px;
}





.box-header h2 a:hover {
    opacity: 0.9;
}

.list-body {
    padding: 25px;
}

.location-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.location-list li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.location-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.location-list li a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s, padding-left 0.3s;
    display: inline-block;
}

.location-list li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}
.map-container {
    width: 100%;
    height: 250px;
    background: #333;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 20px;
}

/* Mobile Sticky Footer */
.mobile-sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    display: flex;
    z-index: 1000;
    display: none; /* Hidden by default, shown on mobile via media query */
}

.sticky-btn {
    flex: 1;
    padding: 12px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-right: 1px solid #eee;
}

.sticky-btn:last-child {
    border-right: none;
}

.btn-call { color: var(--primary-color); background: #fff; }
.btn-whatsapp { color: #25D366; background: #fff; }
.btn-quote { background: var(--secondary-color); color: white; }

/* Floating Button */
.floating-actions {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
}
.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    font-size: 28px;
    transition: transform 0.3s;
    color: white;
}
.float-btn:hover {
    transform: scale(1.1);
}
.float-whatsapp {
    background-color: #25d366;
}
.float-call {
    background-color: var(--secondary-color);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    display: none;
  }
  .nav-menu.active {
    display: flex;
  }
  .mobile-toggle {
    display: flex;
  }
  .header-actions {
      display: flex;
  }
  .header-actions .btn {
      display: none; /* Hide Quote button on very small mobile if needed, or keep it */
  }
  @media (min-width: 480px) {
      .header-actions .btn {
          display: inline-block;
      }
  }
  .form-row {
      grid-template-columns: 1fr;
  }
  
  /* Footer Mobile Adjustments */
  .footer-container {
      flex-direction: column;
      gap: 40px;
  }
  .footer {
      text-align: center; /* Center align for better mobile look */
  }
  .footer .social-icons {
      justify-content: center;
  }
}

/* =========================================
   NEW FOOTER STYLES (User Provided V2)
   ========================================= */

.footer {
--footer-bg: #003366;
    --footer-accent: #ff9900;
    --footer-text: #fff;
    --footer-text-light: #d1d1d1;
    
    background-color: var(--footer-bg);
    color: var(--footer-text);
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 60px 20px 30px;
    max-width: 1200px;
    margin: auto;
}

.footer-column {
    flex: 1 1 200px;
    min-width: 200px;
}

.footer-column h3 {
    margin-bottom: 20px;
    font-size: 20px;
    color: var(--footer-accent);
    position: relative;
}

/* Default: hide on small screens */
.footer-column h3::after {
    content: '';
    display: none;
}

/* Show on desktop (example: screens wider than 768px) */
@media (min-width: 768px) {
    .footer-column h3::after {
        display: block;
        width: 40px;
        height: 2px;
        background: var(--footer-accent);
        margin-top: 5px;
    }
}


.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    text-decoration: none;
    color: var(--footer-text-light);
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: var(--footer-accent);
}

.footer-column.about .logo {
    font-size: 28px;
    font-weight: 800;
    color: var(--footer-text);
    margin-bottom: 15px;
    display: inline-block;
}

.footer-column.about .logo span {
    color: var(--footer-accent);
}

.footer-column.about p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.social-icons a {
    display: inline-block;
    margin-right: 10px;
    color: var(--footer-text);
    font-size: 16px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--footer-accent);
}

.footer-column.contact p {
    margin: 5px 0 0;
    color: var(--footer-text-light);
    font-size: 14px;
}

.footer-column.contact a {
    color: var(--footer-accent);
    text-decoration: none;
    font-weight: bold;
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    border-top: 1px solid #ffffff;
    font-size: 14px;
    color: var(--footer-text-light);
    margin-top: 20px;
}

.footer-bottom a {
    color: var(--footer-accent);
    text-decoration: none;
    margin: 0 5px;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* New Footer Class Names */
.footer-about .footer-logo {
    display: inline-block;
    margin-bottom: 15px;
}

.footer-about .footer-logo img {
    height: 48px;
    width: auto;
        border-radius: 4px;
}

.footer-about p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: var(--footer-text-light);
}

.footer-social a {
    display: inline-block;
    margin-right: 10px;
    color: var(--footer-text);
    font-size: 16px;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: var(--footer-accent);
}

.footer-contact p {
    margin: 5px 0 0;
    color: var(--footer-text-light);
    font-size: 14px;
}

.footer-contact a {
    color: var(--footer-accent);
    text-decoration: none;
    font-weight: bold;
}

.footer-locations ul li a,
.footer-menu ul li a,
.footer-services ul li a {
    color: var(--footer-text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-locations ul li a:hover,
.footer-menu ul li a:hover,
.footer-services ul li a:hover {
    color: var(--footer-accent);
}

/* Footer responsive for 5 columns */
@media (max-width: 1024px) {
    .footer-container {
        gap: 30px;
    }
    .footer-column {
        flex: 1 1 180px;
        min-width: 180px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .footer-column {
        min-width: 100%;
    }
    .footer-social {
        justify-content: center;
    }
}
:root {
  --primary-color: #1d4ed8;
  --text-light: #6b7280;
  --border-color: #e5e7eb;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #f9fafb;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

h1 {
  text-align: center;
  margin-bottom: 40px;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.location-box {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  height: 360px;
  display: flex;
  flex-direction: column;
}

.location-box h3 {
  margin: 0;
  padding: 15px;
  border-bottom: 1px solid var(--border-color);
  font-size: 16px;
  font-weight: bold;
}

.location-box ul {
  list-style: none;
  margin: 0;
  padding: 15px;
  overflow-y: auto;
}

.location-box li {
  margin-bottom: 10px;
}

.location-box a {
  text-decoration: none;
  color: var(--text-light);
  font-size: 14px;
}

.location-box a:hover {
  color: var(--primary-color);
}

/* Responsive */
@media (max-width: 992px) {
  .location-grid {
    grid-template-columns: 1fr;
  }
}
        /* --- Page Reset --- */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

      

        /* --- Main Container --- */
        .main-container {
            overflow-x: auto; 
            padding-bottom: 20px;
        }

        .box-header h2 {
            font-size: 18px;
            margin: 0;
        }

        .box-header a {
            text-decoration: none;
            color: #0056b3;
            font-weight: bold;
        }

        /* --- Scrollable List Body --- */
        .list-body {
            padding: 10px;
            overflow-y: auto; /* VERTICAL SCROLL */
            flex-grow: 1;
        }

        /* Scrollbar Styling */
        .list-body::-webkit-scrollbar {
            width: 8px;
        }
        .list-body::-webkit-scrollbar-track {
            background: #f1f1f1;
        }
        .list-body::-webkit-scrollbar-thumb {
            background: #888;
            border-radius: 4px;
        }
        .list-body::-webkit-scrollbar-thumb:hover {
            background: #555;
        }

        /* --- List Items --- */
        .location-list {
            list-style: none;
        }

        .location-list li {
            margin-bottom: 5px;
        }

        .location-list a {
            display: block;
            padding: 8px 10px;
            text-decoration: none;
            color: #444;
            font-size: 14px;
            border-bottom: 1px solid #eee;
            transition: all 0.2s;
        }

        .location-list a:hover {
            background-color: #0056b3;
            color: white;
            padding-left: 15px; 
        }
        /* --- CSS Variables & Reset --- */
        :root {
            --primary-color: #0f2b46; /* Deep Navy Blue */
            --accent-color: #ff6b35;  /* Vibrant Orange */
            --text-dark: #1a1a1a;
            --text-light: #666666;
            --light-bg: #f4f7f6;
            --white: #ffffff;
            --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
            --shadow-md: 0 10px 20px rgba(0,0,0,0.08);
            --radius: 12px;
            --transition: all 0.3s ease;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            background-color: var(--white);
        }

        /* --- Layout Utilities --- */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-padding {
            padding: 10px 10px;
        }

        .text-center {
            text-align: center;
        }

        /* --- Typography --- */
        h2 {
            font-size: 2.2rem;
            color:#ffaf37;
            margin-bottom: 15px;
            font-weight: 700;
            position: relative;
            display: inline-block;
            padding-top: 15px;
        }

        h2::after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            
            margin: 10px auto 0;
            border-radius: 2px;
        }

        .section-subtitle {
            color: var(--text-light);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto 50px auto;
        }

        /* --- Button Styles --- */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 28px;
            font-weight: 600;
            text-decoration: none;
            border-radius: 50px; /* Pill shape */
            transition: var(--transition);
            font-size: 1rem;
            gap: 8px;
        }

        .btn-outline {
            background: transparent;
            border: 2px solid #e0e0e0;
            color: #ffffff;
        }

        .btn-outline:hover {
            border-color: var(--accent-color);
            color: var(--accent-color);
            background: rgba(255, 255, 255, 0.05);
            transform: translateY(-3px);
        }

        .btn-primary {
            background-color: var(--accent-color);
            border: 2px solid var(--accent-color);
            color: var(--white);
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
        }

        .btn-primary:hover {
            background-color: #e55a2b;
            border-color: #e55a2b;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
        }

        /* --- Locations Section --- */
        .locations-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
            align-items: center;
        }

        .location-card {
            background: var(--white);
            border: 1px solid #eee;
            border-radius: var(--radius);
            padding: 15px 30px;
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: var(--transition);
            min-width: 160px;
            justify-content: center;
        }

        .location-card i {
            color: var(--accent-color);
        }

        .location-card:hover {
            border-color: var(--accent-color);
            background-color: #fff8f5;
            transform: translateY(-5px);
            box-shadow: var(--shadow-sm);
            color: var(--accent-color);
        }

        /* --- Testimonials Section --- */
        .testimonials-section {
            background-color: var(--light-bg);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }

        .testimonial-card {
            background: var(--white);
            padding: 40px 30px;
            border-radius: var(--radius);
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-md);
        }

        /* Decorative Quote Icon */
        .quote-icon {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 4rem;
            color: #f0f0f0;
            font-family: serif;
            line-height: 1;
            z-index: 0;
            pointer-events: none;
        }

        .testimonial-text {
            font-style: italic;
            color: var(--text-dark);
            font-size: 1.05rem;
            position: relative;
            z-index: 1;
            margin-bottom: 30px;
        }

        .customer-info {
            display: flex;
            align-items: center;
            gap: 15px;
            border-top: 1px solid #eee;
            padding-top: 20px;
            position: relative;
            z-index: 1;
        }

        .avatar {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--accent-color);
        }

        .customer-details h4 {
            font-size: 1rem;
            margin-bottom: 4px;
            color: var(--primary-color);
        }

        .customer-details span {
            font-size: 0.85rem;
            color: var(--text-light);
            display: flex;
            align-items: center;
            gap: 5px;
        }

        /* Star Rating */
        .stars {
            color: #ffc107;
            font-size: 0.9rem;
            margin-bottom: 10px;
        }

        /* --- Responsive Tweaks --- */
        @media (max-width: 768px) {
            h2 {
                font-size: 1.8rem;
            }
            .section-padding {
                padding: 60px 0;
            }
            .locations-grid {
                flex-direction: column;
                width: 100%;
            }
            .location-card, .btn {
                width: 100%;
            }
        }
        .svc-heading-center {
    text-align: center;
    margin-bottom: 10px;
        
}

.svc-text-center {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
    color: #555;
}
/* =========================
   Responsive Container
   ========================= */
/* =========================
   Responsive Container
   ========================= */
/* =========================
   Responsive Container
   ========================= */
.locations-wrapper {
    display: flex;
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
    gap: 20px;
    justify-content: center; /* Centered for balance */
    align-items: flex-start; /* Align tops */
    /* padding-bottom: 30px; */
}

/* Each city box - 4 Per Row enforcement */
.city-box {
    flex: 0 0 calc(25% - 20px); /* Strict 4-column width minus gap */
    max-width: calc(25% - 20px);
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px; /* Subtle radius */
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    height: 420px; /* Fixed height to match uniformity in image */
    overflow: hidden;
}

/* Header inside box - Exact Dark Blue Match */
.box-header {
    background-color: #003366 !important; /* Force Dark Blue */
    color: #fff;
    padding: 15px;
    text-align: center;
    border-bottom: 3px solid #002244; /* Darker border at bottom */
}

.box-header h2 {
    margin: 0;
    font-size: 16px; /* Smaller, punchier font size like image */
    font-weight: 700;
    line-height: 1.4;
    color: #fff;
    text-transform: capitalize;
}

.box-header h2 a {
    color: #fff !important;
    text-decoration: none;
}

/* List Body */
.list-body {
    padding: 0;
    overflow-y: auto;
    flex: 1; /* Fills remaining height */
    background-color: #fff;
}

/* List Items with Orange Arrows */
.location-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.location-list li {
    border-bottom: 1px solid #f0f0f0; /* Very light separators */
}

.location-list a {
    display: flex;
    align-items: flex-start; /* Align arrow with top of text */
    /* padding: 10px 15px; */
    text-decoration: none;
    color: #333;
    font-size: 13px; /* Slightly smaller text for density */
    font-weight: 600;
    line-height: 1.4;
    transition: background 0.2s;
}

/* Arrow Pseudo-element */
.location-list a:before {
    /* content: "\2192"; Standard Right Arrow - exact match for the image */
    color: #ffaf37; /* Orange Brand Color */
    font-size: 15px; /* Sized to match text */
    margin-right: 10px;
    font-weight: 900; /* Bold arrow */
    margin-top: 0;
}

.location-list a:hover {
    background-color: #f9f9f9;
    color: #003366;
}

/* Scrollbar Styling */
.list-body::-webkit-scrollbar {
    width: 6px;
}
.list-body::-webkit-scrollbar-track {
    background: #f1f1f1;
}
.list-body::-webkit-scrollbar-thumb {
    background: #bbb;
    border-radius: 10px;
}

/* Responsive adjustments */

/* Tablet: 2 boxes per row */
@media (max-width: 992px) {
    .city-box {
        flex: 0 0 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }
}

/* Mobile: 1 box per row */
@media (max-width: 576px) {
    .locations-wrapper {
        flex-direction: column;
    }
    .city-box {
        flex: 0 0 100%;
        max-width: 100%;
        height: auto; /* Allow auto height on mobile */
        max-height: 400px;
    }
}

/* =========================================
   THANK YOU MODAL
   ========================================= */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.thank-you-modal {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.modal-overlay.active .thank-you-modal {
    transform: scale(1);
}

.modal-icon {
    width: 80px;
    height: 80px;
    background: var(--success-color);
    color: white;
    font-size: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 25px;
}

.thank-you-modal h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 15px;
}

.thank-you-modal p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-light);
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--primary-color);
}

/* =========================================
   QUOTE FORM RESPONSIVENESS
   ========================================= */
@media (max-width: 768px) {
    #quote-form .container > div {
        display: block !important;
        gap: 20px !important;
    }

    #quote-form h2,
    #quote-form p,
    #quote-form ul {
        text-align: center;
    }

    .quote-form-container {
        width: 100%;
    }

    .form-row {
        display: block !important;
    }

    .form-row .form-group {
        width: 100% !important;
        margin-bottom: 15px;
    }

    .form-group input,
    .form-group select,
    #quote-form .btn {
        width: 100% !important;
    }

    #quote-form {
        padding: 40px 20px !important;
    }
}
