

/* ARKA PLAN */
.contact-section {
    background: #f4f5f7;
    padding: 80px 20px;
}

/* ===========================================================
   BAŞLIK
=========================================================== */
.contact-header {
    margin-bottom: 40px;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #b3003f;
}

.contact-subtitle {
    color: #666;
    margin-top: 8px;
}

.title-divider {
    width: 90px;
    height: 4px;
    background: #b3003f;
    border-radius: 10px;
    margin: 16px auto 0 auto;
}

/* ===========================================================
   FORM KARTI
=========================================================== */
.contact-form-card {
    background: rgba(255,255,255,0.70);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 35px;
    border: 1px solid rgba(255,0,0,0.12);
    box-shadow: 0 10px 35px rgba(0,0,0,0.15);
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    font-weight: 600;
    color: #444;
    margin-bottom: 5px;
    display: block;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #e2e2e2;
    border-radius: 12px;
    font-size: 1rem;
    outline: none;
    transition: 0.25s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #b3003f;
    box-shadow: 0 0 0 3px rgba(179,0,63,.20);
}

/* BUTON */
.btn-send {
    background: linear-gradient(135deg, #b3003f, #ff4d6d);
    border: none;
    padding: 12px 32px;
    color: #fff;
    font-weight: 600;
    border-radius: 24px;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(179,0,63,0.35);
    transition: 0.25s ease;
}

.btn-send:hover {
    background: linear-gradient(135deg, #ff4d6d, #b3003f);
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(179,0,63,0.45);
}

/* ===========================================================
   İLETİŞİM BİLGİLERİ KARTI
=========================================================== */
.contact-info-card {
    background: rgba(255,255,255,0.80);
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 18px;
    border: 1px solid rgba(255,0,0,0.12);
    box-shadow: 0 10px 35px rgba(0,0,0,0.15);
}

.info-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #b3003f;
    margin-bottom: 15px;
}

.info-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
}

.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.info-list i {
    font-size: 1.3rem;
    color: #b3003f;
    width: 28px;
}

.info-list a {
    text-decoration: none;
    color: #333;
    transition: 0.25s ease;
}

.info-list a:hover {
    color: #b3003f;
}

.info-subtitle {
    font-weight: 700;
    color: #b3003f;
    margin-bottom: 8px;
}

/* ===========================================================
   RESPONSIVE
=========================================================== */
@media (max-width: 768px) {
    .contact-title {
        font-size: 2rem;
    }

    .contact-form-card,
    .contact-info-card {
        padding: 25px;
    }
}
