/* ===================================================
   MODERN CONTACT PAGE STYLE – SYMMETRIC LAYOUT
=================================================== */

.contact-modern-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 20px;
    background-color: #f9f9f9;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.contact-modern-card {
    display: flex;
    max-width: 1400px;
    width: 100%;
    background-color: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.contact-modern-left {
    flex: 1;
    padding: 60px 40px;
}

.contact-modern-left h1 {
    font-size: 2.8rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 10px;
}

.contact-modern-left p {
    color: #7f8c8d;
    font-size: 1rem;
    margin-bottom: 30px;
}

.contact-modern-form {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.contact-modern-form .form-group {
    flex: 1 1 48%;
    display: flex;
    flex-direction: column;
}

.contact-modern-form .form-group.full-width {
    flex: 1 1 100%;
}

.contact-modern-form label {
    font-weight: 600;
    margin-bottom: 6px;
    color: #34495e;
}

.contact-modern-form input,
.contact-modern-form textarea {
    padding: 14px;
    border-radius: 12px;
    border: 1px solid #ccc;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-modern-form input:focus,
.contact-modern-form textarea:focus {
    border-color: #e67e22;
    outline: none;
}

.contact-modern-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-modern-form .btn-submit {
    margin-top: 20px;
    background-color: #e67e22;
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-modern-form .btn-submit:hover {
    background-color: #cf5d12;
}

.contact-modern-right {
    flex: 1;
    background: #f4f6fc;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.contact-modern-right img {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: contain;
    transform: translateY(-60px);
    /* Yukarı kaydırma */
}

@media (max-width: 768px) {
  .contact-modern-card {
    flex-direction: column;
    border-radius: 0;
  }

  .contact-modern-left,
  .contact-modern-right {
    padding: 30px 20px;
    flex: 1 1 100%;
  }

  .contact-modern-left h1 {
    font-size: 2rem;
  }

  .contact-modern-form .form-group {
    flex: 1 1 100%;
  }

  .contact-modern-right img {
    transform: none;
    max-width: 100%;
  }
}