:root {
            --primary: #276749;
            --secondary: #ED8936;
            --light: #C6F6D5;
            --white: #ffffff;
            --dark: #1a202c;
        }
        body {
            font-family: 'Inter', sans-serif;
            color: var(--dark);
            overflow-x: hidden;
        }
        .bg-primary {
            background-color: var(--primary) !important;
        }
        .btn-primary {
            background-color: var(--primary);
            border-color: var(--primary);
            transition: all 0.3s ease;
        }
        .btn-primary:hover {
            background-color: #1e5038;
            border-color: #1e5038;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }
        .btn-secondary {
            background-color: var(--secondary);
            border-color: var(--secondary);
            transition: all 0.3s ease;
        }
        .btn-secondary:hover {
            background-color: #d1752b;
            border-color: #d1752b;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }
        .text-primary {
            color: var(--primary) !important;
        }
        .text-secondary {
            color: var(--secondary) !important;
        }
        /* Hero Section with Video */
        .hero-section {
            position: relative;
            height: 80vh;
            min-height: 500px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
            text-align: center;
        }
        .hero-video {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            transform: translateX(-50%) translateY(-50%);
            z-index: -1;
        }
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: -1;
        }
        .hero-content {
            z-index: 1;
            padding: 20px;
            min-height: 300px;
        }
        /* Кнопка "Викликати Евакуатор" */
        #mobile-call-container {
            position: fixed;
            bottom: 20px;
            left: 0;
            right: 0;
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 1050;
        }
        .floating-call-btn {
            width: 250px;
            padding: 15px 20px;
            border-radius: 50px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
            font-size: 1.1rem;
            font-weight: bold;
            animation: pulse 2s infinite;
        }
        #phone-buttons-container {
            position: absolute;
            bottom: 100%;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column-reverse;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease-out, transform 0.3s ease-out;
            pointer-events: none;
            margin-bottom: 10px;
        }
        #phone-buttons-container.show {
            opacity: 1;
            transform: translateX(-50%) translateY(-10px);
            pointer-events: auto;
        }
        .phone-btn {
            width: 250px;
            padding: 10px 15px;
            border-radius: 50px;
            text-align: left;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
            margin-bottom: 5px;
        }
        .phone-btn i {
            font-size: 1.2rem;
            margin-right: 10px;
        }
        /* Мессенджеры и кнопка "вверх" */
        .floating-buttons-container {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1050;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 10px;
        }
        .messenger-btns {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 10px;
        }
        .messenger-btn {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            text-align: center;
            line-height: 45px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s;
        }
        .messenger-btn:hover {
            transform: scale(1.1);
        }
        .whatsapp { background-color: #25D366; color: white; }
        .viber { background-color: #7360F2; color: white; }
        .telegram { background-color: #0088cc; color: white; }
        .go-top {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background-color: var(--primary);
            color: white;
            text-align: center;
            line-height: 45px;
            cursor: pointer;
            opacity: 0;
            transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
            transform: scale(0.9);
        }
        .go-top.visible {
            opacity: 0.7;
            transform: scale(1);
        }
        .go-top:hover {
            opacity: 1;
        }
        @keyframes pulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
            100% {
                transform: scale(1);
            }
        }
        /* Utility classes */
        .sticky-top {
            top: 0;
            z-index: 1020;
            transition: background-color 0.3s;
        }
        .sticky-top.scrolled {
            background-color: rgba(0, 0, 0, 0.8) !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.15);
        }
        .benefit-icon {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 1rem;
            transition: transform 0.3s ease;
        }
        .benefit-item {
            min-height: 200px;
        }
        .benefit-item:hover .benefit-icon {
            transform: scale(1.1);
        }
        .service-card {
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
        }
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }
        .step-number {
            width: 60px;
            height: 60px;
            background-color: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: bold;
            margin: 0 auto 1rem;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        .testimonial-card {
            background-color: #f8f9fa;
            border-radius: 10px;
            padding: 1.5rem;
            height: 100%;
            transition: transform 0.3s;
            box-shadow: 0 4px 8px rgba(0,0,0,0.05);
        }
        .testimonial-card:hover {
            transform: translateY(-5px);
        }
        .testimonial-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
        }
        .accordion-button:not(.collapsed) {
            background-color: var(--light);
            color: var(--primary);
            font-weight: bold;
        }
        .map-container {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        /* Lazy loading styles */
        img.lazy-load {
            opacity: 0;
            transition: opacity 0.3s;
            min-height: 200px;
            background-color: #f5f5f5;
            display: block;
            width: 100%;
        }
        img.loaded {
            opacity: 1;
        }
        /* AOS animation fixes */
        [data-aos] {
            opacity: 0;
            transition: transform 0.4s ease, opacity 0.4s ease;
        }