/* ===== LOCATIONS PAGE STYLES ===== */

/* Hero Section */
.locations-hero {
    position: relative;
    padding: 12rem var(--side-padding) 8rem;
    background: radial-gradient(circle at 50% 50%, #1a1a1a 0%, var(--color-black) 90%);
    text-align: center;
    overflow: hidden;
}

.locations-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../../../assets/images/used/03/dreams-infinite-photography-hero-prewedding.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
    filter: blur(2px);
}

.locations-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.locations-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: var(--color-white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.locations-hero-subtitle {
    font-family: var(--font-accent);
    color: var(--color-gold);
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

/* Coverage Section Redesign */
.coverage-section {
    padding: var(--space-xl) var(--side-padding);
    background: radial-gradient(circle at 10% 20%, #121212 0%, var(--color-black) 90%);
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    position: relative;
    overflow: hidden;
}

.coverage-container {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: var(--space-xl);
    align-items: center;
}

.coverage-text .section-title {
    font-size: clamp(2.3rem, 4vw, 3.5rem);
    margin-bottom: 2rem;
    font-weight: 300;
}

.coverage-text .lead-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.coverage-text .body-text {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

/* Travel Metrics */
.travel-metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
}

.travel-metric-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.travel-metric-item .metric-val {
    font-family: var(--font-accent);
    color: var(--color-gold);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.travel-metric-item .metric-lbl {
    font-family: var(--font-accent);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Viewfinder Wrapper */
.viewfinder-wrapper {
    position: relative;
    background: #080808;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    aspect-ratio: 16/10;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6);
    transition: var(--transition-smooth);
}

.viewfinder-wrapper:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 40px 90px rgba(212, 175, 55, 0.08);
}

.viewfinder-wrapper img.coverage-map-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: var(--transition-slow);
}

.viewfinder-wrapper:hover img.coverage-map-img {
    transform: scale(1.03);
    opacity: 0.95;
}

/* Viewfinder overlay items */
.viewfinder-corners .corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-gold);
    z-index: 5;
    pointer-events: none;
    transition: all 0.4s ease;
}

.viewfinder-wrapper:hover .viewfinder-corners .corner {
    width: 25px;
    height: 25px;
}

.corner.top-left { top: 20px; left: 20px; border-right: none; border-bottom: none; }
.corner.top-right { top: 20px; right: 20px; border-left: none; border-bottom: none; }
.corner.bottom-left { bottom: 20px; left: 20px; border-right: none; border-top: none; }
.corner.bottom-right { bottom: 20px; right: 20px; border-left: none; border-top: none; }

.viewfinder-header {
    position: absolute;
    top: 22px;
    left: 45px;
    right: 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 4;
    font-family: var(--font-accent);
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    pointer-events: none;
}

.rec-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.red-dot {
    width: 8px;
    height: 8px;
    background: #ff3b30;
    border-radius: 50%;
    display: inline-block;
    animation: flash 1.5s step-start infinite;
}

@keyframes flash {
    50% { opacity: 0; }
}

.viewfinder-footer {
    position: absolute;
    bottom: 22px;
    left: 45px;
    right: 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 4;
    font-family: var(--font-accent);
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    pointer-events: none;
}

/* Grid overlay */
.viewfinder-grid-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    opacity: 0.15;
}

.grid-line {
    position: absolute;
    background: rgba(255, 255, 255, 0.4);
}

.grid-line.horizontal {
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
}

.grid-line.vertical {
    left: 50%;
    top: 0;
    width: 1px;
    height: 100%;
}

/* Popular Shoot Locations Grid */
.spots-section {
    padding: var(--space-xl) var(--side-padding);
    background: #0d0d0d;
}

.spots-container {
    max-width: var(--container-width);
    margin: 0 auto;
}

.spots-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--color-white);
    margin-bottom: 4rem;
    font-weight: 300;
}

.spots-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.spot-card {
    position: relative;
    height: 400px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.spot-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.spot-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    transition: var(--transition-fast);
}

.spot-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-gold);
}

.spot-card:hover img {
    transform: scale(1.08);
}

.spot-tag {
    font-family: var(--font-accent);
    font-size: 0.65rem;
    color: var(--color-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.spot-name {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--color-white);
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.spot-desc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}

/* Outstation Travel Process */
.process-section {
    padding: var(--space-xl) var(--side-padding);
    background: var(--color-black);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.process-container {
    max-width: var(--container-width);
    margin: 0 auto;
}

.process-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-white);
    margin-bottom: 5rem;
    font-weight: 300;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    position: relative;
}

.process-step {
    background: #0d0d0d;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem 2rem;
    border-radius: var(--radius-sm);
    text-align: center;
    position: relative;
    transition: var(--transition-fast);
}

.process-step:hover {
    border-color: var(--color-gold);
    transform: translateY(-5px);
}

.step-num {
    width: 50px;
    height: 50px;
    background: var(--color-gold);
    color: var(--color-black);
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -4.5rem auto 2rem;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.step-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-white);
    margin-bottom: 1rem;
    font-weight: 400;
}

.step-desc {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Responsiveness */
@media (max-width: 1200px) {
    .spots-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .coverage-container {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        text-align: center;
    }
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 5rem;
        padding-top: 2rem;
    }
    .process-step {
        max-width: 450px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .spots-grid {
        grid-template-columns: 1fr;
    }
    .spot-card {
        height: 350px;
    }
}
