/*
Theme Name: Emotion Bikes Child
Template: twentytwentyfour
Version: 5.0.0
*/

:root {
    --primary-blue: #4A90E2;
    --dark-blue: #0066CC;
    --light-blue: #E8F4F8;
    --text-dark: #333333;
    --text-gray: #666666;
    --white: #FFFFFF;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* HEADER */
.header {
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-img {
    height: 50px;
    width: 50px;
    object-fit: contain;
    border-radius: 16px;
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-blue);
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width 0.3s;
}

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

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

.header-contacts {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-shrink: 0;
}

.header-phone {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
}

.header-phone:hover {
    color: var(--primary-blue);
}

.header-social {
    display: flex;
    gap: 8px;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    transition: all 0.3s;
    text-decoration: none;
    flex-shrink: 0;
}

.social-icon:hover {
    transform: translateY(-3px);
}

.icon-whatsapp {
    background: #25D366;
}

.icon-instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

/* HERO - УЛУЧШЕННАЯ ВЕРСИЯ */
.hero {
    position: relative;
    color: var(--white);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 30px 80px;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(28, 89, 180, 0.37) 20%, rgba(116, 169, 251, 0.31) 30%, rgba(140, 175, 229, 0.35) 64%, rgba(45, 69, 201, 0.23) 80% );
z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 950px;
    animation: heroFadeIn 1s ease-out;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--white);
    letter-spacing: -2px;
    text-shadow: 0 4px 30px rgba(0,0,0,0.3);
    line-height: 1.1;
}

.hero-subtitle {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 1.45rem;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.98);
    font-weight: 500;
    line-height: 1.8;
    text-shadow: 0 3px 20px rgba(0,0,0,0.35);
    letter-spacing: 0.5px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.btn-hero {
    display: inline-block;
    background: var(--white);
    color: var(--primary-blue);
    padding: 22px 55px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(74, 144, 226, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-hero:hover::before {
    width: 400px;
    height: 400px;
}

.btn-hero:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.4);
    background: #f8f9fa;
}

/* ЕДИНЫЙ СТИЛЬ ЗАГОЛОВКОВ ДЛЯ ВСЕХ СЕКЦИЙ */
.advantages h2,
.catalog h2,
.delivery h2,
.instagram-section h2,
.reviews h2,
.team h2,
.guarantee h2,
.contacts h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 20px;
}

.advantages h2::after,
.catalog h2::after,
.delivery h2::after,
.instagram-section h2::after,
.reviews h2::after,
.team h2::after,
.guarantee h2::after,
.contacts h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--dark-blue));
    border-radius: 2px;
}

/* SECTION DIVIDER */
.section-divider {
    height: 1px;
    background: #222222;
    margin: 0 auto;
    max-width: 1200px;
    opacity: 0.15;
}

/* ADVANTAGES */
.advantages {
    padding: 80px 30px;
    background: var(--white);
}

