/* --- GOOGLE MAP WIDGET --- */
.starter-map-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
    background: #f3f4f6;
}

.starter-map-iframe {
    border: 0;
    width: 100%;
    height: 100%;
    display: block;
}

/* Style 1: Card Overlay */
.starter-map-card-overlay {
    position: absolute;
    top: 24px;
    left: 24px;
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1);
    max-width: 300px;
    z-index: 10;
    transition: transform 0.3s ease;
}
.starter-map-container:hover .starter-map-card-overlay {
    transform: translateY(-4px);
}
.starter-map-card-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}
.starter-map-icon-box {
    background: #eff6ff;
    color: #2563eb;
    padding: 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.starter-map-title {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 4px 0;
}
.starter-map-address {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.4;
}
.starter-map-card-details {
    border-top: 1px solid #f3f4f6;
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.starter-map-detail-item {
    font-size: 13px;
    color: #4b5563;
    display: flex;
    align-items: center;
}
.starter-map-detail-item i {
    color: #3b82f6;
    margin-right: 8px;
}

/* Style 2: Dark Tech */
.starter-map-container--dark {
    background: #111827;
    border: 1px solid #1f2937;
}
.starter-map-container--dark .starter-map-iframe {
    filter: grayscale(100%) invert(92%) contrast(83%);
    opacity: 0.8;
    transition: opacity 0.5s ease;
}
.starter-map-container--dark:hover .starter-map-iframe {
    opacity: 1;
}
.starter-map-pin-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100%); /* Adjust to point at center */
    z-index: 10;
    pointer-events: none;
}
.starter-map-pulse-wrap {
    position: relative;
    width: 24px;
    height: 24px;
}
.starter-map-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.75);
    animation: starter-ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}
.starter-map-pin-dot {
    position: relative;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #6366f1;
    border: 2px solid #fff;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}
.starter-map-dark-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 20px);
    background: #111827;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-family: monospace;
    font-size: 12px;
    border: 1px solid #374151;
    box-shadow: 0 10px 15px rgba(0,0,0,0.5);
    white-space: nowrap;
    z-index: 10;
}
@keyframes starter-ping {
    75%, 100% { transform: scale(2); opacity: 0; }
}

/* Style 3: Glass Bar */
.starter-map-container--glass .starter-map-iframe {
    filter: saturate(1.2) contrast(1.1);
}
.starter-map-glass-bar {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    flex-wrap: wrap;
    gap: 12px;
}
.starter-map-glass-info {
    display: flex;
    align-items: center;
}
.starter-map-glass-icon {
    background: #1f2937;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}
.starter-map-glass-address {
    font-weight: 700;
    color: #111827;
    background: rgba(255,255,255,0.5);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 14px;
}
.starter-map-glass-btn {
    background: #2563eb;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: background 0.2s;
}
.starter-map-glass-btn:hover {
    background: #1d4ed8;
}
.starter-map-glass-btn i {
    margin-left: 6px;
}