a {
    text-decoration: none;
    color: inherit;
  }
  
  button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
  }
  
  /* ============================================
     HEADER STYLES
     ============================================ */
  .header {
    position: sticky;
    top: 0;
    z-index: 50;
    width: 100%;
    background-color: #000;
    border-bottom: 1px solid #1a1a1a;
  }
  
  .header-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
    gap: 1rem;
  }
  
  @media (min-width: 768px) {
    .header-content {
      height: 5rem;
    }
  }
  
  .logo img {
    max-width: 175px;
    height: auto;
}

a.logo {
    line-height: 0;
}
  
  @media (min-width: 768px) {
    .logo {
      font-size: 1.5rem;
    }
  }
  
  /* ============================================
     DESKTOP NAVIGATION
     ============================================ */
  .desktop-nav {
    display: none;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    margin: 0 2rem;
  }
  
  @media (min-width: 768px) {
    .desktop-nav {
      display: flex;
      justify-content: center;
    }
  }
  
  .nav-link {
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    color: #d1d5db;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    position: relative;
  }
  
  @media (min-width: 1024px) {
    .nav-link {
      font-size: 1rem;
      padding: 0.5rem 0.75rem;
    }
  }
  
  .nav-link:hover {
    color: #fff;
  }
  
  .chevron-icon {
    width: 1rem;
    height: 1rem;
    transition: transform 0.2s ease;
  }
  
  /* Services Dropdown */
  .services-dropdown {
    position: relative;
  }
  
  .services-btn {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }
  
  .services-dropdown:hover .chevron-icon {
    transform: rotate(180deg);
  }
  
  /* Mega Menu */
/* Mega Menu - Centered under Services */
.mega-menu {
  position: absolute;
  left: 50%;  /* NEW: Center horizontally */
  top: 100%;
  transform: translateX(-50%);  /* NEW: Offset by half its width for true center */
  width: 100vw;  /* Keep viewport for expansive feel */
  max-width: 56rem;  /* Cap as before */
  background-color: #000;
  border: 1px solid #1a1a1a;
  border-radius: 0.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  pointer-events: none;
  margin-top: 0.5rem;  /* Slight gap under button */
  /* Optional: Ensure it doesn't clip on narrow viewports */
  min-width: 300px;  /* Floor for small screens */
}
  
  .services-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  
  .mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1.5rem 2rem;
  }
  
  /* Country Suggestion Modal Styles */
.country-suggestion-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(3px);
}

.modal-content {
  background: white;
  border-radius: 12px;
  padding: 30px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  font-family: Arial, sans-serif;
}

.modal-content h2 {
  margin: 0 0 15px;
  color: #333;
  font-size: 24px;
}

.modal-content p {
  margin: 0 0 25px;
  color: #666;
  font-size: 16px;
  line-height: 1.5;
}

.modal-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.modal-buttons button {
  padding: 12px 24px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  font-size: 16px;
  min-width: 100px;
  transition: all 0.2s;
  border: none;
}

.modal-buttons button:first-child {
  background: #ee1c25;
  color: white;
}

.modal-buttons button:first-child:hover {
  background: #cc181f;
}

.modal-buttons button:last-child {
  background: transparent;
  color: #ee1c25;
  border: 2px solid #ee1c25;
}

.modal-buttons button:last-child:hover {
  background: #ee1c25;
  color: white;
}

/* Country Switcher Styles */
.country-switcher {
  position: relative;
  display: inline-block;
  margin-right: 10px;
}

.switcher-btn {
  background: transparent;
  color: #fff;
  border: 1px solid #ccc;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: border-color 0.2s;
}

.switcher-btn:hover {
  border-color: #ee1c25;
}

.flag-icon,
.flag-img {
  font-size: 18px; /* For emoji */
  width: 20px;
  height: auto;
  border-radius: 2px;
}

.country-label {
  font-size: 14px;
}

.switcher-btn svg {
  width: 12px;
  height: 12px;
  margin-left: 4px;
}

.switcher-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  min-width: 140px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s;
  display: none;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  text-decoration: none;
  color: #333;
  border-bottom: 1px solid #eee;
  transition: background 0.2s;
}

.dropdown-item:hover {
  background: #f9f9f9;
}