.advantages h2 {
    margin-bottom: 60px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.advantage-card {
    background: var(--white);
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(74,144,226,0.2);
}

.advantage-icon {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.advantage-card:hover .advantage-icon {
    transform: scale(1.15) rotate(8deg);
    filter: drop-shadow(0 8px 15px rgba(74, 144, 226, 0.3));
}

.advantage-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 700;
}

.advantage-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* TEAM - ПЕРЕМЕЩЕН ВЫШЕ GUARANTEE */
.team {
    padding: 80px 30px;
    background: linear-gradient(135deg, var(--light-blue) 0%, #ffffff 100%);
}

.team h2 {
    margin-bottom: 30px;
}

.team-text-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto 60px;
}

.team-subtitle {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.85;
    text-align: left;
}

.team-about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.team-photo {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    width: 100%;
    aspect-ratio: 1/1;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-stats {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.stat-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px 15px 30px 30px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 20px;
    min-height: 120px;
    position: relative;
    border-left: 4px solid var(--primary-blue);
}

.stat-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 40px rgba(74,144,226,0.25);
    border-left-color: var(--dark-blue);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(74, 144, 226, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    background: rgba(74, 144, 226, 0.18);
    transform: scale(1.1) rotate(5deg);
}

.stat-icon i {
    font-size: 1.8rem;
    color: var(--primary-blue);
}

.stat-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.stat-content p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 1rem;
}

/* GUARANTEE - НОВЫЙ ДИЗАЙН С БЕЛОЙ ВОЛНОЙ */
.guarantee {
    position: relative;
    background: linear-gradient(135deg, #4A90E2 0%, #0066CC 100%);
    padding: 100px 30px;
    overflow: hidden;
}

/* БЕЛАЯ ГРАДИЕНТНАЯ ВОЛНА ВВЕРХУ */
.guarantee-wave {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(180deg, rgba(255,255,255,0.2) 0%, transparent 100%);
    z-index: 1;
}

.guarantee-wave::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -10%;
    width: 120%;
    height: 100px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transform: rotate(-2deg);
}

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

.guarantee h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 50px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    position: relative;
    padding-bottom: 25px;
}

.guarantee h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
}

/* НОВЫЙ BADGE - БЕЛЫЙ НА СИНЕМ */
.guarantee-badge-new {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.95);
    color: var(--primary-blue);
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.6rem;
    font-weight: 700;
    box-shadow: 0 10px 40px rgba(0,0,0,0.25);
    margin-bottom: 60px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.guarantee-badge-new:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 50px rgba(0,0,0,0.35);
}

.guarantee-badge-new i {
    font-size: 2rem;
    color: var(--primary-blue);
    transition: transform 0.4s ease;
}

.guarantee-badge-new:hover i {
    transform: scale(1.15) rotate(10deg);
}

/* FEATURES БЛОКИ - 3 ШТУКИ */
.guarantee-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.guarantee-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.guarantee-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.3);
    background: rgba(255, 255, 255, 0.2);
}

.guarantee-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.guarantee-item:hover .guarantee-icon {
    background: rgba(255, 255, 255, 0.35);
    transform: scale(1.1) rotate(5deg);
}

.guarantee-icon i {
    font-size: 2.5rem;
    color: white;
}

.guarantee-item h4 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 15px;
    font-weight: 700;
}

.guarantee-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* АДАПТИВНОСТЬ */
@media (max-width: 968px) {
    .guarantee {
        padding: 80px 20px;
    }
    
    .guarantee h2 {
        font-size: 2.2rem;
    }
    
    .guarantee-badge-new {
        font-size: 1.6rem;
        padding: 20px 40px;
    }
    
    .guarantee-features {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .logo-img {
  border-radius: 8px;
}
}

@media (max-width: 640px) {
    .guarantee h2 {
        font-size: 1.8rem;
    }
    
    .guarantee-badge-new {
        font-size: 1.4rem;
        padding: 18px 35px;
        gap: 10px;
    }
    
    .guarantee-badge-new i {
        font-size: 2rem;
    }
    
    .guarantee-item {
        padding: 30px 20px;
    }
}

/* BIKES CATALOG */
.catalog {
    padding: 80px 30px;
    background: linear-gradient(135deg, var(--light-blue) 0%, #ffffff 100%);
}

.catalog h2 {
    margin-bottom: 60px;
}

.bikes-slider-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.bikes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.bike-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.bike-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(74,144,226,0.25);
}

.bike-image {
    height: 380px;
    overflow: hidden;
    background: #f8f9fa;
    padding: 20px;
}

.bike-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s;
}

.bike-card:hover .bike-image img {
    transform: scale(1.05);
}

.bike-info {
    padding: 30px 25px;
}

