/* Custom Font - Benzin Bold */
@font-face {
    font-family: 'Benzin';
    src: url('../fonts/Benzin-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Geologica', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0a0a0a;
    background-image: url('../images/track-texture-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    overflow-x: hidden;
    position: relative;
}

/* Темный оверлей для лучшей читаемости текста */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.85);
    z-index: -1;
    pointer-events: none;
}

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

/* Language Toggle */
.lang-toggle {
    display: none;
}

/* Graffiti Elements */
.graffiti-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.graffiti-arrow,
.graffiti-x {
    position: absolute;
    font-size: 4rem;
    font-weight: bold;
    opacity: 0.15;
    color: #ff0000;
    transform: rotate(15deg);
    animation: float 3s ease-in-out infinite;
}

.graffiti-1 { top: 10%; left: 5%; animation-delay: 0s; }
.graffiti-2 { top: 20%; right: 10%; animation-delay: 1s; }
.graffiti-3 { top: 50%; left: 15%; animation-delay: 2s; }
.graffiti-4 { top: 70%; right: 5%; animation-delay: 3s; }
.graffiti-5 { bottom: 10%; left: 50%; animation-delay: 4s; }
.graffiti-6 { top: 30%; left: 10%; animation-delay: 1.5s; }
.graffiti-7 { top: 60%; right: 15%; animation-delay: 2.5s; }
.graffiti-8 { top: 15%; left: 30%; animation-delay: 0.5s; }
.graffiti-9 { bottom: 20%; right: 25%; animation-delay: 3.5s; }

@keyframes float {
    0%, 100% { transform: rotate(15deg) translateY(0px); }
    50% { transform: rotate(-15deg) translateY(-20px); }
}

/* Header */
.header {
    background: rgba(26, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(255, 0, 0, 0.3);
    border-bottom: 2px solid rgba(255, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 80%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
    mix-blend-mode: screen;
    filter: brightness(1.1) contrast(1.1);
}

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

/* Header Phone Button */
.header-phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    color: #ffffff;
    padding: 0.7rem 1.3rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(255, 0, 0, 0.3);
    white-space: nowrap;
    margin-right: 1rem;
}

.header-phone-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.5);
    background: linear-gradient(135deg, #ff3333 0%, #ff0000 100%);
}

.header-phone-btn i {
    font-size: 1rem;
    animation: phoneRingHeader 2s ease-in-out infinite;
}

@keyframes phoneRingHeader {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-15deg); }
    20%, 40% { transform: rotate(15deg); }
    50% { transform: rotate(0deg); }
}

.header-phone-btn:active {
    transform: translateY(0px);
    box-shadow: 0 2px 10px rgba(255, 0, 0, 0.4);
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-item {
    margin-left: 2rem;
}

.nav-link {
    color: #ffffff;
    font-family: 'Benzin', sans-serif;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link:hover {
    color: #ff0000;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff0000;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Social media icons in navigation */
.social-nav-item {
    margin-right: 0;
}

/* Desktop: social wrapper should be inline */
.social-nav-container {
    display: flex;
    align-items: center;
}

.social-nav-wrapper {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.social-nav-link {
    font-size: 1.2rem;
    padding: 0.2rem 0.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #ffffff !important;
    text-decoration: none;
}

.social-nav-link:visited {
    color: #ffffff !important;
}

.social-nav-link:hover {
    transform: translateY(-2px);
    color: #ff0000 !important;
}

.social-nav-link::after {
    display: none;
}

.social-nav-link i {
    transition: transform 0.3s ease;
}

.social-nav-link:hover i {
    transform: scale(1.2);
}

.lang-switcher {
    margin-left: 1rem;
    position: relative;
}

/* Dropdown container */
.lang-dropdown {
    position: relative;
}

/* Toggle button */
.lang-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid rgba(255, 0, 0, 0.3);
    border-radius: 8px;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Geologica', sans-serif;
}

.lang-dropdown-toggle:hover {
    background: rgba(255, 0, 0, 0.2);
    border-color: rgba(255, 0, 0, 0.5);
    transform: translateY(-2px);
}

.lang-dropdown-toggle .current-lang {
    font-weight: 700;
    letter-spacing: 0.5px;
}

.lang-dropdown-toggle i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.lang-dropdown.active .lang-dropdown-toggle i {
    transform: rotate(180deg);
}

/* Dropdown menu */
.lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: rgba(26, 0, 0, 0.98);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 0, 0, 0.3);
    border-radius: 8px;
    min-width: 180px;
    box-shadow: 0 8px 32px rgba(255, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: hidden;
}

.lang-dropdown.active .lang-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Dropdown items */
.lang-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 0, 0, 0.1);
}

