/* ========== Home Location — premium 3D map ========== */
.home-location {
    --loc-cream: #f3eee6;
    --loc-paper: #faf7f2;
    --loc-ink: #3d2e24;
    --loc-gold: #c4a574;
    --loc-gold-deep: #a8875a;
    --loc-muted: rgba(61, 46, 36, 0.62);
    position: relative;
    background:
        radial-gradient(ellipse 55% 45% at 12% 88%, rgba(196, 165, 116, 0.18), transparent 60%),
        radial-gradient(ellipse 50% 40% at 90% 12%, rgba(196, 165, 116, 0.14), transparent 55%),
        linear-gradient(180deg, #f7f3ed 0%, var(--loc-cream) 48%, #efe8de 100%);
    overflow: hidden;
}

.home-location-inner {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    padding: 28px 16px 48px;
    text-align: center;
}

.home-location-stage {
    max-width: 920px;
    margin: 0 auto;
}

.home-location-map-btn {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    appearance: none;
    -webkit-tap-highlight-color: transparent;
    border-radius: 18px;
    transition: transform 0.35s ease;
}

.home-location-map-btn:focus-visible {
    outline: 2px solid var(--loc-gold);
    outline-offset: 6px;
}

.home-location-map-btn:hover {
    transform: translateY(-4px);
}

.home-location-visual {
    position: relative;
    display: block;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: transparent;
}

.home-location-visual img {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: middle;
    user-select: none;
    pointer-events: none;
}

/* Konya / merkez tıklama alanı */
.home-location-hotspot {
    position: absolute;
    left: 42%;
    top: 42%;
    width: 16%;
    height: 22%;
    border-radius: 50%;
    border: 0;
    padding: 0;
    background: transparent;
    cursor: pointer;
    z-index: 2;
}

.home-location-hotspot::after {
    content: '';
    position: absolute;
    inset: 10%;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(196, 165, 116, 0.35);
    animation: locHotspot 2.4s ease-out infinite;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.home-location-map-btn:hover .home-location-hotspot::after,
.home-location-hotspot:focus-visible::after {
    opacity: 1;
}

.home-location-hotspot:focus-visible {
    outline: none;
}

.home-location-hotspot:focus-visible::after {
    opacity: 1;
    box-shadow: 0 0 0 3px rgba(196, 165, 116, 0.55);
    animation: none;
}

.home-location-meta {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.home-location-address {
    margin: 0;
    max-width: 40ch;
    color: var(--loc-muted);
    font-size: 14px;
    line-height: 1.5;
}

.home-location-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 26px;
    border-radius: 999px;
    border: 1px solid var(--loc-gold);
    background: linear-gradient(180deg, #d4b896 0%, var(--loc-gold-deep) 100%);
    color: #fff !important;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-decoration: none !important;
    box-shadow:
        0 10px 28px rgba(168, 135, 90, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.home-location-cta:hover {
    transform: translateY(-2px);
    filter: brightness(1.04);
    box-shadow: 0 14px 34px rgba(168, 135, 90, 0.36);
    color: #fff !important;
    text-decoration: none !important;
}

.home-location-cta i {
    font-size: 17px;
    transition: transform 0.2s ease;
}

.home-location-cta:hover i {
    transform: translateX(3px);
}

.home-location-hint {
    margin: 0;
    color: rgba(61, 46, 36, 0.45);
    font-size: 12px;
    font-weight: 500;
}

@keyframes locHotspot {
    0% { box-shadow: 0 0 0 0 rgba(196, 165, 116, 0.4); }
    100% { box-shadow: 0 0 0 28px rgba(196, 165, 116, 0); }
}

@media (max-width: 768px) {
    .home-location-inner { padding: 12px 10px 36px; }
    .home-location-hotspot {
        left: 38%;
        top: 40%;
        width: 24%;
        height: 24%;
    }
    .home-location-cta { width: 100%; max-width: 300px; }
    .home-location-address { font-size: 13px; padding: 0 8px; }
}