.bike-title {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.bike-title a {
    color: var(--text-dark);
    text-decoration: none;
}

.bike-title a:hover {
    color: var(--primary-blue);
}

.bike-specs {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.bike-specs i {
    color: var(--primary-blue);
    margin-right: 8px;
}

.bike-price-section {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.old-price-catalog {
    font-size: 1.1rem;
    color: #999;
    text-decoration: line-through;
    font-weight: 500;
}

.bike-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.bike-price.sale-price {
    color: #FF4757;
}

.sale-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #FF6B6B 0%, #FF4757 100%);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.3);
    z-index: 2;
}

.btn-details {
    display: inline-block;
    background: var(--primary-blue);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-details:hover {
    background: var(--dark-blue);
    transform: translateX(5px);
}

/* DELIVERY */
.delivery {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 100px 30px;
    position: relative;
    overflow: hidden;
}

.delivery::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.delivery-content {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.delivery h2 {
    margin-bottom: 25px;
}

.delivery-subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-gray);
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.delivery-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    max-width: 1100px;
    margin: 0 auto 70px;
}

.delivery-feature {
    text-align: center;
    padding: 35px 25px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.delivery-feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(74,144,226,0.2);
}

.delivery-feature i {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
    display: block;
    transition: all 0.3s ease;
}

.delivery-feature:hover i {
    transform: scale(1.1) rotate(5deg);
}

.delivery-feature h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 700;
}

.delivery-feature p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.7;
}

.delivery-partners {
    margin-top: 60px;
}

.delivery-partners h3 {
    text-align: center;
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-weight: 700;
}

.delivery-partners-description {
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    font-weight: 500;
}

.delivery-logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.delivery-logo-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    transition: all 0.3s ease;
}

.delivery-logo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(74,144,226,0.2);
}

