/* 
   Location Template CSS 
   Unified styling for District and City pages
*/

:root {
    --primary-color: #ff6b35; 
    --primary-gradient: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
}

.location-wrapper { 
    font-family: 'Segoe UI', Roboto, sans-serif; 
    color: #333; 
    line-height: 1.6; 
}

.hero-banner { 
    background: var(--primary-gradient);
    color: white; 
    padding: 80px 0; 
    text-align: center; 
    border-radius: 0 0 50px 50px; 
    position: relative;
    overflow: hidden;
}

.price-main-card { 
    background: white; 
    border-radius: 20px; 
    box-shadow: 0 15px 35px rgba(0,0,0,0.15); 
    margin-top: -60px; 
    padding: 40px; 
    position: relative;
    z-index: 5;
}

.price-big { 
    font-size: 4rem; 
    font-weight: 800; 
    color: var(--primary-color);
}

.stat-box { 
    background: white;
    border: 1px solid #eee; 
    padding: 25px; 
    border-radius: 15px; 
    transition: 0.3s; 
    height: 100%; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.stat-box:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.stat-box i {
    color: var(--primary-color);
    opacity: 0.8;
}

.area-tag { 
    background: #f8f9fa; 
    border: 1px solid #eee; 
    padding: 15px; 
    border-radius: 12px; 
    margin-bottom: 15px; 
    display: block; 
    cursor: default;
    transition: 0.3s;
}

.area-tag:hover { 
    background: var(--primary-color); 
    color: white !important; 
    border-color: var(--primary-color);
}

.table-location { 
    border-radius: 15px; 
    overflow: hidden; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.05); 
}

.route-table { 
    background: white; 
    border-radius: 12px; 
    overflow: hidden; 
    border: 1px solid #eee; 
}

.route-table th { 
    background: var(--primary-color);
    color: white; 
    border: none; 
    padding: 15px; 
}

.route-table td { 
    padding: 15px; 
    vertical-align: middle; 
    border-bottom: 1px solid #f8f9fa; 
}

.route-badge { 
    padding: 5px 12px; 
    border-radius: 20px; 
    font-size: 0.8rem; 
    font-weight: 600; 
    background: rgba(0,0,0,0.05);
    color: #333;
}

.faq-card { 
    border: none; 
    border-bottom: 1px solid #eee; 
    border-radius: 0; 
    background: transparent;
}

.faq-btn { 
    width: 100%; 
    text-align: left; 
    padding: 20px; 
    font-weight: 600; 
    background: none; 
    border: none; 
    color: inherit;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.faq-btn:hover {
    color: var(--primary-color);
}

.news-ticker { 
    background: #222; 
    color: white; 
    padding: 10px 0; 
    overflow: hidden; 
    white-space: nowrap; 
    font-size: 0.9rem;
}

.news-text { 
    display: inline-block; 
    animation: scroll-ticker 40s linear infinite; 
}

@keyframes scroll-ticker { 
    from { transform: translateX(100%); } 
    to { transform: translateX(-100%); } 
}

@media (max-width: 768px) {
    .price-big { font-size: 3rem; }
    .price-main-card { padding: 25px; margin-top: -40px; }
    .hero-banner { padding: 60px 0; }
}
