
    /* Design Tokens - Modern CSS Variables Organization */
    :root {
      /* Colors */
      --color-primary: #0a2540;
      --color-primary-light: rgba(10, 37, 64, 0.05);
      --color-primary-dark: #072035;
      --color-accent: #ff7a00;
      --color-accent-light: #ffa54d;
      --color-accent-dark: #e26c00;
      --color-light: #f5f7fa;
      --color-gray: #6c757d;
      --color-dark: #212529;
      --color-white: #ffffff;
      
      /* Spacing System */
      --space-xs: 0.5rem;
      --space-sm: 1rem;
      --space-md: 1.5rem;
      --space-lg: 2rem;
      --space-xl: 3rem;
      --space-xxl: 5rem;
      
      /* Typography */
      --font-body: 'Inter', sans-serif;
      --font-heading: 'Outfit', sans-serif;
      --font-size-sm: 0.875rem;
      --font-size-base: 1rem;
      --font-size-lg: 1.25rem;
      --font-size-xl: 1.5rem;
      --font-size-xxl: 2rem;
      --font-size-display: 3rem;
      
      /* Borders & Shadows */
      --radius-sm: 0.5rem;
      --radius-md: 1rem;
      --radius-lg: 1.5rem;
      --radius-full: 50px;
      --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
      --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.1);
      --shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.15);
      
      /* Transitions */
      --transition-fast: 200ms ease;
      --transition-base: 300ms ease;
      --transition-slow: 500ms ease;
    }

    /* Base Styles */
    body {
      font-family: var(--font-body);
      background-color: var(--color-light);
      color: var(--color-dark);
      line-height: 1.6;
      overflow-x: hidden;
      scroll-behavior: smooth;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: var(--font-heading);
      font-weight: 700;
      color: var(--color-primary);
      margin-bottom: var(--space-sm);
    }

    a {
      text-decoration: none;
      transition: var(--transition-base);
      color: var(--color-primary);
    }

    img {
      max-width: 100%;
    }

    /* Section Styles */
    .section {
      padding: var(--space-xxl) 0;
    }

    .section--sm {
      padding: var(--space-xl) 0;
    }

    .section__header {
      margin-bottom: var(--space-xl);
      text-align: center;
    }

    .section__title {
      font-size: var(--font-size-display);
      margin-bottom: var(--space-xs);
    }

    .section__subtitle {
      color: var(--color-gray);
      font-size: var(--font-size-lg);
      max-width: 800px;
      margin: 0 auto;
    }

    /* Utility Classes */
    .text-accent {
      color: var(--color-accent);
    }

    .bg-primary {
      background-color: var(--color-primary);
    }

    .bg-accent {
      background-color: var(--color-accent);
    }

    .transition-hover {
      transition: var(--transition-base);
    }

    .hover-lift {
      transition: transform var(--transition-base), box-shadow var(--transition-base);
    }

    .hover-lift:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-lg);
    }

    /* Component: Navbar */
  .navbar {
    padding: 10px 0;
    transition: background-color 0.3s ease, padding 0.3s ease;
  }

  /* Dark navbar (default/top state) */
  .navbar {
    background-color: rgba(10, 37, 64, 0.95);
  }

  /* Light navbar (scrolled state) */
  .navbar.scrolled {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  /* Logo */
  .navbar-logo {
    height: 45px;
    width: auto;
  }

  /* Navigation Links */
  .navbar-nav .nav-link {
    font-family: var(--font-body);
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    color: #ffffff !important;
    position: relative;
    transition: color 0.3s ease;
  }

  .navbar.scrolled .nav-link {
    color: var(--color-primary) !important;
  }

  /* Active link indicator */
  .nav-link.active {
    position: relative;
  }

  .nav-link.active::after {
    content: '';
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 0;
    height: 2px;
    background-color: var(--color-accent);
  }

  /* Security rate text */
  .security-rate {
    color: orange;
    font-size: 0.9rem;
    white-space: nowrap;
  }

  .navbar.scrolled .security-rate {
    /* color: var(--color-gray); */
    color: green;
    font-weight: 600;
  }

  /* Phone button */
  .btn-phone {
    background-color: var(--color-accent);
    color: #ffffff !important;
    border-radius: 50px;
    padding: 0.5rem 1.25rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }

  .btn-phone:hover {
    background-color: var(--color-accent-dark);
    transform: translateY(-2px);
  }

  /* Mobile adjustments */
  @media (max-width: 991px) {
    .navbar-collapse {
      background-color: rgba(10, 37, 64, 0.98);
      padding: 1rem;
      border-radius: 0.5rem;
      margin-top: 0.5rem;
    }
    
    .navbar.scrolled .navbar-collapse {
      background-color: #ffffff;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .security-rate {
      display: block;
      margin-bottom: 0.75rem;
      text-align: center;
      color: #ffffff;
    }
    
    .navbar.scrolled .security-rate {
      color: var(--color-primary);
    }
    
    .btn-phone {
      display: flex;
      justify-content: center;
      margin: 0 auto;
      width: fit-content;
    }
  }

    /* Component: Hero */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('../images/SIA Banner.png') center/cover fixed;
      color: var(--color-white);
      text-align: center;
      position: relative;
    }

    .hero__content {
      position: relative;
      z-index: 1;
    }

    .hero__badge {
      display: inline-block;
      background: var(--color-accent);
      border-radius: var(--radius-full);
      font-weight: 600;
      margin-bottom: var(--space-md);
      animation: pulse 2s infinite ease-in-out;
      padding: 0.4rem 1rem;
      font-size: 0.9rem;
    }

    @keyframes pulse {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.05); }
    }

    .hero__title {
      color: skyblue;
      font-size: clamp(2.5rem, 8vw, 4rem);
      font-weight: 800;
      line-height: 1.1;
      margin-bottom: var(--space-sm);
    }

    .hero__subtitle {
      font-size: clamp(1rem, 2.5vw, 1.25rem);
      margin: var(--space-sm) 0 var(--space-lg);
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .hero__cta {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: var(--space-sm);
    }

    .btn {
      padding: 0.75rem 2rem;
      border-radius: var(--radius-full);
      font-weight: 600;
      transition: var(--transition-base);
    }

    .btn-primary {
      background: var(--color-accent);
      border: none;
      color: var(--color-white);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    .btn-primary:hover {
      background: var(--color-accent-dark);
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(255, 122, 0, 0.4);
    }

    .btn-outline-light {
      border: 2px solid var(--color-white);
      color: var(--color-white);
    }

    .btn-outline-light:hover {
      background: var(--color-white);
      color: var(--color-primary);
      transform: translateY(-3px);
    }

    /* Component: Card */
    .titan-card {
      background: var(--color-white);
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-md);
      transition: var(--transition-base);
      padding: var(--space-lg);
      height: 100%;
      display: flex;
      flex-direction: column;
    }

    .titan-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-lg);
    }

    .titan-card__icon-wrapper {
      width: 80px;
      height: 80px;
      border-radius: 20px;
      background: var(--color-primary-light);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: var(--space-sm);
      margin-left: auto;
      margin-right: auto;
      transition: var(--transition-base);
    }

    .titan-card:hover .titan-card__icon-wrapper {
      background: var(--color-primary);
      transform: rotate(10deg);
    }

    .titan-card__icon {
      font-size: 2rem;
      color: var(--color-primary);
      transition: var(--transition-base);
    }

    .titan-card:hover .titan-card__icon {
      color: var(--color-white);
    }

    .titan-card__title {
      font-size: var(--font-size-xl);
      margin-bottom: var(--space-sm);
      text-align: center;
    }

    .titan-card__text {
      font-size: var(--font-size-base);
      color: var(--color-gray);
      margin-bottom: 0;
      flex-grow: 1;
    }

    /* Component: Testimonial */
    .testimonial {
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-md);
      background: var(--color-white);
      padding: var(--space-lg);
      max-width: 700px;
      margin: 0 auto;
    }

    .testimonial__rating {
      color: var(--color-accent);
      margin-bottom: var(--space-sm);
      text-align: center;
    }

    .testimonial__text {
      font-style: italic;
      line-height: 1.6;
      color: var(--color-dark);
      text-align: center;
      margin-bottom: var(--space-lg);
    }

    .testimonial__author {
      text-align: center;
    }

  /* Vision & Mission Section */
  .vision-mission {
    position: relative;
    background-color: #1e3a57;
    color: #fff;
    padding: 6rem 0;
    overflow: hidden;
  }

  .vision-mission .section-title {
    color: #fff;
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
  }

  .vision-mission .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
  }

  /* Cards */
  .vm-card {
    position: relative;
    background-color: rgba(46, 58, 74, 0.8);
    border-radius: 1rem;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
  }

  .vm-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  }

  .vm-card--mission {
    background-color: rgba(55, 86, 122, 0.8);
  }

  .vm-card__icon-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
  }

  .vm-card__icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
  }

  .vm-card:hover .vm-card__icon {
    background-color: #ff7a00;
    transform: scale(1.05);
  }

  .vm-card__icon i {
    font-size: 1.75rem;
    color: #fff;
  }

  .vm-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    text-align: center;
    color: #fff;
  }

  .vm-card__description {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
  }

  .vm-card__list {
    list-style-type: none;
    padding: 0;
    margin: 0;
  }

  .vm-card__list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
  }

  .vm-card__list li:last-child {
    margin-bottom: 0;
  }

  .vm-card__list li i {
    color: #ff7a00;
    font-size: 1rem;
    margin-right: 0.75rem;
    margin-top: 0.25rem;
  }

  .vm-card__list li div {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
  }

  .vm-card__list li strong {
    color: #fff;
    font-weight: 600;
  }

  /* Timeline */
  .timeline {
    position: relative;
    padding-left: 1rem;
  }

  .timeline-item {
    position: relative;
    display: flex;
    margin-bottom: 1.5rem;
  }

  .timeline-item:last-child {
    margin-bottom: 0;
  }

  .timeline-item:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 2rem;
    height: calc(100% + 1rem);
    width: 2px;
    background-color: rgba(255, 122, 0, 0.4);
  }

  .timeline-year {
    position: relative;
    min-width: 2.5rem;
    margin-right: 1.5rem;
  }

  .timeline-year span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background-color: #ff7a00;
    color: #fff;
    font-weight: 600;
    border-radius: 50%;
    position: relative;
    z-index: 1;
  }

  .timeline-content {
    flex: 1;
  }

  .timeline-content h5 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
  }

  .timeline-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    margin: 0;
  }

  /* Core Values */
  .core-values {
    margin-top: 5rem;
  }

  .core-values__title {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
  }

  .value-card {
    background-color: rgba(46, 58, 74, 0.8);
    border-radius: 1rem;
    padding: 1.75rem;
    height: 100%;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  }

  .value-card__icon {
    font-size: 2rem;
    color: #ff7a00;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
  }

  .value-card:hover .value-card__icon {
    transform: scale(1.15);
  }

  .value-card__title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #fff;
  }

  .value-card__text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin: 0;
  }

  /* Responsive adjustments */
  @media (max-width: 991px) {
    .vision-mission {
      padding: 4rem 0;
    }
    
    .vision-mission .section-title {
      font-size: 2.25rem;
    }
  }

  @media (max-width: 767px) {
    .vm-card {
      margin-bottom: 2rem;
    }
    
    .value-card {
      margin-bottom: 1.5rem;
    }
    
    .core-values__title {
      font-size: 2rem;
    }
  }

  /* Clients & Partners Section */
  #clients {
    padding: 5rem 0;
    background-color: #f8f9fa;
  }

  #clients .section-title {
    color: #0a2540;
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
  }

  #clients .section-subtitle {
    color: #6c757d;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
  }

  /* Filter Buttons */
  .client-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
  }

  .client-filter__btn {
    padding: 0.5rem 1.5rem;
    background-color: transparent;
    border: 1px solid #0a2540;
    border-radius: 50px;
    color: #0a2540;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .client-filter__btn.active {
    background-color: #0a2540;
    color: #fff;
  }

  .client-filter__btn:hover:not(.active) {
    background-color: rgba(10, 37, 64, 0.1);
  }

  /* Logo Grid */
  .client-logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
  }

  /* Logo Card */
  .logo-card {
    background-color: #fff;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(0);
    position: relative;
  }

  .logo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }

  .logo-card.hidden {
    display: none;
  }

  .logo-card.fade-out {
    opacity: 0;
    transform: translateY(20px);
  }

  .logo-card__inner {
    position: relative;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px;
    background-color: #fff;
  }

  .logo-card__image {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    filter: grayscale(60%);
    transition: filter 0.3s ease, transform 0.3s ease;
  }

  .logo-card:hover .logo-card__image {
    filter: grayscale(0%);
    transform: scale(1.05);
  }

  .logo-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background-color: #ff7a00;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    box-shadow: 0 2px 5px rgba(255, 122, 0, 0.3);
  }

  /* Responsive Adjustments */
  @media (max-width: 991px) {
    .client-logo-grid {
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
  }

  @media (max-width: 767px) {
    #clients .section-title {
      font-size: 2.25rem;
    }
    
    .client-logo-grid {
      grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
      gap: 1rem;
    }
    
    .logo-card__inner {
      padding: 1.5rem;
      height: 120px;
    }
    
    .client-filter__btn {
      padding: 0.4rem 1.2rem;
      font-size: 0.9rem;
    }
  }

    /* Contact Section */
