:root {
    --bs-primary: #4ba6df;
    --bs-primary-rgb: 75, 166, 223;
    --bs-primary-dark: #2c7cb8;
}

.btn-primary {
    --bs-btn-bg: #4ba6df;
    --bs-btn-border-color: #4ba6df;
    --bs-btn-hover-bg: #2c7cb8;
    --bs-btn-hover-border-color: #2c7cb8;
}
.btn-outline-primary {
    --bs-btn-color: #4ba6df;
    --bs-btn-border-color: #4ba6df;
    --bs-btn-hover-bg: #4ba6df;
}
.text-primary { color: #4ba6df !important; }
.bg-primary { background-color: #4ba6df !important; }
.navbar-nav .nav-link:hover { color: #4ba6df; }

/* Бейджи — теперь всегда белый текст */
.badge.bg-primary {
    background-color: #4ba6df !important;
    color: white !important;
}

.hero-section {
    min-height: 85vh;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    position: relative;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(75, 166, 223, 0.1);
}
.hero-section .container { position: relative; z-index: 2; }
.bg-white.bg-opacity-20 { background-color: rgba(255, 255, 255, 0.2) !important; }
.text-white-50 { color: rgba(255, 255, 255, 0.85) !important; }
.btn-outline-light { border-color: white; color: white; }
.btn-outline-light:hover { background-color: white; color: #4ba6df; }

.stats-section {
    background: white;
    border-bottom: 1px solid #eef2f6;
    padding: 60px 0;
}
.stat-card { text-align: center; padding: 20px; }
.stat-number { font-size: 3.5rem; font-weight: 800; color: #4ba6df; margin-bottom: 12px; line-height: 1.2; }
.stat-label { font-size: 1rem; color: #5a6e7c; font-weight: 500; }

.service-card {
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 1.5rem 2.5rem rgba(0, 0, 0, 0.1) !important;
}

.price-row {
    cursor: pointer;
    transition: background-color 0.2s ease;
}
.price-row:hover {
    background-color: #f0f7fe !important;
}
.table-light th {
    background-color: #f8f9fc;
    color: #1a2c3e;
    font-weight: 600;
    border-bottom: 2px solid #4ba6df;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 20px;
}
.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.footer-light {
    background: #f8f9fc;
    border-top: 1px solid #eef2f6;
    color: #5a6e7c;
}
.footer-light a { color: #4ba6df; text-decoration: none; }
.footer-light a:hover { text-decoration: underline; }
.footer-light .btn-link { color: #5a6e7c; }
.footer-light .btn-link:hover { color: #4ba6df; }

.cookie-consent-light {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: white;
    color: #1a2c3e;
    padding: 12px 24px;
    border-radius: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    z-index: 1050;
    border: 1px solid #eef2f6;
}
.btn-link-light {
    background: none;
    border: none;
    color: #4ba6df;
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
}

@media (max-width: 768px) {
    .hero-section { min-height: 70vh; padding: 60px 0; }
    .hero-section h1 { font-size: 1.8rem !important; }
    .stat-number { font-size: 2.5rem; }
    .cookie-consent-light { flex-direction: column; text-align: center; border-radius: 20px; }
    .carousel-inner img { height: 300px !important; }
    .table td, .table th { padding: 12px 15px !important; }
}
@media (max-width: 576px) {
    .display-3 { font-size: 2rem !important; }
    .display-5 { font-size: 1.6rem !important; }
    .btn-lg { padding: 10px 20px !important; font-size: 1rem !important; }
}