.dropdown-item:last-child {
  border-bottom: none;
}

  @media (min-width: 768px) {
    .mega-menu-grid {
      grid-template-columns: repeat(3, 1fr);
    }

  .modal-content {
    padding: 20px;
    width: 95%;
}

.modal-buttons {
    flex-direction: column;
    gap: 10px;
}
  }
  
  @media (min-width: 1024px) {
    .mega-menu-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }
  
  /* Service Card */
  .service-card {
    padding: 1rem;
    border-radius: 0.5rem;
    transition: background-color 0.2s ease;
    display: block;
  }
  
  .service-card:hover {
    background-color: #111;
  }
  
  .service-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  
  .service-name {
    color: #fff;
    font-weight: 600;
    font-size: 0.875rem;
    transition: color 0.2s ease;
    margin-bottom: 0.25rem;
  }
  
  .service-card:hover .service-name {
    color: #ef4444;
  }
  
  .service-desc {
    color: #9ca3af;
    font-size: 0.75rem;
    margin-top: 0.25rem;
  }
  
  /* ============================================
     HEADER ACTIONS
     ============================================ */
  .header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  
  @media (min-width: 640px) {
    .header-actions {
      gap: 1rem;
    }
  }
  
  /* CTA button now only shows on desktop (768px+) */
  .header-btn {
    padding: 0.5rem 1.5rem;
    background-color: #dc2626;
    color: #fff;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: background-color 0.2s ease;
    font-size: 0.875rem;
  }
  
  @media (max-width: 768px) {
    .header-btn {
      display: none;
    }
    .header-container {
      padding: 0.5rem 1rem;
  }
  }

  
  .header-btn:hover {
    color: #fff;
    background-color: #b91c1c;
  }
  
  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    color: #d1d5db;
    transition: color 0.2s ease;
    width: 2.5rem;
    height: 2.5rem;
  }
  
  @media (min-width: 768px) {
    .mobile-menu-btn {
      display: none;
    }
  }
  
  .mobile-menu-btn:hover {
    color: #fff;
  }
  
  .mobile-menu-btn svg {
    width: 1.5rem;
    height: 1.5rem;
  }
  
  .hidden {
    display: none !important;
  }
  
  /* ============================================
     MOBILE MENU
     ============================================ */
  .mobile-menu {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #1a1a1a;
    padding: 1rem;
    gap: 0.5rem;
    max-height: calc(100vh - 4rem);
    overflow-y: auto;
  }
  
  .mobile-menu.hidden {
    display: none;
  }
  
  .mobile-nav-link {
    display: block;
    padding: 0.5rem 1rem;
    color: #d1d5db;
    border-radius: 0.375rem;
    transition: all 0.2s ease;
    text-align: left;
    font-size: 0.875rem;
    width: 100%; /* Ensure full width for buttons too */
  }
  
  .mobile-nav-link:hover {
    color: #fff;
    background-color: #111;
  }
  
  /* Mobile Services */
  .mobile-services {
    display: flex;
    flex-direction: column;
  }
  
  .services-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  
  .services-toggle .chevron-icon {
    width: 1rem;
    height: 1rem;
    transition: transform 0.2s ease;
  }
  
  .services-toggle.active .chevron-icon {
    transform: rotate(180deg);
  }
  
  /* Mobile services list now displays properly when active */
  .mobile-services-list {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    margin-top: 0.5rem;
    padding-left: 1rem;
  }
  
  .mobile-services-list.active {
    display: flex;
  }
  
  .mobile-services-list.hidden {
    display: none;
  }
  
  .mobile-service-link {
    display: block;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: #9ca3af;
    border-radius: 0.375rem;
    transition: all 0.2s ease;
  }
  
  .mobile-service-link:hover {
    color: #fff;
    background-color: #111;
  }
  
  /* Mobile CTA button styling - appears at bottom of menu */
  .mobile-cta-btn {
    width: 100%;
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    background-color: #dc2626;
    color: #fff;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: background-color 0.2s ease;
    font-size: 0.875rem;
    text-align: center;
  }
  
  .mobile-cta-btn:hover {
    color: #ccc;
    background-color: #b91c1c;
  }
  
  /* ============================================
     RESPONSIVE ADJUSTMENTS
     ============================================ */
  @media (max-width: 767px) {
    .header-content {
      height: 4rem;
    }
  
    .logo {
      font-size: 1.125rem;
    }
  
    .nav-link {
      font-size: 0.75rem;
    }
  
    .service-card {
      padding: 0.75rem;
    }
  
    .service-icon {
      font-size: 1.25rem;
    }
  
    .service-name {
      font-size: 0.75rem;
    }
  
    .service-desc {
      font-size: 0.65rem;
    }
  }
  
  /* Smooth scrolling for mobile */
  @media (max-width: 640px) {
    .mobile-menu {
      max-height: calc(100vh - 4rem);
    }
  }