﻿body {
}
.contact-page {
    padding: 60px 0 90px;
}

.contact-header {
    text-align: center;
    margin-bottom: 45px;
}

    .contact-header span {
        color: var(--awax-red);
        font-size: 12px;
        font-weight: 900;
        letter-spacing: 2px;
    }

    .contact-header h1 {
        margin: 10px 0;
        font-size: 42px;
        font-weight: 900;
    }

    .contact-header p {
        color: var(--awax-muted);
    }

.contact-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 35px;
}

.contact-information {
    display: grid;
    gap: 18px;
}

.contact-card {
    padding: 22px;
    background: #fff;
    border: 1px solid var(--awax-border);
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
}

    .contact-card h3 {
        margin: 0 0 8px;
        font-size: 18px;
    }

    .contact-card p {
        margin: 0;
        color: var(--awax-muted);
        white-space: pre-line;
    }

    .contact-card a {
        color: var(--awax-red);
        text-decoration: none;
        font-weight: 700;
    }

.contact-map {
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

    .contact-map iframe {
        width: 100%;
        min-height: 650px;
        border: 0;
    }

.contact-map-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 650px;
    background: #eceff3;
    color: var(--awax-muted);
}

.contact-empty-state {
    padding: 60px;
    text-align: center;
    border: 1px dashed var(--awax-border);
    border-radius: 14px;
}

@media(max-width:900px) {

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-map iframe,
    .contact-map-placeholder {
        min-height: 350px;
    }
}
/* =========================================
   İLETİŞİM - MOBİL SON RÖTUŞLAR
   ========================================= */

@media (max-width: 576px) {

    .contact-page {
        padding: 34px 0 95px;
    }

    .contact-header {
        margin-bottom: 25px;
        text-align: left;
    }

        .contact-header span {
            font-size: 11px;
            letter-spacing: 1.7px;
        }

        .contact-header h1 {
            margin: 7px 0 10px;
            font-size: 30px;
            line-height: 1.15;
        }

        .contact-header p {
            margin: 0;
            font-size: 14px;
            line-height: 1.6;
        }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-information {
        gap: 12px;
    }

    .contact-card {
        padding: 18px;
        border-radius: 11px;
    }

        .contact-card h3 {
            margin-bottom: 6px;
            font-size: 16px;
        }

        .contact-card p,
        .contact-card a {
            font-size: 13px;
            line-height: 1.6;
            overflow-wrap: anywhere;
        }

    .contact-map {
        border-radius: 12px;
    }

        .contact-map iframe,
        .contact-map-placeholder {
            min-height: 320px;
        }

    .contact-empty-state {
        padding: 35px 16px;
        border-radius: 11px;
        font-size: 13px;
    }
}