/* ================================
   PREMIUM CONTACT FORM DESIGN
   ================================ */

.contact-container {
    max-width: 680px;
    margin: 40px auto;
    padding: 20px;
    text-align: center;
}

.contact-title {
    font-size: 2.3rem;
    font-weight: 800;
    background: linear-gradient(90deg, #0d9488, #14b8a6, #0ee92f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.contact-subtitle {
    font-size: 1.05rem;
    color: #555555;
    margin-bottom: 25px;
}

/* ✔ Başarılı bildirim */
.contact-success {
    background: #d1fae5;
    border: 1px solid #10b981;
    color: #065f46;
    padding: 12px 18px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-weight: 500;
}

/* ==========================
   CARD Tasarım — Glassmorphism
   ========================== */

.contact-card {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(14px);

    padding: 30px 25px;
    border-radius: 20px;

    border: 2px solid transparent;
    background-image:
        linear-gradient(#ffffff90, #ffffff90),
        linear-gradient(90deg, #0d9488, #14b8a6, #0ee92f);

    background-origin: padding-box, border-box;
    background-clip: padding-box, border-box;

    box-shadow: 0 10px 28px rgba(0,0,0,0.10);
    animation: fadeIn 0.4s ease-out;
}

/* Fade animasyonu */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}


/* Form alanları */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-field input,
.contact-field textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;

    border: 2px solid #e5e7eb;
    background: #fff;

    font-size: 1rem;
    transition: all 0.25s ease;
    resize: none;
}

/* Hover + Focus efekti */
.contact-field input:focus,
.contact-field textarea:focus {
    border-color: #14b8a6;
    box-shadow: 0 0 0 3px rgba(20,184,166,0.25);
    outline: none;
}

/* Submit Buton */
.contact-btn {
    width: 100%;
    padding: 14px 22px;
    border-radius: 12px;

    font-size: 1.1rem;
    font-weight: 700;

    background: linear-gradient(90deg, #0d9488, #14b8a6, #0ee92f);
    color: #fff;
    border: none;

    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(20, 184, 166, 0.4);
}

/* Mobil uyumluluk */
@media (max-width: 480px) {
    .contact-title { font-size: 1.9rem; }
    .contact-card { padding: 24px; }
}
