:root {
    --bg-color: #f4f5f7; /* Светло-серый, похожий на асфальт */
    --text-color: #333333;
    --primary-color: #facc15; /* Желтый цвет типичный для эвакуаторов/помощи */
    --primary-hover: #eab308;
    --white: #ffffff;
    --border-color: #e5e7eb;
    --card-shadow: 0 10px 25px rgba(0,0,0,0.05);
    
    /* Social Colors */
    --viber-color: #7360f2;
    --telegram-color: #0088cc;
    --whatsapp-color: #25d366;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23noise)' opacity='0.05'/%3E%3C/svg%3E");
    /* Легкий текстурный фон асфальта SVG */
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 10px 0;
    transition: transform 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    padding-bottom: 5px;
    text-decoration: none;
}

.logo-graffiti {
    position: absolute;
    bottom: -2px;
    left: -5%;
    width: 110%;
    height: 14px;
    /* Ярко синяя слева, ярко желтая справа */
    background: linear-gradient(95deg, #0057b7 45%, #ffd700 55%);
    transform: skewX(-15deg) rotate(-2deg);
    border-radius: 3px 8px 8px 3px;
    opacity: 0.9;
    box-shadow: 0 0 4px rgba(0,0,0,0.2);
    z-index: -1;
}

.logo-img {
    height: 4.5rem;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: #111;
}

.nav {
    display: flex;
    gap: 20px;
}

.nav a {
    font-weight: 600;
    transition: color 0.3s;
}

.nav a:hover {
    color: var(--primary-hover);
}

.lang-switcher {
    display: flex;
    gap: 5px;
}

.lang-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    color: #888;
    transition: color 0.3s;
}

.lang-btn.active {
    color: #111;
    text-decoration: underline;
    text-decoration-color: var(--primary-color);
    text-decoration-thickness: 3px;
}

.contacts-block {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.phone-link {
    font-weight: 800;
    font-size: 1.1rem;
    color: #111;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 5px;
}

.social-img-link {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.social-img-link:hover {
    transform: scale(1.1);
}

.social-img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

/* Hero Section */
.hero {
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
    background-image: url('../img/evakuator-zaporozhye-ukraina-bg.jpg');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    /* Увеличение непрозрачности на 10% (0.665 -> 0.765, 0.49 -> 0.59) */
    background: linear-gradient(to right, rgba(255, 255, 255, 0.765) 0%, rgba(255, 255, 255, 0.59) 100%);
    /* Светлое затенение для соответствия светлой теме */
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #111;
}

.hero-slogan {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 80px;
    color: #222;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: background-color 0.3s, transform 0.2s;
    cursor: pointer;
    text-align: center;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #111;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 50px;
    color: #111;
}

/* Slider */
.slider-container {
    position: relative;
    display: flex;
    align-items: center;
}

.slider-wrapper {
    overflow: hidden;
    width: 100%;
    touch-action: pan-y;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 33.333%;
    padding: 0 15px;
}

.slide-img {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: var(--card-shadow);
    background: var(--white);
    aspect-ratio: 4/3;
}

.slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
    user-select: none;
    -webkit-user-drag: none;
}

.slide:hover .slide-img img {
    transform: scale(1.05);
}

.slide-title {
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
}

.slider-arrow {
    background: var(--white);
    border: 1px solid var(--border-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    z-index: 10;
    transition: background 0.3s, color 0.3s;
    position: absolute;
    top: 40%;
}

@media (hover: hover) {
    .slider-arrow:hover {
        background: var(--primary-color);
        border-color: var(--primary-color);
    }
}

.slider-arrow:active {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.slider-arrow.prev { left: -25px; }
.slider-arrow.next { right: -25px; }

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #d1d5db;
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background-color: var(--primary-color);
}

/* Reviews */
.reviews {
    background-color: var(--white);
}

.review-card {
    background: var(--bg-color);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
}

.review-stars {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.review-text {
    font-style: italic;
    margin-bottom: 20px;
}

.review-author {
    font-weight: 800;
}

/* Footer */
.footer {
    background-color: #111;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #333;
    padding-bottom: 40px;
    margin-bottom: 20px;
}

.footer-info h3 {
    margin-bottom: 15px;
    color: #999;
}

.phone-link-large {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social .social-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.copyright {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .slide { min-width: 50%; }
    .hero-title { font-size: 2.5rem; }
}

@media (max-width: 768px) {
    .header-container { flex-direction: column; gap: 15px; }
    .nav { margin-bottom: 10px; flex-wrap: wrap; justify-content: center; }
    .contacts-block { align-items: center; }
    .slide { min-width: 100%; }
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    .slider-arrow.prev { left: -10px; }
    .slider-arrow.next { right: -10px; }
    .footer-container { flex-direction: column; text-align: center; gap: 30px; }
}
