.why-contact-section {
    background: #f8f9ff;
    font-family: 'Poppins', sans-serif;
  }

  .why-contact-subtitle {
    color: #764ba2;
    font-weight: 500;
    font-size: 1rem;
  }

  .why-contact-title {
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 30px;
  }

  /* Contact Details */
  .why-contact-details {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
  }

  .why-contact-box {
    background: white;
    padding: 20px;
    flex: 1;
    min-width: 220px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    animation: why-fadeIn 0.6s ease forwards;
    opacity: 0;
  }

  .why-contact-icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    font-size: 1.4rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
  }

  .why-contact-label {
    font-weight: 600;
    font-size: 0.95rem;
    color: #333;
  }

  .why-contact-value {
    font-size: 0.9rem;
    color: #666;
  }

  /* Wrapper Layout */
  .why-contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
  }

  .why-contact-form {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    animation: why-slideUp 0.6s ease forwards;
    opacity: 0;
  }

  .why-contact-map {
    height: 100%;
    min-height: 350px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    animation: why-slideUp 0.8s ease forwards;
    opacity: 0;
  }

  /* Floating Label Inputs */
  .why-form-group {
    position: relative;
    margin-bottom: 25px;
  }

  .why-input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    outline: none;
    background: transparent;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
  }

  .why-input:focus {
    border-color: #764ba2;
  }

  .why-label {
    position: absolute;
    left: 15px;
    top: 12px;
    color: #777;
    font-size: 0.9rem;
    pointer-events: none;
    transition: 0.3s ease;
  }

  .why-input:focus + .why-label,
  .why-input:not(:placeholder-shown) + .why-label {
    top: -8px;
    left: 10px;
    background: white;
    padding: 0 6px;
    font-size: 0.75rem;
    color: #764ba2;
  }

  .why-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border: none;
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.3s ease;
  }

  .why-btn:hover {
    background: linear-gradient(135deg, #764ba2, #667eea);
    transform: translateY(-2px);
  }

  /* Animations */
  @keyframes why-slideUp {
    from {
      transform: translateY(20px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  @keyframes why-fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
  }

  @media (max-width: 768px) {
    .why-contact-wrapper {
      grid-template-columns: 1fr;
    }
    .why-contact-details {
      flex-direction: column;
    }
  }