/* ==========================================================================
   LOCATION PAGE STYLES (Ultra-Pro SaaS Vibe)
   ========================================================================== */

/* --- 1. HERO SECTION --- */
.dwu-location-hero {
    background-color: #0f172a; /* Dark Navy */
    padding: clamp(6rem, 10vw, 8rem) 0 clamp(4rem, 8vw, 6rem);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Subtle background glow effect */
.dwu-location-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, rgba(15, 23, 42, 0) 70%);
    z-index: 1;
}

.dwu-location-hero .dwu-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.dwu-location-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.dwu-location-hero h1 span {
    color: #2563eb; /* Primary Blue */
}

.dwu-location-hero p {
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    line-height: 1.7;
    margin: 0 auto;
    font-weight: 400;
}

/* --- 2. CONNECTIVITY STATS GRID --- */
.dwu-connectivity-stats {
    padding: 4rem 0;
    background-color: #f8fafc;
    border-bottom: 1px solid var(--glass-border);
}

.dwu-stats-grid {
    display: grid;
    /* Fluid Grid - Mobile First */
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.dwu-stat-card {
    background: #ffffff;
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dwu-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.3);
}

.dwu-stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dwu-stat-data h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
    margin: 0 0 0.25rem 0;
}

.dwu-stat-data h3 span {
    font-size: 1rem;
    color: #64748b;
    font-weight: 600;
}

.dwu-stat-data p {
    margin: 0;
    color: #475569;
    font-weight: 500;
    font-size: 0.95rem;
}

/* --- 3. GLASSMORPHISM MAP SECTION --- */
.dwu-map-section {
    padding: 5rem 0 8rem 0;
    background-color: #f8fafc;
}

.dwu-map-glass-card {
    position: relative;
    width: 100%;
    height: clamp(400px, 60vh, 600px);
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.15);
    z-index: 2;
}

.dwu-map-glass-card iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: grayscale(15%) contrast(105%); 
    transition: filter 0.3s ease;
}

.dwu-map-glass-card:hover iframe {
    filter: grayscale(0%) contrast(100%);
}


/* ==========================================================================
   3.1 MAP CTA OVERLAY
   ========================================================================== */
.dwu-map-cta-overlay {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    pointer-events: auto; /* Allows clicking the button over the map */
}

/* Base button styles applied globally, just ensuring no underline */
.dwu-map-cta-overlay a {
    text-decoration: none !important;
    white-space: nowrap;
}

/* ==========================================================================
   4. NEARBY LANDMARKS (POI)
   ========================================================================== */
.dwu-landmarks-section {
    padding: 2rem 0 6rem 0;
    background-color: #f8fafc;
}

.dwu-landmarks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); /* Fluidly drops to 1 col on mobile */
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.dwu-landmark-list h4 {
    font-family: var(--font-heading);
    color: var(--dark-navy);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.dwu-landmark-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dwu-landmark-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px dashed rgba(15, 23, 42, 0.15);
    color: #334155;
    font-weight: 600;
    font-size: 1rem;
}

.dwu-landmark-list li:last-child {
    border-bottom: none;
}

/* Time badge styling */
.dwu-landmark-list li span:last-child {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-blue);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
}