:root {
    --primary-color: #E6C200;        /* Приглушенный желтый */
    --secondary-color: #000000;      /* Черный */
    --accent-color: #D4AF37;         /* Золотистый */
    --highlight-color: #333333;      /* Темно-серый */
    --dark-color: #000000;           /* Черный */
    --light-color: #F5F5DC;          /* Бежевый */
    --text-color: #2c3e50;           /* Темно-серый текст */
    --border-color: #E6C200;         /* Приглушенные желтые границы */
    --gold-color: #E6C200;           /* Приглушенный золотой */
    --bronze-color: #DAA520;         /* Более темный золотистый */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}

.main-content {
    margin-top: 76px;
}

.btn-primary {
    background: linear-gradient(0deg, #FFD700 0%, #FFC107 50%, #FFD700 100%) !important;
    border: none !important;
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    color: #000000 !important;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
    background: linear-gradient(0deg, #FFC107 0%, #FFD700 50%, #FFC107 100%) !important;
    color: #000000 !important;
}

/* Дополнительный селектор для кнопки на главной */
.hero-buttons .btn-primary {
    background: linear-gradient(0deg, #FFD700 0%, #FFC107 50%, #FFD700 100%) !important;
    color: #000000 !important;
    border: none !important;
}

.hero-buttons .btn-primary:hover {
    background: linear-gradient(0deg, #FFC107 0%, #FFD700 50%, #FFC107 100%) !important;
    color: #000000 !important;
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color)) !important;
}

.navbar {
    background: linear-gradient(135deg, #000000, #333333) !important;
    box-shadow: 0 2px 20px rgba(230, 194, 0, 0.2);
    transition: all 0.3s ease;
    border-bottom: 2px solid #E6C200;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000 !important;
    padding: 8px 0;
}

.logo-img {
    max-height: 70px;
    width: auto;
    transition: all 0.3s ease;
    filter: brightness(1.1);
}

.logo-img:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.brand-text {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    color: #E6C200 !important;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #D4AF37 !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: #E6C200;
    transition: all 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
    left: 0;
}

.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: url('../images/background.png') center center / cover no-repeat;
    filter: blur(5px);
    z-index: -1;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.65));
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
}



.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-yellow {
    color: #E6C200 !important;
    text-shadow: 
        0 1px 0 rgba(255,255,255,0.3),
        0 2px 0 rgba(0,0,0,0.2),
        0 3px 0 rgba(0,0,0,0.1),
        0 4px 0 rgba(0,0,0,0.05),
        0 5px 0 rgba(0,0,0,0.02),
        0 6px 1px rgba(0,0,0,.05),
        0 0 3px rgba(0,0,0,.05),
        0 1px 2px rgba(0,0,0,.2),
        0 3px 4px rgba(0,0,0,.1),
        0 5px 8px rgba(0,0,0,.15);
    filter: drop-shadow(0 1px 3px rgba(0,0,0,0.3));
}

.hero-gradient {
    background: linear-gradient(90deg, 
        #A0A0A0 0%, 
        #B0B0B0 20%, 
        #C0C0C0 50%, 
        #D0D0D0 80%, 
        #E0E0E0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 
        0 1px 0 rgba(255,255,255,0.3),
        0 2px 0 rgba(0,0,0,0.2),
        0 3px 0 rgba(0,0,0,0.1);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--accent-color), var(--gold-color));
    border-radius: 2px;
}

.about-section {
    padding: 100px 0;
}

.feature-item {
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: linear-gradient(135deg, #fff, #f8f9fa);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
    transform: translateY(-5px);
}

.motorcycle-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

.motorcycle-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.motorcycle-card:hover .card-image img {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.95), rgba(212, 175, 55, 0.85));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.motorcycle-card:hover .card-overlay {
    opacity: 1;
}

.card-body {
    padding: 25px;
}

.card-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-color);
}

.card-brand {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.card-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.card-info {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 25px;
}

.blog-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-color);
}

.blog-excerpt {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.blog-date {
    color: #999;
    font-size: 0.9rem;
}

.blog-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.blog-link:hover {
    color: var(--secondary-color);
}

.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: white;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.filters-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 100px;
}

.form-control, .form-select {
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
}

.page-header {
    background: linear-gradient(135deg, var(--dark-color), #2c2c2c);
    margin-top: 76px;
}

.motorcycle-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-radius: 15px;
}

.motorcycle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.price-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--accent-color), var(--gold-color));
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.motorcycle-info {
    padding: 20px;
}

.motorcycle-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-color);
}

