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

/* Page Header */
.page-header {
    position: relative;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.7) 100%);
    z-index: 1;
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.page-breadcrumb {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--gold-400);
    margin-bottom: 12px;
    display: block;
}

.page-title {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 16px;
    opacity: 0.9;
}

.locations-overview {
    padding: 80px 0;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.location-card {
    background: var(--white);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.location-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.location-card.featured {
    grid-column: span 2;
    grid-row: span 2;
}

.location-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.location-card.featured .location-image {
    height: 280px;
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.location-card:hover .location-image img {
    transform: scale(1.05);
}

.location-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gold-500);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 0;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.location-content {
    padding: 20px;
}

.location-card.featured .location-content {
    padding: 28px;
}

.location-name {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    color: var(--navy-800);
    margin-bottom: 20px;
}

.location-card.featured .location-name {
    font-size: 36px;
}

.location-address {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--gray-200);
}

.location-icon {
    width: 20px;
    height: 20px;
    color: var(--gold-500);
    flex-shrink: 0;
    margin-top: 2px;
}

.location-address p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 4px;
}

.location-address strong {
    color: var(--navy-800);
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--gray-600);
}

.detail-item svg {
    width: 18px;
    height: 18px;
    color: var(--gold-500);
}

.location-btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy-800);
    background: var(--gray-100);
    border-radius: 0;
    transition: var(--transition);
}

.location-btn:hover {
    background: var(--gold-500);
    color: var(--white);
}

/* Coverage Section */
.coverage-section {
    padding: 80px 0;
    background: var(--gray-50);
}

.coverage-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.coverage-text {
    font-size: 17px;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 36px;
}

.coverage-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 36px;
}

.coverage-stat {
    text-align: center;
    padding: 24px;
    background: var(--white);
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.coverage-stat .stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    color: var(--gold-500);
    line-height: 1;
    margin-bottom: 8px;
}

.coverage-stat .stat-label {
    font-size: 14px;
    color: var(--gray-600);
    font-weight: 500;
}

.coverage-image {
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.coverage-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive */
@media (max-width: 1024px) {
    .page-header {
        height: 280px;
    }
    
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .location-card.featured {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .location-card.featured .location-image {
        height: 280px;
    }
    
    .coverage-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .page-header {
        height: 240px;
    }
    
    .page-title {
        font-size: 28px;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
    }
    
    .location-card.featured {
        grid-column: span 1;
    }
    
    .coverage-stats {
        grid-template-columns: 1fr;
    }
}
