/* Contact Hero Section */
.contact-hero {
    height: 40vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/contact-hero.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-text);
    padding: 0 20px;
    margin-top: 80px;
  }
  
  .contact-hero-content {
    max-width: 800px;
  }
  
  .contact-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
  }
  
  .contact-hero p {
    font-size: 18px;
    opacity: 0.9;
  }
  
  /* Contact Info Section */
  .contact-info-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
  }
  
  .contact-info-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
  }
  
  .contact-info-card {
    flex: 1 1 250px;
    max-width: 280px;
    padding: 30px 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
  }
  
  .contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  }
  
  .contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: rgba(52, 152, 219, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }
  
  .contact-info-card:hover .contact-icon {
    background-color: rgba(52, 152, 219, 0.2);
  }
  
  .contact-icon svg {
    width: 40px;
    height: 40px;
  }
  
  .contact-info-card h3 {
    margin-bottom: 15px;
    color: #333;
    font-size: 20px;
  }
  
  .contact-info-card p {
    color: #666;
    margin: 8px 0;
  }
  
  .contact-social {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 15px;
  }
  
  .contact-social .social-icon {
    width: 40px;
    height: 40px;
    background-color: #3498db;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .contact-social .social-icon:hover {
    background-color: #2980b9;
    transform: translateY(-3px);
  }
  
  @media (max-width: 768px) {
    .contact-info-card {
      flex: 0 0 calc(50% - 15px);
    }
  }
  
  @media (max-width: 576px) {
    .contact-info-card {
      flex: 0 0 100%;
    }
  }
  
  /* Contact Form Section */
  .contact-form-section {
    padding: 60px 20px;
  }
  
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .contact-form-container h2,
  .contact-map-container h2 {
    font-size: 28px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
  }
  
  .contact-form-container h2::after,
  .contact-map-container h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
  }
  
  .contact-form-container p {
    margin-bottom: 30px;
    color: #666;
  }
  
  .contact-form {
    margin-top: 30px;
  }
  
  .contact-map {
    height: 300px;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 20px;
  }
  
  .placeholder-map {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .office-hours {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: var(--border-radius);
  }
  
  .office-hours h3 {
    margin-bottom: 15px;
    font-size: 18px;
  }
  
  .office-hours ul li {
    margin-bottom: 10px;
    display: flex;
  }
  
  .office-hours ul li span {
    font-weight: 600;
    width: 150px;
  }
  
  /* Map styling */
  .contact-map-container {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  }
  
  .contact-map-container h2 {
    margin-bottom: 20px;
    color: #333;
    font-size: 24px;
  }
  
  .contact-map {
    width: 100%;
    height: 350px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    margin-bottom: 20px;
  }
  
  .placeholder-map {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
  }
  
  .office-hours {
    margin-top: 20px;
  }
  
  .office-hours h3 {
    margin-bottom: 15px;
    color: #333;
    font-size: 18px;
  }
  
  .office-hours ul {
    list-style: none;
    padding: 0;
  }
  
  .office-hours li {
    margin-bottom: 8px;
    color: #555;
  }
  
  .office-hours li span {
    font-weight: 600;
    color: #333;
  }
  
  /* FAQ Section */
  .faq-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
  }
  
  .faq-container {
    max-width: 800px;
    margin: 40px auto 0;
  }
  
  .faq-item {
    background-color: #fff;
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.3s ease;
  }
  
  .faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .faq-question h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
  }
  
  .faq-toggle {
    font-size: 24px;
    transition: var(--transition);
  }
  
  .faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 200px;
  }
  
  .faq-item.active .faq-toggle {
    transform: rotate(45deg);
  }
  
  .faq-section .section-header {
    transition: all 0.4s ease;
  }
  
  /* Success Message */
  .success-message {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    justify-content: center;
    align-items: center;
  }
  
  .success-content {
    background-color: #fff;
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    max-width: 400px;
    position: relative;
    animation: fadeIn 0.3s ease;
  }
  
  .close-success {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #999;
  }
  
  .success-icon {
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 20px;
  }
  
  /* Responsive Styles */
  @media (max-width: 992px) {
    .contact-hero h1 {
      font-size: 40px;
    }
  
    .contact-grid {
      grid-template-columns: 1fr;
      gap: 50px;
    }
  }
  
  @media (max-width: 768px) {
    .contact-hero {
      height: 30vh;
    }
  
    .contact-hero h1 {
      font-size: 32px;
    }
  
    .contact-form-container h2,
    .contact-map-container h2 {
      font-size: 24px;
    }
  }
  
  @media (max-width: 576px) {
    .contact-hero h1 {
      font-size: 28px;
    }
  
    .form-row {
      flex-direction: column;
    }
  
    .form-row .form-group {
      width: 100%;
    }
  }
