/* Google Fonts - Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #226671;
    --secondary-color: #e58810;
    --text-dark: #1f2937;
    --text-muted: #4b5563;
    --bg-light: #faf9f6;
}

/* ================= BANNER / BREADCRUMB ================= */
/* Not: .iletisim-banner sayfadaki ilk akış-içi eleman. spasporheader.php'deki
   .navbar-wrapper position:absolute olduğu için akıştan çıkar ve bu banner'ın
   TAM ÜZERİNE biner - diğer iç sayfalarla (şubeler, spor vb.) birebir aynı mantık. */
.iletisim-banner {
    position: relative;
    background:
        linear-gradient(to bottom, rgba(20,30,32,0.65) 0%, rgba(20,30,32,0.45) 60%, rgba(20,30,32,0.55) 100%),
        url('../uploads/spaspor/iletisim/arkaplan.jpg') center center / cover no-repeat;
    padding: 11rem 0 4.5rem;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

.iletisim-banner .container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.iletisim-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.iletisim-badge .dot {
    width: 6px;
    height: 6px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--secondary-color);
}

.iletisim-banner h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -1px;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.35);
}

.iletisim-banner .breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
}

.iletisim-banner .breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
}

.iletisim-banner .breadcrumb a:hover {
    color: var(--secondary-color);
}

/* ================= GENEL CONTAINER ================= */
.spa-contact-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ================= GİRİŞ / TANITIM BÖLÜMÜ ================= */
.spa-contact-intro {
    position: relative;
    padding: 6rem 0 3rem;
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
}

.spa-contact-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.spa-contact-header p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
    font-weight: 400;
}

.spa-contact-header h2 {
    font-size: 2.6rem;
    font-weight: 300;
    color: #111;
    margin: 0 0 1.2rem;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.spa-contact-header h2 span {
    font-weight: 700;
    color: var(--primary-color);
}

/* ================= İLETİŞİM BİLGİ KARTLARI ================= */
.spa-contact-info {
    padding: 3rem 0;
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
}

.spa-contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.spa-contact-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 2.2rem 1.8rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0,0,0,0.03);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.spa-contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(34, 102, 113, 0.1);
}

.spa-contact-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(34, 102, 113, 0.08);
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-bottom: 1.3rem;
}

.spa-contact-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111;
    margin: 0 0 0.8rem 0;
}

.spa-contact-card p,
.spa-contact-card a {
    display: block;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0;
    text-decoration: none;
}

.spa-contact-card a:hover {
    color: var(--secondary-color);
}

/* ================= HARİTA + FORM BÖLÜMÜ ================= */
.spa-contact-main {
    padding: 2rem 0 6rem;
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
}

.spa-contact-main-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

/* --- Harita --- */
.spa-contact-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    min-height: 480px;
    position: relative;
}

.spa-contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 480px;
    border: 0;
    display: block;
}

/* --- Form --- */
.spa-contact-form-wrapper {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 2.8rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0,0,0,0.03);
}

.spa-contact-form-wrapper h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111;
    margin: 0 0 0.5rem;
}

.spa-contact-form-wrapper > p {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin: 0 0 2rem;
    line-height: 1.6;
}

.spa-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
}

.spa-contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.3rem;
}

.spa-contact-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.spa-contact-field label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
}

.spa-contact-field input,
.spa-contact-field textarea {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    padding: 0.9rem 1.1rem;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.1);
    background-color: var(--bg-light);
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    resize: none;
}

.spa-contact-field input:focus,
.spa-contact-field textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(34, 102, 113, 0.1);
}

.spa-contact-submit {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background-color: var(--secondary-color);
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 1rem 2.2rem;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 25px rgba(229, 136, 16, 0.3);
    margin-top: 0.5rem;
}

.spa-contact-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(229, 136, 16, 0.4);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
    .iletisim-banner h1 { font-size: 2.2rem; }
    .spa-contact-header h2 { font-size: 2.2rem; }
    .spa-contact-main-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .spa-contact-map { min-height: 380px; }
    .spa-contact-map iframe { min-height: 380px; }
}

@media (max-width: 768px) {
    .iletisim-banner { padding: 8rem 0 2.5rem; }

    .spa-contact-intro { padding: 4rem 0 2rem; }
    .spa-contact-info { padding: 2rem 0; }
    .spa-contact-main { padding: 1rem 0 4rem; }
    .spa-contact-header h2 { font-size: 1.9rem; }
    .spa-contact-container { padding: 0 1.5rem; }

    .spa-contact-form-wrapper { padding: 2rem 1.5rem; }
    .spa-contact-form-row {
        grid-template-columns: 1fr;
        gap: 1.3rem;
    }
    .spa-contact-submit {
        width: 100%;
        justify-content: center;
    }
}