.motorcycle-brand {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.motorcycle-specs {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.spec-item {
    background: var(--light-color);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    color: #666;
}

.motorcycle-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.pagination .page-link {
    color: var(--primary-color);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin: 0 5px;
    padding: 10px 15px;
    transition: all 0.3s ease;
}

.pagination .page-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.pagination .page-item.active .page-link {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.footer {
    background: linear-gradient(135deg, #000000, #333333);
    margin-top: 50px;
    border-top: 2px solid #E6C200;
}

.social-links a {
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color) !important;
    transform: translateY(-3px);
}

.alert {
    border-radius: 15px;
    border: none;
    padding: 15px 20px;
}

.alert-success {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    color: #155724;
}

.view-options .btn {
    border-radius: 8px;
    padding: 8px 12px;
    margin-left: 5px;
}

.view-options .btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .motorcycle-specs {
        flex-direction: column;
        gap: 10px;
    }
    
    .motorcycle-actions {
        flex-direction: column;
    }
    
    .motorcycle-actions .btn {
        width: 100%;
    }
    
    .filters-card {
        position: static;
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .main-content {
        margin-top: 70px;
    }
    
    .hero-section::before {
        background: url('../images/background.png') 60% center / cover no-repeat;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .btn-primary, .btn-outline-primary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .card-body {
        padding: 20px;
    }
    
    .blog-content {
        padding: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

.loading {
    opacity: 0.7;
    pointer-events: none;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
} 

.call-button {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFE135, #FFD700);
    color: #000000;
    border: 2px solid #000000;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(255, 225, 53, 0.4);
    transition: all 0.3s ease;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    animation: pulse-call 2s infinite;
    opacity: 0.8;
}

.call-button:hover {
    transform: scale(1.1);
    background: #000000;
    color: #FFE135;
    border-color: #FFE135;
    box-shadow: 0 6px 25px rgba(255, 225, 53, 0.6);
    text-decoration: none;
}

.call-button:focus {
    outline: none;
    text-decoration: none;
}

@keyframes pulse-call {
    0% {
        box-shadow: 0 4px 20px rgba(230, 194, 0, 0.4), 0 0 0 0 rgba(230, 194, 0, 0.7);
    }
    70% {
        box-shadow: 0 4px 20px rgba(230, 194, 0, 0.4), 0 0 0 10px rgba(230, 194, 0, 0);
    }
    100% {
        box-shadow: 0 4px 20px rgba(230, 194, 0, 0.4), 0 0 0 0 rgba(230, 194, 0, 0);
    }
}

/* Медиа-запросы для мобильных устройств */
@media (max-width: 768px) {
    .call-button {
        width: 55px;
        height: 55px;
        bottom: 95px;
        right: 25px;
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .call-button {
        width: 50px;
        height: 50px;
        bottom: 90px;
        right: 20px;
        font-size: 1.2rem;
    }
} 

/* Модальное окно для звонка */
.call-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.call-modal.active {
    display: flex;
    opacity: 1;
}

.call-modal-content {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border: 3px solid #E6C200;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    width: 90%;
    padding: 40px 30px;
    text-align: center;
    transform: scale(0.8);
    transition: transform 0.3s ease;
    position: relative;
}

.call-modal.active .call-modal-content {
    transform: scale(1);
}

.call-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
}

.call-modal-close:hover {
    color: #E6C200;
}

.call-modal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FFE135, #FFD700);
    border: 3px solid #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: #000000;
    animation: pulse-call 2s infinite;
}

.call-modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
}

.call-modal-text {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.5;
}

.call-modal-phone {
    display: inline-block;
    background: linear-gradient(135deg, #FFE135, #FFD700);
    color: #000000;
    padding: 15px 25px;
    border-radius: 15px;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 700;
    border: 2px solid #000000;
    transition: all 0.3s ease;
    margin-bottom: 15px;
    position: relative;
    box-shadow: 0 0 20px rgba(255, 225, 53, 0.6), 0 0 40px rgba(255, 225, 53, 0.3);
    animation: phoneGlow 2s ease-in-out infinite alternate;
}

.call-modal-phone:hover {
    background: #000000;
    color: #FFE135;
    border-color: #FFE135;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 225, 53, 0.4);
}

.call-modal-copy {
    font-size: 0.9rem;
    color: #999;
    margin-top: 10px;
}

/* Мобильные устройства */
@media (max-width: 576px) {
    .call-modal-content {
        padding: 30px 20px;
        max-width: 350px;
    }
    
    .call-modal-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .call-modal-title {
        font-size: 1.3rem;
    }
    
    .call-modal-phone {
        padding: 12px 20px;
        font-size: 1.2rem;
    }
}

/* Стили для формы обратной связи */
.call-modal-content .form-control {
    border: 2px solid #FFE135;
    border-radius: 10px;
    padding: 15px;
    font-size: 1.1rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    transition: all 0.3s ease;
}

.call-modal-content .form-control:focus {
    border-color: #FFD700;
    box-shadow: 0 0 0 0.2rem rgba(255, 225, 53, 0.25);
    outline: none;
    background: rgba(255, 255, 255, 1);
}

.call-modal-content .form-control::placeholder {
    color: #999;
    font-weight: 500;
}

.call-modal-content .btn {
    border-radius: 10px;
    padding: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.call-modal-content .btn:hover {
    transform: translateY(-2px);
}

.call-modal-content .btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Стили для раздела аренды мотоциклов */
.rental-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.rental-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/background_arenda.png') center center / cover no-repeat;
    opacity: 1;
    filter: blur(7px);
    z-index: 0;
}

.rental-section .container {
    position: relative;
    z-index: 1;
}

.rental-content {
    padding: 40px 20px;
    opacity: 0;
    animation: fadeInContent 1s ease-in-out 0.2s forwards;
}
    
@keyframes fadeInContent {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.new-badge {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.badge-text {
    background: linear-gradient(135deg, #FFE135, #FFD700);
    color: #000000;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 20px rgba(255, 225, 53, 0.6), 0 0 30px rgba(255, 225, 53, 0.4), 0 0 40px rgba(255, 225, 53, 0.2);
    position: relative;
    animation: glow-badge 2s ease-in-out infinite alternate;
    text-shadow: 0 0 15px rgba(255, 225, 53, 0.8), 0 0 25px rgba(255, 225, 53, 0.6), 0 0 35px rgba(255, 225, 53, 0.4);
}

@keyframes glow-badge {
    0% {
        box-shadow: 0 4px 20px rgba(255, 225, 53, 0.6), 0 0 30px rgba(255, 225, 53, 0.4), 0 0 40px rgba(255, 225, 53, 0.2);
        text-shadow: 0 0 15px rgba(255, 225, 53, 0.8), 0 0 25px rgba(255, 225, 53, 0.6), 0 0 35px rgba(255, 225, 53, 0.4);
    }
    100% {
        box-shadow: 0 4px 30px rgba(255, 225, 53, 0.8), 0 0 50px rgba(255, 225, 53, 0.6), 0 0 70px rgba(255, 225, 53, 0.4);
        text-shadow: 0 0 25px rgba(255, 225, 53, 1), 0 0 40px rgba(255, 225, 53, 0.8), 0 0 55px rgba(255, 225, 53, 0.6);
    }
}

.rental-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
}

.rental-title-highlight {
    color: #ffffff;
}

.rental-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #FFE135, #FFD700);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(255, 225, 53, 0.4);
}

.rental-description {
    font-size: 1.1rem;
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 30px;
}

.rental-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.rental-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    background: rgba(230, 194, 0, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.rental-feature:hover {
    background: rgba(230, 194, 0, 0.2);
    transform: translateX(5px);
}

.rental-feature i {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.rental-feature span {
    font-weight: 500;
    color: #ffffff;
}

.rental-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(230, 194, 0, 0.1), rgba(212, 175, 55, 0.1));
    border-radius: 15px;
    border: 2px solid rgba(230, 194, 0, 0.2);
}

.price-label {
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 500;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.price-period {
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 500;
}

.rental-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.rental-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(255, 225, 53, 0.3), 0 0 25px rgba(255, 225, 53, 0.15);
    transition: all 0.3s ease;
}

.rental-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(255, 225, 53, 0.4);
}

.rental-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: all 0.3s ease;
    opacity: 1;
}

.rental-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 400px;
    height: 100%;
    background: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.15) 80%, rgba(255, 255, 255, 0.25) 100%);
    pointer-events: none;
    z-index: 2;
    animation: fadeInImage 2.5s ease-out 0.8s forwards;
}

@keyframes fadeInImage {
    0% {
        opacity: 0;
        transform: scale(1.05) translateY(20px);
        filter: blur(2px);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.02) translateY(10px);
        filter: blur(1px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
        filter: blur(0);
    }
}

@keyframes phoneGlow {
    0% {
        box-shadow: 0 0 20px rgba(255, 225, 53, 0.6), 0 0 40px rgba(255, 225, 53, 0.3);
    }
    100% {
        box-shadow: 0 0 30px rgba(255, 225, 53, 0.8), 0 0 60px rgba(255, 225, 53, 0.5);
    }
}

.rental-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.rental-image:hover .rental-overlay {
    opacity: 1;
}

.rental-overlay-content {
    text-align: center;
    color: white;
}

.rental-overlay-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

/* Адаптивность для раздела аренды */
@media (max-width: 768px) {
    .rental-title {
        font-size: 2rem;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .rental-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .rental-actions .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .rental-features {
        gap: 10px;
    }
    
    .rental-feature {
        padding: 8px 12px;
    }
}

@media (max-width: 576px) {
    .rental-content {
        padding: 20px 10px;
    }
    
    .rental-title {
        font-size: 1.8rem;
    }
    
    .price-amount {
        font-size: 2rem;
    }
    
    .rental-image img {
        height: 400px;
    }
    
    .rental-image::after {
        width: 250px;
    }
    
    .rental-section::before {
        background: url('../images/background_arenda.png') -500px 0px / cover no-repeat;
    }
    
    .badge-text {
        padding: 6px 15px;
        font-size: 0.8rem;
    }
} 