/* Contact Hero Section */
.contact-hero {
    position: relative;
    height: 40vh;
    min-height: 300px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-dark) 100%);
    color: var(--neutral-100);
    padding-top: 80px;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.pexels.com/photos/3183153/pexels-photo-3183153.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 1;
}

.contact-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0,94,184,0.3) 0%, rgba(18,30,54,0.5) 100%);
    z-index: 2;
}

.contact-hero .container {
    position: relative;
    z-index: 3;
}

.contact-hero-content {
    max-width: 700px;
    text-align: center;
    margin: 0 auto;
}

.contact-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--neutral-100);
    margin-bottom: var(--space-md);
}

.contact-hero-content p {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* Contact Information Section */
.contact-info-section {
    padding: var(--space-xl) 0;
    background-color: var(--neutral-100);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.contact-info-card {
    text-align: center;
    padding: var(--space-lg);
    background-color: var(--neutral-100);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.contact-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--neutral-100);
    font-size: 1.5rem;
    margin: 0 auto var(--space-md);
}

.contact-info-card h3 {
    margin-bottom: var(--space-sm);
}

.contact-info-card p {
    color: var(--neutral-600);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Contact Form Section */
.contact-form-section {
    padding: var(--space-xl) 0;
    background-color: var(--neutral-200);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
}

.contact-form {
    background-color: var(--neutral-100);
    padding: var(--space-xl);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: var(--space-md);
}

label {
    display: block;
    margin-bottom: var(--space-xs);
    font-weight: 500;
    color: var(--neutral-800);
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--neutral-300);
    border-radius: 4px;
    background-color: var(--neutral-100);
    transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 94, 184, 0.1);
}

.checkbox {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.checkbox input {
    width: auto;
    margin-right: var(--space-sm);
}

.checkbox label {
    margin-bottom: 0;
    font-weight: 400;
}

button[type="submit"] {
    width: 100%;
    padding: 12px;
    font-weight: 600;
}

/* Map Container */
.contact-map {
    background-color: var(--neutral-100);
    padding: var(--space-xl);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.map-container {
    height: 300px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: var(--space-md);
}

.map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.location-details {
    margin-top: var(--space-md);
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.location-item i {
    color: var(--primary-color);
    font-size: 1.25rem;
    padding-top: 4px;
}

.location-item h4 {
    margin-bottom: var(--space-xs);
}

.location-item p {
    color: var(--neutral-600);
    margin-bottom: 0;
}

/* Global Offices Section */
.global-offices {
    padding: var(--space-xl) 0;
    background-color: var(--neutral-100);
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.office-card {
    text-align: center;
    padding: var(--space-lg);
    border: 1px solid var(--neutral-300);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.office-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-color);
}

.office-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--neutral-100);
    font-size: 1.5rem;
    margin: 0 auto var(--space-md);
}

.office-card h3 {
    margin-bottom: var(--space-md);
}

.office-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.office-card ul li {
    padding: var(--space-xs) 0;
    color: var(--neutral-600);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.office-card ul li::before {
    content: '•';
    color: var(--primary-color);
    margin-right: var(--space-xs);
    font-size: 1.2em;
}

/* --- Add these new styles at the bottom of contact.css --- */

.contact-grid {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: flex-start;
}

.contact-form,
.contact-map {
  flex: 1;
  min-width: 0;
}

.contact-form form,
.contact-map {
  max-width: 100%;
}

.contact-map iframe {
  width: 100%;
  height: 350px;
  border-radius: 8px;
  display: block;
}

.contact-map .section-header {
  margin-top: 20px;
}




/* FAQ Section */
.faq-section {
    padding: var(--space-xl) 0;
    background-color: var(--neutral-200);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.faq-item {
    background-color: var(--neutral-100);
    padding: var(--space-lg);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    margin-bottom: var(--space-sm);
    color: var(--primary-color);
}

.faq-item p {
    color: var(--neutral-600);
    margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .contact-info-grid, .contact-grid, .offices-grid, .faq-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .contact-info-grid, .contact-grid, .offices-grid, .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-hero {
        height: auto;
        padding: 120px 0 var(--space-xl);
    }
    
    .contact-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .contact-form, .contact-map {
        padding: var(--space-lg);
    }
}

/* Mobile menu hidden by default */
.nav {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Default: hide on mobile */
@media (max-width: 768px) {
  .nav {
    display: none;
    flex-direction: column;
    background-color: #fff;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }

  .nav.open {
    display: flex;
  }

  .nav-list {
    flex-direction: column;
    width: 100%;
    padding: 20px 0;
    margin: 0;
  }

  .nav-item {
    margin: 10px 0;
    text-align: center;
  }

  .nav-link {
    color: #000;
    font-size: 1.1rem;
    text-decoration: none;
  }

  .nav-link:hover {
    color: var(--primary-color); /* Optional brand color */
  }
}
@media (max-width: 768px) {
  .nav {
    display: none;
    flex-direction: column;
    background-color: #fff;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }

  .nav.open {
    display: flex;
  }

  .nav-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    width: 100%;
    margin: 0;
  }

  .nav-item {
    margin: 10px 0;
    text-align: center;
  }

  .nav-link {
    color: #000;
    font-size: 1.1rem;
    text-decoration: none;
  }

  .nav-link:hover {
    color: var(--primary-color); /* Brand color if defined */
  }
}
.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  color: #000;
  cursor: pointer;
}

/* Show hamburger icon on mobile */
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
    position: absolute;
    top: 25px;
    right: 20px;
    z-index: 1000;
  }
}
