﻿/*=========================================================
  ENMODÜLER YAZILIM — İLETİŞİM
=========================================================*/

.en-contact-page {
    background: var(--gray-100);
    padding: 70px 0;
}

.en-contact-header {
    margin-bottom: 50px;
}

/*==================================================
    SOL KART
==================================================*/

.en-contact-info-card {
    background: #fff;
    border-radius: 22px;
    box-shadow: var(--shadow-sm);
    padding: 35px;
    height: 100%;
}

    .en-contact-info-card hr {
        margin: 28px 0;
        border-color: var(--gray-200);
    }

/*==================================================
    İLETİŞİM SATIRI
==================================================*/

.en-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.en-contact-icon {
    width: 62px;
    height: 62px;
    min-width: 62px;
    border-radius: 18px;
    background: var(--primary-50);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

    .en-contact-icon i {
        font-size: 24px;
        color: var(--primary);
    }

.en-contact-item:hover .en-contact-icon {
    background: var(--primary);
    transform: translateY(-3px);
}

    .en-contact-item:hover .en-contact-icon i {
        color: #fff;
    }

/*==================================================
    YAZILAR
==================================================*/

.en-contact-content {
    flex: 1;
}

    .en-contact-content h5 {
        font-size: 20px;
        font-weight: 700;
        color: var(--title);
        margin-bottom: 10px;
    }

    .en-contact-content p {
        color: #666;
        line-height: 28px;
        margin-bottom: 12px;
    }

        .en-contact-content p a {
            color: inherit;
            font-weight: inherit;
        }

    .en-contact-content > a {
        color: var(--primary);
        font-weight: 600;
        text-decoration: none;
        transition: var(--transition);
    }

        .en-contact-content > a:hover {
            letter-spacing: .4px;
        }

        .en-contact-content > a i {
            margin-left: 6px;
        }

/*==================================================
    HARİTA
==================================================*/

.en-map-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    background: #fff;
}

    .en-map-card iframe {
        width: 100%;
        height: 650px;
        border: 0;
        display: block;
    }

/*==================================================
    FLOATING KART
==================================================*/

.en-map-floating-card {
    position: absolute;
    top: 25px;
    left: 25px;
    z-index: 5;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    padding: 20px 24px;
    box-shadow: var(--shadow);
}

    .en-map-floating-card h4 {
        font-size: 22px;
        margin-bottom: 6px;
        color: var(--title);
        font-weight: 700;
    }

    .en-map-floating-card span {
        display: block;
        color: #777;
        margin-bottom: 8px;
    }

    .en-map-floating-card strong {
        color: var(--primary);
        font-size: 18px;
    }

/*==================================================
    HARİTA BUTONU
==================================================*/

.en-map-button {
    text-align: center;
    margin-top: 35px;
}

/*==================================================
    RESPONSIVE
==================================================*/

@media (max-width: 991.98px) {

    .en-contact-info-card {
        margin-bottom: 35px;
    }

    .en-map-card iframe {
        height: 450px;
    }

    .en-map-floating-card {
        position: relative;
        left: auto;
        top: auto;
        margin: 20px;
    }
}

@media (max-width: 767.98px) {

    .en-contact-page {
        padding: 50px 0;
    }

    .en-contact-info-card {
        padding: 25px;
    }

    .en-contact-item {
        gap: 15px;
    }

    .en-contact-icon {
        width: 54px;
        height: 54px;
        min-width: 54px;
    }

        .en-contact-icon i {
            font-size: 20px;
        }

    .en-contact-content h5 {
        font-size: 18px;
    }

    .en-map-card iframe {
        height: 350px;
    }

    .en-map-floating-card {
        padding: 18px;
    }
}