.delivery-logo-img {
    max-width: 100%;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.delivery-logo-card:hover .delivery-logo-img {
    filter: grayscale(0%);
}

/* INSTAGRAM */
.instagram-section {
    padding: 80px 30px;
    background: linear-gradient(135deg, var(--light-blue) 0%, #ffffff 100%);
    text-align: center;
}

.instagram-section h2 {
    margin-bottom: 30px;
}

.instagram-section p {
    font-size: 1.15rem;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.btn-instagram {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--white);
    padding: 20px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(188, 24, 136, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-instagram::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.7s ease;
}

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

.btn-instagram:hover {
    transform: translateY(-8px) scale(1.08);
    box-shadow: 0 15px 40px rgba(188, 24, 136, 0.5);
}

.btn-instagram i {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.btn-instagram:hover i {
    transform: scale(1.2) rotate(10deg);
}

@keyframes instagram-pulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(188, 24, 136, 0.4);
    }
    50% {
        box-shadow: 0 8px 35px rgba(188, 24, 136, 0.6);
    }
    
    

}

.btn-instagram {
    animation: instagram-pulse 2s ease-in-out infinite;
}

/* REVIEWS */
.reviews {
    padding: 100px 30px;
    background: var(--white);
    overflow: hidden;
}

.reviews h2 {
    margin-bottom: 70px;
}

.reviews-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.reviews-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 30px;
}

.review-card {
    min-width: calc(33.333% - 20px);
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 8px 35px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.review-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    border-radius: 20px 20px 0 0;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 5rem;
    color: rgba(74, 144, 226, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(74,144,226,0.2);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.review-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.review-author h4 {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 5px;
    font-weight: 600;
}

.review-stars {
    color: #FFC107;
    font-size: 0.95rem;
}

.review-text {
    color: var(--text-gray);
    line-height: 1.8;
    font-style: italic;
    font-size: 1rem;
}

.reviews-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 50px;
}

.review-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.review-dot:hover {
    background: #bbb;
    transform: scale(1.2);
}

.review-dot.active {
    background: var(--primary-blue);
    width: 40px;
    border-radius: 6px;
}

/* CONTACTS */
.contacts {
    padding: 80px 30px;
    background: linear-gradient(135deg, var(--light-blue) 0%, #ffffff 100%);
}

.contacts h2 {
    margin-bottom: 60px;
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.contact-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74,144,226,0.2);
}

.contact-icon {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.contact-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.contact-card a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* MAP SECTION */
.map-section {
    margin-top: 80px;
}

.map-section-title {
    text-align: center;
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 50px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.map-section-title i {
    color: var(--primary-blue);
    font-size: 2.2rem;
}

.map-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.map-info-card {
    background: transparent;
    padding: 25px 0;
    border-radius: 0;
    box-shadow: none;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
    border-left: none;
}

.map-info-card:hover {
    transform: none;
    box-shadow: none;
}

.map-info-icon {
    width: 60px;
    height: 60px;
    background: rgba(74, 144, 226, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.map-info-card:hover .map-info-icon {
    background: rgba(74, 144, 226, 0.2);
    transform: scale(1.1) rotate(5deg);
}

.map-info-icon i {
    font-size: 1.8rem;
    color: var(--primary-blue);
}

.map-info-content h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 700;
}

.map-info-content p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

.map-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

/* FLOATING BUTTONS */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
    transition: all 0.3s;
}

.floating-btn:hover {
    transform: scale(1.1);
}

.whatsapp-btn,
.floating-whatsapp {
    background: #25D366 !important;
}

.instagram-btn,
.floating-instagram {
    background: linear-gradient(135deg, #833AB4, #FD1D1D) !important;
}

/* FOOTER */
/* FOOTER */
.footer {
    background: var(--text-dark);
    color: rgba(255,255,255,0.8);
    padding: 25px;
    text-align: center;
    font-size: 0.9rem;
}

.footersection {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.copyrightblock {
    text-align: left;
    flex: 0 0 auto;
}

.copyrightblock p {
    line-height: 1.6;
}

.payment-logos {
    display: flex;
    gap: 15px;
    align-items: center;
    flex: 0 0 auto;
}

.payment-logo {
    height: 24px;
    width: auto;
    object-fit: contain;
    opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 968px) {
    .header-content { padding: 12px 15px; }
    .logo-img { height: 40px; width: 40px; }
    .logo-text { font-size: 1.2rem; }
    .nav-menu { display: none; }
    .header-phone { font-size: 0.85rem; }
    .social-icon { width: 35px; height: 35px; font-size: 1rem; }
    
    .hero { min-height: auto; padding: 120px 20px 60px; }
    .hero-content h1 { font-size: 2.8rem; }
    .hero-subtitle { 
        font-size: 1.25rem;
        letter-spacing: 0.3px;
    }
    
    .advantages h2,
    .catalog h2,
    .delivery h2,
    .instagram-section h2,
    .reviews h2,
    .team h2,
    .guarantee h2,
    .contacts h2 {
        font-size: 2rem;
    }
    
    .bikes-grid { grid-template-columns: 1fr; }
    .team-about { grid-template-columns: 1fr; gap: 40px; }
    .team-text-wrapper { 
        grid-template-columns: 1fr; 
        gap: 30px; 
    }
    .stat-card { 
        min-height: auto; 
        padding: 25px;
        border-left-width: 3px;
    }
    .stat-icon {
        width: 50px;
        height: 50px;
    }
    .stat-icon i {
        font-size: 1.5rem;
    }
    .contacts-grid { grid-template-columns: repeat(2, 1fr); }
    .map-info-grid { grid-template-columns: 1fr; gap: 20px; }
    .delivery-logos { gap: 30px; }
    
    /* Reviews tablet - 2 per slide */
    .review-card { 
        min-width: calc(50% - 15px);
    }
    .reviews-track { gap: 20px; }
}

@media (max-width: 640px) {
    .header-content { padding: 10px 12px; gap: 10px; }
    .logo-img { height: 35px; width: 35px; }
    .logo-text { font-size: 1rem; }
    .header-phone span { display: none; }
    .header-phone { font-size: 1rem; }
    .social-icon { width: 32px; height: 32px; font-size: 0.95rem; }
    
    .hero { padding: 100px 15px 50px; }
    .hero-content h1 { font-size: 2.2rem; line-height: 1.2; }
    .hero-subtitle { 
        font-size: 1.05rem;
        letter-spacing: 0.2px;
        line-height: 1.7;
    }
    
    .advantages h2,
    .catalog h2,
    .delivery h2,
    .instagram-section h2,
    .reviews h2,
    .team h2,
    .guarantee h2,
    .contacts h2 {
        font-size: 1.8rem;
    }
    
    .advantages-grid, .contacts-grid { grid-template-columns: 1fr; }
    
    .map-section-title {
        font-size: 1.6rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .map-info-card {
        padding: 20px;
    }
    
    .map-info-icon {
        width: 50px;
        height: 50px;
    }
    
    .map-info-icon i {
        font-size: 1.5rem;
    }
    
    .btn-instagram {
        padding: 16px 35px;
        font-size: 1.05rem;
    }
    
    .floating-buttons { 
        bottom: 90px; 
        left: 15px;
        position: fixed;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    .floating-btn { 
        width: 50px; 
        height: 50px; 
        font-size: 1.4rem;
    }
    .footer { padding: 15px; font-size: 0.9rem; }
    
    .footersection {
        flex-direction: column;
        gap: 20px;
    }
    
    .copyrightblock {
        margin: 0;
        text-align: center;
    }
    
    .payment-logos { 
        gap: 12px;
        margin: 0;
        justify-content: center;
    }
    
    .payment-logo { 
        height: 20px; 
        max-width: 30px;
    }
    
    /* Reviews mobile */
    .review-card { 
        min-width: 100% !important;
        padding: 30px 20px;
    }
    .review-card::before {
        font-size: 4rem;
        top: 15px;
        right: 20px;
    }
    .reviews-track { gap: 0 !important; }
    .review-avatar { width: 45px; height: 45px; font-size: 1.1rem; }
}
/* ============================
   ВСЕ УЛУЧШЕНИЯ V7.5
   ============================ */

/* ADVANTAGES 2x2 НА TABLET */
@media (max-width: 968px) and (min-width: 641px) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 30px;
    }
}

/* ADVANTAGES ДИНАМИКА */
.advantage-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.advantage-card:hover::before {
    opacity: 1;
}

.advantage-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(74,144,226,0.25);
}

.advantage-icon {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.advantage-card:hover .advantage-icon {
    transform: scale(1.08);
    filter: drop-shadow(0 5px 12px rgba(74, 144, 226, 0.25));
}

/* INSTAGRAM УЛУЧШЕНИЯ */
.instagram-content {
    max-width: 900px;
    margin: 0 auto 40px;
}

.instagram-description {
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 40px;
    font-weight: 500;
}

.instagram-trust {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.trust-item {
    text-align: center;
    padding: 20px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(74,144,226,0.15);
}

.trust-item i {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
    display: block;
}

.trust-item span {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 600;
}

/* BIKES УЛУЧШЕНИЯ */
.bike-card {
    min-height: 580px;
}

.bike-image {
    height: 380px !important;
}

.bike-title {
    font-size: 1.1rem !important;
}

.bike-info {
    padding: 25px 20px !important;
}

.bike-short-desc {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 15px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 48px;
}

/* RESPONSIVE */
@media (max-width: 968px) {
    .delivery-logos {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .delivery-features {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .instagram-trust {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footersection {
        flex-direction: column;
        padding: 0 20px;
        gap: 25px;
    }
    
    .copyrightblock {
        text-align: center;
        margin: 0;
    }
    
    .payment-logos {
        text-align: center;
        justify-content: center;
        margin: 0;
    }
}

@media (max-width: 640px) {
    .delivery-logos {
        grid-template-columns: 1fr;
    }
    
    .instagram-trust {
        grid-template-columns: 1fr;
    }
}
