/* =========================
   CONTACT – GENEL
========================= */
.contact {
    padding-top: 100px;
    padding-bottom: 100px;

    /* Intro / Hero ile aynı yapı */
    padding-left: 100px;
    padding-right: 100px;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-family: 'DM Sans', sans-serif;
    color: rgba(255, 255, 255, 0.8);
}

/* =========================
   BAŞLIK
========================= */
.contact-title {
    font-size: clamp(3.7rem, 5vw, 5rem);
    line-height: 1.2;
    margin: 0 0 0 0;
    font-weight: 200;
    letter-spacing: -1px;
    text-align: center;
}

.contact-title strong {
    font-weight: 500;
}

/* =========================
   AÇIKLAMA
========================= */
.contact-subtitle {
    margin-top: 20px;
    font-size: 1.6rem;
    font-weight: 200;
}

.contact-subtitle strong {
    font-weight: 500;
}

/* =========================
   FORM
========================= */
.contact-form {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;

}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
    font-family: 'DM Sans', sans-serif;
    border: 1px solid rgba(0,0,0,0.25);
    border-radius: 15px;
    color: rgba(255, 255, 255, 0.8);
    background-color: #222222;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: rgba(0,0,0,0.5);
}

/* =========================
   BUTON
========================= */
.contact-form button {
    margin-top: 10px;
    padding: 14px;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 900;
    border: none;
    border-radius: 15px;
    background-color: #C80000;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: transform 0.3s;
}

.contact-form button:hover {
    opacity: 0.6;
    transform: scale(1.03);
}

/* =========================
   FORM MESAJLARI
========================= */
.form-message {
    margin-top: 12px;
    font-size: 1rem;
    display: none; /* JS / PHP ile açılacak */
    padding: 10px 12px;
    border-radius: 6px;
    font-weight: 500;
    line-height: 1.4;
    display: flex;
    align-items: center;
    gap: 8px; /* ikon ile yazı arası */
}

/* Hata mesajı */
.form-message.error {
    background-color: rgba(255, 255, 255, 0.8);
    color: #c80000;
    border: 1px solid #c80000;
}

/* Başarılı mesaj */
.form-message.success {
    background-color: rgba(255, 255, 255, 0.8);
    color: #007a00;
    border: 1px solid #007a00;
}

/* Opsiyonel: ikon eklemek için */
.form-message.error::before {
    content: "⚠️";
}

.form-message.success::before {
    content: "✅";
}

/* =========================
   TABLET ≤1024px
========================= */
@media (max-width:1024px){
    .contact {
        padding-left: 50px;
        padding-right: 50px;
    }

    .contact-title {
        font-size: 2.9rem;
    }

    .contact-subtitle {
        font-size: 1.4rem;
    }
}

/* =========================
   TELEFON ≤740px
========================= */
@media (max-width:740px){
    .contact {
        padding-left: 10px;
        padding-right: 10px;
    }

    .contact-title {
        font-size: 2rem;
    }

    .contact-subtitle {
        font-size: 1.2rem;
    }

    .contact-form {
        margin-top: 40px;
    }
}

.section-subtitle {
    margin-top: 20px;
    margin-bottom: 0px;
    margin-left: 100px;
    margin-right: 100px;
    font-size: 1.6rem;
    font-weight: 200;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

.section-subtitle strong {
    font-weight: 500;
}

@media (max-width:1024px){
    .section-subtitle {
        font-size: 1.4rem;
        margin-left: 50px;
        margin-right: 50px;
    }
}

@media (max-width:740px){
    .section-subtitle {
        font-size: 1.2rem;
        margin-left: 10px;
        margin-right: 10px;
    }
}