  /* Hero Section */
  .contact-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #357abd 100%);
    color: white;
    padding: 100px 0 80px 0;
    position: relative;
    overflow: hidden;
  }

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

  .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
  }

  .hero-subtitle {
    font-size: 1.4rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
  }

  /* Contact Methods Section */
  .contact-methods-section {
    padding: 80px 0 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, white 100%);
  }

  .contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 60px;
  }

  .contact-method-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-top: 5px solid var(--primary-color);
  }

  .contact-method-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(71, 159, 248, 0.2);
  }

  .contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #357abd);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
    color: white;
  }

  .contact-method-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
  }

  .contact-method-card p {
    color: var(--secondary-color);
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .contact-link:hover {
    color: #357abd;
    transform: scale(1.05);
  }

  /* Form Section */
  .form-section {
    padding: 80px 0;
    background: white;
  }

  .section-header {
    text-align: center;
    margin-bottom: 60px;
  }

  .section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
  }

  .section-header p {
    font-size: 1.2rem;
    color: var(--secondary-color);
  }

  .form-container {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, #f8f9fa 0%, white 100%);
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-left: 5px solid var(--primary-color);
  }

  .form-group {
    margin-bottom: 25px;
  }

  .form-group label {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
  }

  .form-group label .required {
    color: #dc3545;
  }

  .form-control {
    width: 100%;
    padding: 15px 20px;
    font-size: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-family: inherit;
  }

  .form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(71, 159, 248, 0.1);
  }

  .form-control.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
  }

  .error-message {
    color: #dc3545;
    font-size: 0.9rem;
    margin-top: 5px;
    display: none;
    font-weight: 500;
  }

 .success-message {
    display: none;
    background: rgba(76, 175, 80, 0.2);
    border: 2px solid var(--color-green);
    border-radius: 15px;
    padding: 1.5rem;
    margin-top: 1rem;
    animation: slideInUp 0.5s ease;
}

  .error-message.show {
    display: block;
  }

  textarea.form-control {
    min-height: 150px;
    resize: vertical;
  }

  .form-error-summary {
    background: #f8d7da;
    border: 2px solid #dc3545;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
    display: none;
  }

  .form-error-summary.show {
    display: block;
  }

  .form-error-summary h4 {
    color: #721c24;
    font-size: 1.2rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .form-error-summary ul {
    margin: 0;
    padding-left: 25px;
    color: #721c24;
  }

  .form-error-summary li {
    margin: 5px 0;
  }

  .form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }

  .submit-btn {
    background: var(--primary-color);
    color: white;
    padding: 18px 50px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(71, 159, 248, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 30px auto 0;
  }

  .submit-btn:hover {
    background: #357abd;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(71, 159, 248, 0.4);
  }

  .submit-btn:active {
    transform: translateY(0);
  }

/* Locations Section */
.locations-section {
    background: var(--white);
}

.location-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    height: 100%;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(71, 159, 248, 0.2);
}

.location-title {
    background: linear-gradient(135deg, var(--primary-color) 0%, #357abd 100%);
    color: var(--white);
    padding: 1.5rem;
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.location-title i {
    font-size: 2rem;
}

.map-container {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.map-container iframe {
    border: none;
    filter: grayscale(0%);
    transition: filter 0.3s ease;
}

.location-card:hover .map-container iframe {
    filter: grayscale(0%) brightness(1.05);
}

.location-info {
    padding: 2rem;
}

.location-address {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.location-address i {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-top: 0.2rem;
}

.location-phone {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.location-phone i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.location-phone a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.location-phone a:hover {
    color: #357abd;
}

.location-directions {
    text-align: center;
}

.directions-btn {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(71, 159, 248, 0.3);
}

.directions-btn:hover {
    background: #357abd;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(71, 159, 248, 0.4);
}

.directions-btn i {
    font-size: 1.2rem;
}

  /* Quick Contact Banner */
  .quick-contact-banner {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #357abd 100%);
    color: white;
    text-align: center;
  }

  .quick-contact-banner h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }

  .quick-contact-banner p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
  }

  .quick-contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .quick-btn {
    background: white;
    color: var(--primary-color);
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  }

  .quick-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.3);
    color: var(--primary-color);
  }

  /* Responsive */
  @media (max-width: 768px) {
    .hero-title {
      font-size: 2.2rem;
    }

    .hero-subtitle {
      font-size: 1.1rem;
    }

    .section-header h2 {
      font-size: 2rem;
    }

    .contact-methods-grid {
      grid-template-columns: 1fr;
    }

    .form-container {
      padding: 30px;
    }

    .form-row {
      grid-template-columns: 1fr;
    }

    .location-title {
    font-size: 1.5rem;
    padding: 1.2rem;
    }
    
    .location-info {
    padding: 1.5rem;
    }
    
    .map-container {
    height: 250px;
    }

    .quick-contact-buttons {
      flex-direction: column;
      align-items: center;
    }

    .quick-btn {
      width: 100%;
      max-width: 300px;
      justify-content: center;
    }
  }