﻿.custom-pin {
    /* mavi pin için yumuşak gölge */
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.35));
}

.marker-root {
    position: relative;
    display: inline-block;
}

.pin-label {
    position: absolute;
    left: 50%;
    bottom: 44px; /* pin yüksekliği + boşluk */
    transform: translateX(-50%);
    background: #fff;
    color: #1F2937;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,.25);
    white-space: nowrap;
    max-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
    pointer-events: none; /* tıklama marker'a gitsin */
}

    .pin-label::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: -6px;
        transform: translateX(-50%);
        border: 6px solid transparent;
        border-top-color: #fff; /* baloncuk oku */
    }

/* İstersen dar ekranda balonu gizle */
@media (max-width: 576px) {
    .pin-label {
        display: none;
    }
}

/* =============================================
   İLETİŞİM PAGE - VipTime Design
   ============================================= */

/* Hero Section */
.vt-contact-hero {
    background: linear-gradient(135deg, #0e7490 0%, #0891b2 100%);
    padding: 4rem 0 3rem;
    position: relative;
}

.vt-contact-hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin: 1rem 0 .5rem;
    line-height: 1.2;
}

.vt-contact-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .85);
    margin: 0;
}

/* Contact Cards */
.vt-contact-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    border: 1px solid #e2e8f0;
    height: 100%;
    transition: transform .25s, box-shadow .25s;
}

.vt-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .1);
}

.vt-contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(8,145,178,.1), rgba(6,182,212,.15));
    color: var(--primary, #0891b2);
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.vt-contact-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.vt-contact-company {
    font-size: .95rem;
    font-weight: 700;
    color: #0891b2;
    margin-bottom: .75rem;
}

.vt-contact-detail {
    font-size: .9rem;
    color: #64748b;
    margin-bottom: .35rem;
    line-height: 1.6;
}

.vt-contact-link {
    display: block;
    font-size: .9rem;
    color: #64748b;
    text-decoration: none;
    margin-bottom: .5rem;
    transition: color .2s;
}

.vt-contact-link:hover {
    color: var(--primary, #0891b2);
}

.vt-contact-link i {
    color: var(--primary, #0891b2);
    font-size: .85rem;
}

/* Contact Form Card */
.vt-contact-form-card {
    background: #fff;
    border-radius: 18px;
    padding: 2.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
    border: 1px solid #e2e8f0;
}

.vt-contact-form-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
}

.vt-form-input {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: .75rem 1rem;
    font-size: .95rem;
    transition: border-color .2s, box-shadow .2s;
}

.vt-form-input:focus {
    border-color: var(--primary, #0891b2);
    box-shadow: 0 0 0 3px rgba(8, 145, 178, .1);
    outline: none;
}

.vt-contact-submit {
    display: inline-flex;
    align-items: center;
    padding: .85rem 2rem;
    border: 0;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary, #0891b2), var(--secondary, #0e7490));
    color: #fff;
    font-size: .95rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform .15s, box-shadow .25s;
}

.vt-contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(8, 145, 178, .3);
}

.vt-contact-submit i {
    transition: transform .2s;
}

.vt-contact-submit:hover i {
    transform: translateX(3px);
}

/* Map Wrapper */
.vt-contact-map-wrap {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
    border: 1px solid #e2e8f0;
    height: 100%;
    min-height: 450px;
}

#map {
    width: 100%;
    height: 100%;
    min-height: 450px;
}

/* Responsive */
@media (max-width: 767.98px) {
    .vt-contact-hero-title {
        font-size: 2rem;
    }

    .vt-contact-form-card {
        padding: 1.5rem;
    }

    .vt-contact-map-wrap {
        min-height: 350px;
    }

    #map {
        min-height: 350px;
    }
}