.lang-dropdown-item:last-child {
    border-bottom: none;
}

.lang-dropdown-item:hover {
    background: rgba(255, 0, 0, 0.2);
    padding-left: 1.25rem;
}

.lang-dropdown-item.active {
    background: rgba(255, 0, 0, 0.15);
    border-left: 3px solid #ff0000;
}

.lang-dropdown-item .lang-flag {
    font-size: 1.2rem;
}

.lang-dropdown-item .lang-name {
    font-weight: 500;
    font-size: 0.9rem;
}

.lang-dropdown-item.active .lang-name {
    color: #ff0000;
    font-weight: 700;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #ff0000;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: url('../images/crazy-cart-xl-1.jpg') center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 12px 0 80px;
    overflow: hidden;
}

/* Video Background */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
}

/* Фоллбэк для браузеров без видео */
@supports not (object-fit: cover) {
    .hero-video {
        display: none;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,0.85) 50%, rgba(0,0,0,0.15) 100%);
    z-index: 1;
}

.hero-container {
    max-width: 80%;
    padding-left: 80px;
    padding-right: 80px;
    position: relative;
    z-index: 2;
    text-align: left;
}

.hero-content {
    max-width: 100%;
    width: 100%;
    /* Контент занимает всю ширину контейнера */
}

.hero-title {
    font-family: 'Benzin', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #ffffff;
}

.hero-description {
    font-size: 1.7rem;
    margin-bottom: 2.5rem;
    color: #ffffff;
    font-weight: 300;
    max-width: 1200px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 3;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-15px);
    }
    60% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.tire-tracks {
    display: flex;
    gap: 8px;
    margin-bottom: 5px;
}

.track-line {
    width: 3px;
    height: 30px;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        #ff0000 20%, 
        #ff0000 40%, 
        transparent 50%,
        transparent 60%,
        #ff0000 70%,
        #ff0000 90%,
        transparent 100%
    );
    animation: trackMove 1.5s infinite;
}

.track-line:nth-child(2) {
    animation-delay: 0.3s;
}

@keyframes trackMove {
    0% {
        opacity: 0.3;
        transform: translateY(-10px);
    }
    50% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0.3;
        transform: translateY(10px);
    }
}

.scroll-arrow {
    width: 50px;
    height: 50px;
    border: 3px solid #ff0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff0000;
    font-size: 24px;
    text-decoration: none;
    background: rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
}

.scroll-arrow:hover {
    background: #ff0000;
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.6);
}

.scroll-text {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 5px;
    font-family: 'Oswald', sans-serif;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 40px;
    border: none;
    border-radius: 20px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Oswald', sans-serif;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    color: #fff;
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ff3333 0%, #ff0000 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 3px solid #ff0000;
}

.btn-secondary:hover {
    background: #ff0000;
    transform: translateY(-3px);
}

/* Section Title */
.section-title {
    font-family: 'Benzin', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 4rem;
    color: #ffffff;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, #ff0000 0%, #cc0000 100%);
}

/* Track Section */
.track {
    padding: 100px 0;
    /* Градиент (оригинальный фон) */
    /* background: linear-gradient(180deg, #0a0a0a 0%, #1a0000 50%, #0a0a0a 100%); */
    
    /* Фоновое изображение (добавлено) */
    background-image: url('../images/track-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Эффект параллакса */
    position: relative;
}

/* Затемнение поверх фонового изображения */
.track::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Черный с прозрачностью 70% */
    z-index: 1;
}

.track-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2; /* Контент поверх затемнения */
}

.track-image {
    text-align: center;
    padding: 2rem;
}

.track-3d-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 50px rgba(255, 0, 0, 0.4));
    transition: transform 0.5s ease;
}

.track-image:hover .track-3d-img {
    transform: scale(1.05) rotate(-2deg);
}

.track-info {
    padding: 2rem 0;
}

.track-info .section-title {
    text-align: left;
    margin-bottom: 2rem;
}

.track-info .section-title::after {
    left: 0;
    transform: none;
}

.track-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 3rem;
}

.track-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(255, 0, 0, 0.05);
    border-left: 4px solid #ff0000;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 0, 0, 0.1);
    transform: translateX(10px);
}

.feature-item i {
    color: #ff0000;
    font-size: 2rem;
    min-width: 40px;
    margin-top: 0;
}

.feature-text h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 0.25rem;
    letter-spacing: 1px;
}

.feature-text p {
    color: #aaa;
    line-height: 1.6;
}

