﻿.contact-page {
    background: #fff;
}

.contact-card {
    border: 1px solid #e9ecef;
    border-radius: 16px;
    padding: 24px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,.04);
}

.contact-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0;
}

.contact-label {
    font-size: .9rem;
    font-weight: 700;
    color: #6c757d;
    margin-bottom: 4px;
}

.contact-value {
    font-size: 1rem;
    color: #212529;
}

#contactForm .form-label {
    font-weight: 600;
}

#contactForm .form-control,
#contactForm .form-select {
    min-height: 46px;
    border-radius: 10px;
}

#contactForm textarea.form-control {
    min-height: 120px;
}

@media (max-width: 991.98px) {
    .contact-card {
        padding: 18px;
    }

    .contact-title {
        font-size: 1.35rem;
    }
}

.contact-hp-wrap {
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.captcha-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.captcha-canvas {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    background: #f8f9fa;
}

.captcha-input {
    width: 160px;
    min-width: 140px;
}

/* FOOTER LINKS */
.ftr-links a {
    display: block;
    color: #0d6efd; /* bootstrap primary blue */
    text-decoration: none;
    font-weight: 500;
    padding: 4px 0;
    transition: all 0.2s ease;
}

    /* hover */
    .ftr-links a:hover {
        color: #0a58ca;
        text-decoration: underline;
        transform: translateX(2px);
    }

    /* active */
    .ftr-links a:active {
        color: #084298;
    }

    /* focus (accessibility) */
    .ftr-links a:focus {
        outline: none;
        text-decoration: underline;
    }

/* başlık altı spacing */
.ftr-title {
    font-weight: 600;
    margin-bottom: 10px;
}

.ftr-links a::after {
    content: "";
    display: block;
    width: 0;
    height: 1px;
    background: #0d6efd;
    transition: width 0.2s;
}

.ftr-links a:hover::after {
    width: 100%;
}