.contact-hero {
       background: linear-gradient(135deg, rgba(0, 170, 193, 0.9), rgba(46, 46, 56, 0.8)), url('../images/about-us-banner.jpg') no-repeat center center / cover;
      height: 60vh;
      display: flex;
      align-items: center;
      color: white;
      text-align: center;
    }

    .contact-main {
      padding: 80px 0;
      background: white;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: flex-start;
    }

    .contact-info-section {
      background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
      padding: 40px;
      border-radius: 20px;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }

    .contact-info-item {
      display: flex;
      align-items: flex-start;
      gap: 20px;
      margin-bottom: 30px;
      padding: 20px;
      background: white;
      border-radius: 15px;
      transition: all 0.3s ease;
    }

    .contact-info-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .contact-icon {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: var(--secondary-color);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      color: white;
      flex-shrink: 0;
    }

    .contact-details h4 {
      font-size: 1.3rem;
      color: var(--primary-color);
      margin-bottom: 8px;
      font-weight: 600;
    }

    .contact-details p {
      color: var(--text-light);
      line-height: 1.6;
      margin: 0;
    }

    .contact-details a {
      color: var(--secondary-color);
      text-decoration: none;
      font-weight: 500;
    }

    .contact-details a:hover {
      text-decoration: underline;
    }

    .contact-form-section {
      background: white;
      padding: 40px;
      border-radius: 20px;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }

    .contact-form-section h3 {
      font-size: 2rem;
      color: var(--primary-color);
      margin-bottom: 10px;
      font-weight: 600;
    }

    .contact-form-section p {
      color: var(--text-light);
      margin-bottom: 30px;
      line-height: 1.6;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-bottom: 25px;
    }

    .form-group {
      margin-bottom: 25px;
    }

    .form-group label {
      display: block;
      margin-bottom: 8px;
      font-weight: 500;
      color: var(--primary-color);
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 15px;
      border: 2px solid #e9ecef;
      border-radius: 10px;
      font-size: 1rem;
      transition: all 0.3s ease;
      font-family: inherit;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: var(--secondary-color);
      box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.1);
    }

    .form-group textarea {
      resize: vertical;
      min-height: 120px;
    }

    .submit-btn {
      background: var(--secondary-color);
      color: white;
      border: none;
      padding: 15px 40px;
      border-radius: 50px;
      font-size: 1.1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      width: 100%;
    }

    .submit-btn:hover {
      background: #005f92;
      transform: translateY(-2px);
      box-shadow: 0 10px 25px rgba(0, 119, 182, 0.3);
    }

    .map-section {
      padding: 80px 0;
      background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    }

    .map-container {
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
      height: 400px;
    }

    .map-container iframe {
      width: 100%;
      height: 100%;
      border: none;
    }

    .office-hours {
      background: var(--primary-color);
      color: white;
      padding: 40px;
      border-radius: 20px;
      margin-top: 30px;
    }

    .office-hours h4 {
      font-size: 1.5rem;
      margin-bottom: 20px;
      font-weight: 600;
    }

    .hours-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
    }

    .hours-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .hours-item:last-child {
      border-bottom: none;
    }

    .day {
      font-weight: 500;
    }

    .time {
      opacity: 0.9;
    }

    .cta-cards {
      padding: 80px 0;
      background: white;
    }

    .cta-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 50px;
    }

    .cta-card {
      background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
      color: white;
      padding: 40px 30px;
      border-radius: 20px;
      text-align: center;
      transition: all 0.3s ease;
    }

    .cta-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0, 119, 182, 0.3);
    }

    .cta-card-icon {
      font-size: 3rem;
      margin-bottom: 20px;
      opacity: 0.9;
    }

    .cta-card h4 {
      font-size: 1.5rem;
      margin-bottom: 15px;
      font-weight: 600;
    }

    .cta-card p {
      opacity: 0.9;
      margin-bottom: 25px;
      line-height: 1.6;
    }

    .cta-card .btn {
      background: white;
      color: var(--secondary-color);
      border: none;
      padding: 12px 25px;
      border-radius: 25px;
      font-weight: 600;
      text-decoration: none;
      display: inline-block;
      transition: all 0.3s ease;
    }

    .cta-card .btn:hover {
      background: #f8f9fa;
      transform: translateY(-2px);
    }

    @media (max-width: 768px) {
      .contact-hero {
        height: 50vh;
      }
      
      .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }
      
      .form-row {
        grid-template-columns: 1fr;
      }
      
      .contact-info-section,
      .contact-form-section {
        padding: 30px 20px;
      }
      
      .hours-grid {
        grid-template-columns: 1fr;
      }
    }