/* Safety Section */
.safety {
    padding: 100px 0;
    position: relative;
}

.safety-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.safety-info {
    padding: 2rem 0;
}

.safety-info .section-title {
    text-align: left;
    margin-bottom: 2rem;
}

.safety-info .section-title::after {
    left: 0;
    transform: none;
}

.safety-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 3rem;
}

.safety-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.safety-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(255, 0, 0, 0.05);
    border-left: 4px solid #ff0000;
    transition: all 0.3s ease;
}

.safety-item:hover {
    background: rgba(255, 0, 0, 0.1);
    transform: translateX(10px);
}

.safety-item i {
    color: #ff0000;
    font-size: 2rem;
    min-width: 40px;
    margin-top: 0;
}

.safety-text h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 0.25rem;
    letter-spacing: 1px;
}

.safety-text p {
    color: #aaa;
    line-height: 1.6;
}

.safety-image {
    text-align: center;
    padding: 2rem;
}

.family-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 50px rgba(255, 0, 0, 0.4));
    transition: transform 0.5s ease;
}

.safety-image:hover .family-img {
    transform: scale(1.05) rotate(2deg);
}

/* Quote Section */
.quote-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    /* Для кастомного фона используйте:
    background-image: url('путь-к-изображению.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    */
}

.quote-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.quote-icon {
    font-size: 4rem;
    color: #ff0000;
    margin-bottom: 2rem;
    opacity: 0.5;
}

.quote-text {
    font-size: 2rem;
    font-style: italic;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 2rem;
    font-weight: 300;
}

.quote-author {
    font-size: 1.3rem;
    color: #ff0000;
    font-weight: 600;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 2px;
}

/* Video Section */
.video-section {
    position: relative;
    min-height: 500px;
    overflow: hidden;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    z-index: 1;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.video-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 500px;
    text-align: center;
    padding: 0 20px;
}

.video-content p {
    font-size: 1.5rem;
    color: #ffffff;
    margin-top: 1rem;
}

/* Prices Section */
.prices {
    padding: 100px 0;
    position: relative;
    /* Для кастомного фона используйте:
    background-image: url('путь-к-изображению.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    */
}

.price-block {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
    margin: 4rem 0;
    padding: 3rem;
    background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%);
    border: 2px solid #333;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.price-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.1), transparent);
    transition: left 0.6s;
}

.price-block:hover::before {
    left: 100%;
}

.kids-block {
    grid-template-columns: 1.5fr 1fr;
}

.price-image {
    text-align: center;
    padding: 2rem;
}

.price-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(255, 0, 0, 0.3));
    transition: transform 0.5s ease;
}

.price-block:hover .price-image img {
    transform: scale(1.05) rotate(2deg);
}

.price-content {
    padding: 1rem;
}

.price-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    color: #fff;
    padding: 8px 25px;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.5);
}

.price-badge.kids {
    background: linear-gradient(135deg, #ff6600 0%, #ff3300 100%);
}

.price-title {
    font-family: 'Benzin', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.price-subtitle {
    font-size: 1.1rem;
    color: #aaa;
    margin-bottom: 2rem;
    font-weight: 300;
}

.price-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.price-option {
    background: rgba(0, 0, 0, 0.3);
    padding: 0.8rem !important;
    border: 2px solid #333;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.price-option:hover {
    border-color: #ff0000;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.2);
}

.price-option.featured {
    border-color: #ff0000;
    position: relative;
}

.featured-label {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ffd700;
    color: #000;
    padding: 6px 15px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 20px;
    z-index: 10;
    box-shadow: 0 3px 10px rgba(255, 215, 0, 0.4);
}

.option-header {
    margin-bottom: 1rem;
}

.option-header h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.option-price {
    font-family: 'Benzin', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #ff0000;
    line-height: 1;
}

.lei {
    font-size: 1.2rem;
    color: #aaa;
    font-family: 'Geologica', sans-serif;
}

.option-duration {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.option-features {
    list-style: none;
    margin: 1rem 0;
}

.option-features li {
    padding: 0.4rem 0;
    color: #ccc;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.option-features li i {
    color: #ff0000;
    margin-right: 10px;
    font-size: 0.9rem;
    width: 16px;
}

.price-option .btn {
    width: 100%;
    margin-top: auto;
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* Price headers row */
.option-headers {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 0.5rem;
    padding: 0 0.8rem;
}

/* Price main title above content */
.price-main-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
    margin: 0;
    text-transform: uppercase;
    flex: 1;
}

.option-headers .price-main-title:first-child {
    text-align: left;
}

.option-headers .price-main-title:last-child {
    text-align: left;
    font-style: normal;
    color: #ffffff;
    font-size: 1.2rem;
}

/* New horizontal layout styles */
.option-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 0.3rem !important;
    padding: 0 0.8rem;
}

.option-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.option-left .option-price {
    font-family: 'Benzin', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: #ff0000;
    line-height: 1;
}

.option-left .option-duration {
    color: #999;
    font-size: 1rem;
    margin-top: 0.3rem;
    font-style: italic;
}

.option-divider {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, 
        transparent 10%, 
        rgba(255, 0, 0, 0.3) 20%, 
        rgba(255, 0, 0, 0.6) 50%, 
        rgba(255, 0, 0, 0.3) 80%, 
        transparent 90%);
    flex-shrink: 0;
}

.option-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
}

