/* Extracted from street.php */

/* ═══════════════════════════════════════════════════════════════════ */
/* LIGHT CYBERPUNK THEME - BOLHRAD */
/* ═══════════════════════════════════════════════════════════════════ */
:root {
    --cyber-bg: #f0f4f8;
    --cyber-card: #ffffff;
    --cyber-primary: #6366f1;
    --cyber-secondary: #8b5cf6;
    --cyber-accent: #06b6d4;
    --cyber-success: #10b981;
    --cyber-text: #1e293b;
    --cyber-muted: #64748b;
    --cyber-glow: rgba(99, 102, 241, 0.3);
    --cyber-border: rgba(99, 102, 241, 0.2);
}

.bolhrad-page {
    background: var(--cyber-bg);
    min-height: 100vh;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Hero Section - Light Cyberpunk */
.bolhrad-hero {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #4338ca 100%);
    color: #fff;
    padding: 60px 20px 80px;
    position: relative;
    overflow: hidden;
}

.bolhrad-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: 
        linear-gradient(90deg, transparent 49.5%, rgba(99, 102, 241, 0.1) 50%, transparent 50.5%),
        linear-gradient(0deg, transparent 49.5%, rgba(99, 102, 241, 0.1) 50%, transparent 50.5%);
    background-size: 40px 40px;
    animation: gridPulse 4s ease-in-out infinite;
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.bolhrad-hero .container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.bolhrad-hero h1 {
    font-size: 36px;
    font-weight: 800;
    margin: 0 0 20px;
    text-shadow: 0 0 30px rgba(99, 102, 241, 0.5);
}

.bolhrad-hero-badge {
    display: inline-block;
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.bolhrad-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
}

.bolhrad-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    padding: 12px 20px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.bolhrad-feature .icon {
    font-size: 24px;
}

/* Form */
.bolhrad-form {
    background: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    margin-top: 30px;
}

.bolhrad-form input {
    width: 100%;
    padding: 16px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 16px;
    margin-bottom: 15px;
}

.bolhrad-form input::placeholder {
    color: rgba(255,255,255,0.6);
}

.bolhrad-form button {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--cyber-success), #059669);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
}

.bolhrad-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.5);
}

/* Sections */
.bolhrad-section {
    padding: 60px 20px;
}

.bolhrad-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.bolhrad-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--cyber-text);
    margin: 0 0 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bolhrad-section h2 .icon {
    color: var(--cyber-primary);
}

/* Cards */
.bolhrad-card {
    background: var(--cyber-card);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border: 1px solid var(--cyber-border);
    transition: all 0.3s;
}

.bolhrad-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px var(--cyber-glow);
    border-color: var(--cyber-primary);
}

/* Tariffs */
.bolhrad-tariffs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.bolhrad-tariff {
    background: var(--cyber-card);
    border-radius: 20px;
    padding: 32px 28px;
    text-align: center;
    border: 2px solid var(--cyber-border);
    transition: all 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.bolhrad-tariff:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.bolhrad-tariff.popular {
    border-color: var(--cyber-primary);
    box-shadow: 0 4px 30px var(--cyber-glow);
}

.bolhrad-tariff.popular::before {
    content: 'ХІТ';
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, var(--cyber-primary), var(--cyber-secondary));
    color: #fff;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.bolhrad-tariff h3 {
    font-size: 20px;
    color: var(--cyber-text);
    margin: 0 0 12px;
    font-weight: 700;
}

.bolhrad-tariff .speed {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--cyber-primary), var(--cyber-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin-bottom: 4px;
}

.bolhrad-tariff .speed small {
    font-size: 16px;
}

.bolhrad-tariff .price {
    font-size: 36px;
    font-weight: 800;
    color: var(--cyber-success);
    margin: 16px 0;
}

.bolhrad-tariff .price span {
    font-size: 16px;
    color: var(--cyber-muted);
    font-weight: 500;
}

.bolhrad-tariff ul {
    list-style: none;
    padding: 0;
    margin: 16px 0;
    text-align: left;
    flex-grow: 1;
}

.bolhrad-tariff li {
    padding: 8px 0;
    color: var(--cyber-muted);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

.bolhrad-tariff li::before {
    content: '✓';
    color: var(--cyber-success);
    font-weight: 700;
    flex-shrink: 0;
}

.bolhrad-tariff .btn {
    display: block;
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--cyber-primary), var(--cyber-secondary));
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s;
    margin-top: auto;
}

.bolhrad-tariff .btn:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 30px var(--cyber-glow);
}

/* Power Backup */
.bolhrad-power {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border: 2px solid #10b981;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.bolhrad-power .icon {
    font-size: 80px;
}

.bolhrad-power h3 {
    font-size: 24px;
    color: #065f46;
    margin: 0 0 15px;
}

.bolhrad-power .hours {
    font-size: 48px;
    font-weight: 800;
    color: #10b981;
}