/* Contact Section Styles */
.section-contact {
  padding: 6rem 0;
  background-color: #f8f9fa;
}

/* Contact Info Cards */
.contact-card {
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  padding: 1.75rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact-card:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(10, 37, 64, 0.05) 0%, rgba(10, 37, 64, 0) 60%);
  border-radius: 0 0 0 100px;
  z-index: 1;
}

.contact-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: rgba(10, 37, 64, 0.05);
  border-radius: 50%;
  margin-bottom: 1.25rem;
  transition: all 0.3s ease;
}

.contact-card:hover .contact-card__icon {
  background-color: var(--color-primary);
  transform: scale(1.1);
}

.contact-card__icon i {
  font-size: 1.5rem;
  color: var(--color-primary);
  transition: all 0.3s ease;
}

.contact-card:hover .contact-card__icon i {
  color: #fff;
}

.contact-card__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.contact-card__text {
  font-size: 0.95rem;
  color: var(--color-gray);
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.contact-card__link {
  display: inline-block;
  color: var(--color-primary);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-card__link:hover {
  color: var(--color-accent);
}

.contact-card__links {
  margin-top: 0.75rem;
}

.location-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.location-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #14a44d;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 50px;
}

  /* Contact Form */
  .contact-form-container {
    background-color: #fff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    margin-top: 1.5rem;
  }

  .form-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
  }

  .contact-form .form-control {
    border-radius: 0.5rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: none;
    transition: all 0.3s ease;
  }

  .contact-form .form-control:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 0.25rem rgba(10, 37, 64, 0.1);
  }

  .contact-form .form-floating label {
    color: var(--color-gray);
  }

  .submit-btn {
    padding: 0.75rem 2rem;
    font-weight: 500;
    border-radius: 50px;
    margin-top: 1rem;
    transition: all 0.3s ease;
    background-color: var(--color-primary);
    border: none;
    position: relative;
    overflow: hidden;
  }

  .submit-btn:hover {
    background-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 122, 0, 0.3);
  }

  .submit-btn:active {
    transform: translateY(0);
  }

  .submit-btn .btn-text {
    position: relative;
    z-index: 2;
  }

  .submit-btn i {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
  }

  .submit-btn:hover i {
    transform: translateX(3px);
  }

  /* Map Container */
  .map-container {
    position: relative;
    height: 100%;
    min-height: 600px;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }

  .map-wrapper {
    position: relative;
    height: 100%;
    min-height: 400px;
  }

  .map-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  /* Floating Directions Button */
  .map-directions-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #fff;
    color: var(--color-primary);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    z-index: 2;
  }

  .map-directions-btn:hover {
    background-color: var(--color-primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }

  /* Pulsing Location Marker */
  .location-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
  }

  .marker-pulse {
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 122, 0, 0.2);
    border-radius: 50%;
    opacity: 0;
    animation: pulse 2s infinite;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .marker-center {
    position: absolute;
    width: 16px;
    height: 16px;
    background-color: var(--color-accent);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px rgba(255, 122, 0, 0.5);
  }

  @keyframes pulse {
    0% {
      transform: translate(-50%, -50%) scale(0.5);
      opacity: 1;
    }
    100% {
      transform: translate(-50%, -50%) scale(1.5);
      opacity: 0;
    }
  }

  /* Coverage Panel */
  .coverage-panel {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: #fff;
    border-radius: 0.75rem;
    padding: 1.5rem;
    width: 320px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    z-index: 2;
  }

  .coverage-panel__title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--color-primary);
  }

  .coverage-regions {
    display: flex;
    margin-bottom: 1.25rem;
  }

  .region-column {
    flex: 1;
  }

  .region-heading {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: 0.75rem;
  }

  .region-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .region-list li {
    font-size: 0.9rem;
    color: var(--color-gray);
    margin-bottom: 0.35rem;
  }

  .coverage-addresses {
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
  }

  .address-details {
    font-size: 0.85rem;
    color: var(--color-gray);
    margin-bottom: 0.5rem;
  }

  .view-map-link {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--color-primary);
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .view-map-link:hover {
    color: var(--color-accent);
  }

  /* Responsive Adjustments */
  @media (max-width: 991px) {
    .map-container {
      min-height: 450px;
      margin-top: 2rem;
    }
    
    .coverage-panel {
      position: static;
      width: 100%;
      margin-top: 1rem;
      box-shadow: none;
      border: 1px solid rgba(0, 0, 0, 0.05);
    }
  }

  @media (max-width: 767px) {
    .contact-card {
      padding: 1.5rem;
    }
    
    .coverage-panel {
      padding: 1.25rem;
    }
    
    .map-directions-btn {
      top: 10px;
      right: 10px;
      padding: 0.5rem 1rem;
      font-size: 0.85rem;
    }
  }

    /* Footer */
    .footer {
      background: var(--color-primary);
      color: var(--color-white);
      padding: var(--space-xl) 0 var(--space-sm);
    }

    .footer-logo {
      width: 140px;
      margin-bottom: var(--space-sm);
    }

    .footer h5 {
      font-size: var(--font-size-lg);
      margin-bottom: var(--space-sm);
      position: relative;
      color: var(--color-white);
    }

    .footer h5::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      height: 3px;
      width: 40px;
      background: var(--color-accent);
    }

    .footer-links a {
      color: rgba(255, 255, 255, 0.7);
      display: flex;
      align-items: center;
      gap: var(--space-xs);
      margin-bottom: 0.75rem;
      transition: var(--transition-base);
    }

    .footer-links a:hover {
      color: var(--color-accent);
      transform: translateX(5px);
    }

    .social-links {
      display: flex;
      gap: var(--space-sm);
    }

    .social-link {
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: var(--transition-base);
    }

    .social-link:hover {
      background: var(--color-accent);
      transform: translateY(-5px);
    }

    .social-link i {
      color: var(--color-white);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: var(--space-sm);
      margin-top: var(--space-xl);
      text-align: center;
    }

    /* Responsive adjustments */
    @media (max-width: 992px) {
      .section {
        padding: var(--space-xl) 0;
      }
      
      .map-overlay {
        position: static;
        margin-top: var(--space-sm);
      }
      
      .carousel-control-prev, 
      .carousel-control-next {
        display: none;
      }
    }

    @media (max-width: 768px) {
      .section__title {
        font-size: 2.2rem;
      }
      
      .client-logo {
        max-height: 50px;
      }
      
      .client-filter__btn {
        padding: 0.4rem 0.8rem;
      }
      
      .vision-mission .row > [class*="col"] {
        margin-bottom: var(--space-md);
      }
    }

    @media (max-width: 576px) {
      .hero__badge {
        font-size: 0.9rem;
      }
      
      .hero__subtitle {
        font-size: 1rem;
      }
      
      .section {
        padding: var(--space-lg) 0;
      }
    }