.option-right .option-duration {
    color: #999;
    font-size: 1rem;
    margin: 0 0 0.5rem 0;
    font-style: italic;
}

.option-right .option-features {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

.option-right .option-features li {
    padding: 0.3rem 0;
    color: #ccc;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.price-specs {
    display: flex;
    gap: 2rem;
    padding: 1.5rem;
    background: rgba(255, 0, 0, 0.05);
    border-left: 4px solid #ff0000;
    margin-top: 2rem;
}

.spec {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ccc;
    font-size: 0.95rem;
}

.spec i {
    color: #ff0000;
    font-size: 1.1rem;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    overflow: hidden;
    position: relative;
    /* Для кастомного фона используйте:
    background-image: url('путь-к-изображению.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    */
}

.gallery .container {
    max-width: 100%;
    padding: 0;
}

.gallery-slider {
    margin-top: 3rem;
    overflow: hidden;
}

.gallery-track {
    display: flex;
    gap: 2rem;
    animation: scroll 20s linear infinite;
}

.gallery-slide {
    min-width: calc(33.333% - 1.333rem);
    height: 400px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: 20px;
}

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

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-33.333% - 2rem)); }
}

/* Advantages Section */
.advantages {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a0000 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.advantages .section-subtitle {
    text-align: center;
    color: #cccccc;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Contacts Section */
.contacts {
    padding: 100px 0;
    position: relative;
    /* Для кастомного фона используйте:
    background-image: url('путь-к-изображению.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    */
}

.contacts-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%);
    border-left: 4px solid #ff0000;
}

.contact-item.red-bg {
    background: linear-gradient(145deg, #2a0000 0%, #1a0000 100%);
    border-left: 4px solid #ff0000;
}

.contact-item.red-bg .contact-icon {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    color: #ffffff;
}

.contact-item.red-bg .contact-text h3 {
    color: #ff0000;
}

.contact-item.red-bg .contact-text p {
    color: #cccccc;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
}

.contact-text h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #ffffff;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-item.red-bg .contact-text h3 {
    color: #ffffff;
}

.contact-text p {
    color: #ccc;
    line-height: 1.6;
}

.location-map {
    background: transparent;
    padding: 0;
    border: none;
}

.location-map h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #ff0000;
    text-align: center;
    letter-spacing: 3px;
}

.map-container {
    margin-bottom: 2rem;
    border: 3px solid #ff0000;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
}

.map-container iframe {
    display: block;
    width: 100%;
    filter: grayscale(20%) brightness(0.9);
    transition: all 0.3s ease;
}

.map-container:hover iframe {
    filter: grayscale(0%) brightness(1);
}

.map-address {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 0, 0, 0.05);
    border-left: 4px solid #ff0000;
}

.map-address p {
    color: #ccc;
    font-size: 1.1rem;
    margin: 0.5rem 0;
}

.map-address strong {
    color: #ff0000;
    font-size: 1.3rem;
}

.map-btn {
    margin-top: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Footer */
.footer {
    background: #000;
    color: #ffffff;
    padding: 4rem 0 2rem;
    border-top: 3px solid #ff0000;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
    mix-blend-mode: screen;
    filter: brightness(1.1) contrast(1.1);
}

.footer-section h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ff0000;
}

.footer-section p {
    color: #ccc;
    line-height: 1.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #666;
}

/* Footer Phone Button */
.footer-phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    color: #ffffff;
    padding: 0.875rem 1.5rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.footer-phone-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 0, 0, 0.5);
    background: linear-gradient(135deg, #ff3333 0%, #ff0000 100%);
}

.footer-phone-btn i {
    font-size: 1.2rem;
    animation: phoneRing 2s ease-in-out infinite;
}

@keyframes phoneRing {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-15deg); }
    20%, 40% { transform: rotate(15deg); }
    50% { transform: rotate(0deg); }
}

