/* İLETİŞİM SAYFASI */

/* GENEL */
body,
.contact-page-hero,
.contact-card,
.location-section {
    font-family: "Poppins", sans-serif;
}

body,
.section,
.location-section {
    background: #f6ede3;
}

/* HERO */
.contact-page-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    text-align: center;
    overflow: hidden;
    background: #f6ede3;
}

.contact-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(246, 237, 227, 0.70);
    z-index: 2;
}

.contact-hero-content {
    position: relative;
    z-index: 3;
}

.contact-eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: #d77933;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.contact-page-hero h1 {
    font-family: "Poppins", sans-serif;
    font-size: clamp(46px, 7vw, 78px);
    font-weight: 800;
    line-height: 1.05;
    color: #080b13;
    margin-bottom: 18px;
}

.hero-divider {
    width: 90px;
    height: 3px;
    background: #d77933;
    margin: 0 auto 24px;
    border-radius: 0;
}

.contact-page-hero p {
    max-width: 760px;
    margin: 0 auto;
    color: #4f4f58;
    font-size: 18px;
    line-height: 1.8;
}

/* İLETİŞİM KARTLARI */
.section {
    padding: 70px 0;
    background: #f6ede3;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.second-grid {
    margin-top: 24px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(62, 36, 24, 0.12);
    border-radius: 0;
    padding: 34px 28px;
    text-align: center;
    box-shadow: 0 18px 45px rgba(74, 43, 29, 0.08);
    transition: 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-6px);
    border-color: rgba(215, 121, 51, 0.45);
    background: #ffffff;
}

.contact-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 18px;
    background: #fff7ee;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.contact-card h3 {
    font-family: "Poppins", sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #080b13;
    margin-bottom: 12px;
}

.contact-card p,
.contact-card a {
    color: #5f5f68;
    font-size: 15px;
    line-height: 1.8;
    text-decoration: none;
}

.contact-card a:hover {
    color: #d77933;
}

/* NEREDEYİZ */
.location-section {
    padding: 70px 0;
    background: #f6ede3;
}

.location-title {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 42px;
}

.location-title span {
    display: inline-block;
    margin-bottom: 14px;
    color: #d77933;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.location-title h2 {
    font-family: "Poppins", sans-serif;
    font-size: clamp(34px, 5vw, 54px);
    line-height: 1.12;
    color: #080b13;
    font-weight: 800;
    margin-bottom: 18px;
}

.location-title p {
    color: #5f5f68;
    font-size: 16px;
    line-height: 1.8;
}

.location-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: stretch;
}

.location-video,
.location-map {
    min-height: 420px;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 22px 55px rgba(74, 43, 29, 0.12);
    background: #ffffff;
}

.location-video video,
.location-map iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    display: block;
    border: 0;
    object-fit: cover;
    border-radius: 0;
}

/* MOBİL */
@media (max-width: 992px) {
    .contact-grid,
    .location-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-page-hero {
        min-height: 420px;
    }
}

@media (max-width: 576px) {
    .section,
    .location-section {
        padding: 55px 0;
    }

    .contact-card {
        padding: 28px 22px;
        border-radius: 0;
    }

    .contact-icon {
        border-radius: 0;
    }

    .contact-page-hero h1 {
        font-size: 44px;
    }

    .contact-page-hero p,
    .location-title p {
        font-size: 15px;
    }

    .location-video,
    .location-map,
    .location-video video,
    .location-map iframe {
        min-height: 320px;
        border-radius: 0;
    }
}
.contact-icon {
    width: 74px;
    height: 74px;
    margin: 0 auto 24px;
    background: #f6ede3;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(215, 121, 51, 0.16);
    border-radius: 16px;
}

.contact-icon svg {
    width: 31px;
    height: 31px;
    stroke: #d77933;
    stroke-width: 2.1;
}
.contact-icon .instagram-svg {
    width: 31px;
    height: 31px;
    fill: none;
    stroke: #d77933;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}