/* About / Why Us */
.bolhrad-about {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.bolhrad-about-card {
    background: var(--cyber-card);
    border-radius: 16px;
    padding: 28px 24px;
    border: 1px solid var(--cyber-border);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}
.bolhrad-about-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--cyber-primary), var(--cyber-secondary));
    opacity: 0;
    transition: opacity 0.3s;
}
.bolhrad-about-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px var(--cyber-glow);
    border-color: var(--cyber-primary);
}
.bolhrad-about-card:hover::before {
    opacity: 1;
}
.bolhrad-about-card .about-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(99,102,241,0.1), rgba(139,92,246,0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--cyber-primary);
}
.bolhrad-about-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--cyber-text);
    margin: 0 0 8px;
}
.bolhrad-about-card p {
    font-size: 14px;
    color: var(--cyber-muted);
    margin: 0;
    line-height: 1.6;
}
.bolhrad-about-card .about-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--cyber-primary), var(--cyber-secondary));
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
}
.bolhrad-about-card .about-link:hover {
    box-shadow: 0 4px 15px var(--cyber-glow);
}

/* Reviews */
.bolhrad-reviews {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}
.bolhrad-review {
    background: var(--cyber-card);
    border-radius: 16px;
    padding: 28px;
    border: 1px solid var(--cyber-border);
    transition: all 0.3s;
    position: relative;
}
.bolhrad-review:hover {
    box-shadow: 0 8px 30px var(--cyber-glow);
    border-color: var(--cyber-primary);
}
.bolhrad-review-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}
.bolhrad-review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cyber-primary), var(--cyber-secondary));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}
.bolhrad-review-name {
    font-weight: 700;
    color: var(--cyber-text);
    font-size: 15px;
}
.bolhrad-review-loc {
    font-size: 13px;
    color: var(--cyber-muted);
    margin-top: 2px;
}
.bolhrad-review-stars {
    color: #f59e0b;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}
.bolhrad-review-text {
    color: var(--cyber-muted);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
    font-style: italic;
}
.bolhrad-review-text::before {
    content: '\201C';
    font-size: 28px;
    color: var(--cyber-primary);
    font-weight: 700;
    line-height: 0;
    vertical-align: -8px;
    margin-right: 4px;
}
.bolhrad-rating-summary {
    text-align: center;
    margin-bottom: 30px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(99,102,241,0.05), rgba(139,92,246,0.05));
    border-radius: 16px;
    border: 1px solid var(--cyber-border);
}
.bolhrad-rating-big {
    font-size: 52px;
    font-weight: 800;
    color: var(--cyber-primary);
    line-height: 1.2;
    padding: 4px 0;
}
.bolhrad-rating-stars {
    color: #f59e0b;
    font-size: 22px;
    letter-spacing: 3px;
    margin: 8px 0;
}
.bolhrad-rating-count {
    color: var(--cyber-muted);
    font-size: 14px;
}
.bolhrad-rating-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 16px;
}
.bolhrad-rating-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
    border: 1px solid var(--cyber-border);
    color: var(--cyber-text);
}
.bolhrad-rating-link:hover {
    box-shadow: 0 4px 15px var(--cyber-glow);
    border-color: var(--cyber-primary);
    transform: translateY(-2px);
}

/* FAQ */
.bolhrad-faq {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bolhrad-faq-item {
    background: var(--cyber-card);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid var(--cyber-border);
}

.bolhrad-faq-item h4 {
    font-size: 16px;
    color: var(--cyber-text);
    margin: 0 0 10px;
}

.bolhrad-faq-item p {
    color: var(--cyber-muted);
    margin: 0;
    line-height: 1.6;
}

/* Neighbors */
.bolhrad-neighbors {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

.bolhrad-neighbor {
    display: block;
    background: var(--cyber-card);
    padding: 16px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--cyber-text);
    border: 1px solid var(--cyber-border);
    transition: all 0.3s;
}

.bolhrad-neighbor:hover {
    border-color: var(--cyber-primary);
    box-shadow: 0 4px 15px var(--cyber-glow);
    transform: translateY(-2px);
}

/* Houses */
.bolhrad-houses {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.bolhrad-house {
    background: linear-gradient(135deg, var(--cyber-primary), var(--cyber-secondary));
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
}

/* Map */
.bolhrad-map {
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid var(--cyber-border);
}

/* Modal */
.bolhrad-modal {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.bolhrad-modal.active {
    display: flex;
}

.bolhrad-modal-content {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    max-width: 400px;
    width: 100%;
    position: relative;
    text-align: center;
}

.bolhrad-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--cyber-muted);
}

@media (max-width: 768px) {
    .bolhrad-hero h1 { font-size: 28px; }
    .bolhrad-power { flex-direction: column; text-align: center; }
    .bolhrad-tariffs { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .bolhrad-tariff .speed { font-size: 28px; }
    .bolhrad-about { grid-template-columns: 1fr; }
    .bolhrad-reviews { grid-template-columns: 1fr; }
    .bolhrad-rating-big { font-size: 36px; }
}
@media (min-width: 769px) and (max-width: 1024px) {
    .bolhrad-tariffs { grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .bolhrad-tariff { padding: 24px 20px; }
    .bolhrad-tariff .speed { font-size: 26px; }
    .bolhrad-tariff .price { font-size: 30px; }
}