.footer-phone-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 15px rgba(255, 0, 0, 0.4);
}

/* Social Media Links */
.social-links {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
    padding: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    transform: translateY(-2px);
    color: #ff0000;
}

.social-icon i {
    transition: transform 0.3s ease;
}

.social-icon:hover i {
    transform: scale(1.2);
}

/* Partner Logos */
.partner-logos {
    margin-top: 2rem;
}

.partner-logos h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.partner-logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
    max-width: 100%;
}

.partner-logo-link {
    display: block;
    padding: 1rem;
    background: transparent;
    border: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-align: center;
    max-width: 100%;
    overflow: hidden;
}

.partner-logo-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.3);
}

.partner-logo {
    max-width: 100%;
    height: 120px;
    width: auto;
    object-fit: contain;
    mix-blend-mode: screen;
    filter: brightness(1.1) contrast(1.1);
    transition: transform 0.3s ease;
    margin: 0 auto;
    display: block;
}

.partner-logo-link:hover .partner-logo {
    transform: scale(1.05);
}

/* Image Modal Viewer */
.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

.image-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transition: transform 0.3s ease;
    cursor: zoom-in;
}

.modal-content.zoomed {
    cursor: zoom-out;
}

.modal-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: #fff;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    z-index: 10000;
    transition: all 0.3s ease;
    line-height: 1;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 0, 0, 0.2);
    border-radius: 50%;
}

.modal-close:hover {
    color: #ff0000;
    background: rgba(255, 0, 0, 0.4);
    transform: rotate(90deg);
}

.modal-controls {
    position: absolute;
    top: 30px;
    left: 50px;
    display: flex;
    gap: 15px;
    z-index: 10000;
}

.modal-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 0, 0, 0.2);
    border: 2px solid rgba(255, 0, 0, 0.5);
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-btn:hover {
    background: rgba(255, 0, 0, 0.6);
    border-color: #ff0000;
    transform: scale(1.1);
}

.modal-nav {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
    z-index: 10000;
}

.modal-nav-btn {
    pointer-events: all;
    width: 60px;
    height: 60px;
    background: rgba(255, 0, 0, 0.3);
    border: 2px solid rgba(255, 0, 0, 0.5);
    border-radius: 50%;
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-nav-btn:hover {
    background: rgba(255, 0, 0, 0.7);
    border-color: #ff0000;
    transform: scale(1.15);
}

.gallery-slide {
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(145deg, #ff0000 0%, #cc0000 100%);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.3);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: linear-gradient(145deg, #cc0000 0%, #ff0000 100%);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.5);
}

.scroll-to-top:active {
    transform: translateY(-3px) scale(1.05);
}

.scroll-to-top i {
    transition: transform 0.3s ease;
}

.scroll-to-top:hover i {
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 85px;
        flex-direction: column;
        background: linear-gradient(180deg, #1a0000 0%, #0a0a0a 100%);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(255, 0, 0, 0.3);
        padding: 2rem 0;
        border-top: 2px solid #ff0000;
        display: flex;
        align-items: center;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 1rem 0;
    }
    
    /* Show full phone number in mobile menu */
    .nav-menu .header-phone-btn span {
        display: inline !important;
    }
    
    .nav-menu .header-phone-btn {
        padding: 0.8rem 1.5rem !important;
        font-size: 1.1rem !important;
        width: auto !important;
    }
    
    /* Social wrapper - make it inline container */
    .social-nav-container {
        margin: 1.5rem 0 !important;
    }
    
    .social-nav-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1rem;
    }
    
    /* Make social links circular buttons */
    .social-nav-wrapper .social-nav-link {
        font-size: 1.5rem !important;
        padding: 0 !important;
        width: 50px !important;
        height: 50px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: rgba(255, 0, 0, 0.1) !important;
        border: 2px solid rgba(255, 0, 0, 0.3) !important;
        border-radius: 50% !important;
        transition: all 0.3s ease !important;
        color: #ffffff !important;
        text-decoration: none !important;
    }
    
    .social-nav-wrapper .social-nav-link:visited {
        color: #ffffff !important;
    }
    
    .social-nav-wrapper .social-nav-link:hover {
        background: rgba(255, 0, 0, 0.2) !important;
        border-color: #ff0000 !important;
        transform: scale(1.1) !important;
        color: #ffffff !important;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .carts-grid {
        grid-template-columns: 1fr;
    }
    
    .contacts-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .prices-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-slide {
        min-width: calc(100% - 2rem);
    }
    
    .price-card.popular {
        transform: none;
    }
}