/* Общие переменные - Премиум дизайн, Glassmorphism, Глубокие цвета */
:root {
    --primary: #f59e0b; /* Яркий янтарный для WOW-эффекта */
    --primary-hover: #fbbf24;
    --wa-color: #25D366;
    --wa-hover: #1EBB55;
    
    --bg-main: #000000;
    --bg-darker: #0f172a;
    --bg-alt: #1e293b;
    --bg-glass: rgba(30, 41, 59, 0.6);
    --border-glass: rgba(255, 255, 255, 0.1);
    
    --text-light: #f8fafc;
    --text-dark: #0f172a;
    --text-gray: #cbd5e1;
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--bg-darker);
    background-image: 
        radial-gradient(circle at 15% 50%, rgba(245, 158, 11, 0.08), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(37, 211, 102, 0.05), transparent 25%);
    background-attachment: fixed;
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-4 { margin-top: 24px; }
.mt-6 { margin-top: 48px; }
.mb-4 { margin-bottom: 24px; }

/* Утилиты типографики */
h1, h2, h3, h4 { 
    font-family: var(--font-heading); 
    font-weight: 800; 
    line-height: 1.25; 
    color: #ffffff;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}

.highlight-primary { 
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    filter: drop-shadow(0px 2px 4px rgba(245, 158, 11, 0.3));
}
.gray-text { color: var(--text-gray); }

/* Кнопки - мягкие скругления */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px; /* Мягкие углы */
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

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

.btn-primary:active { transform: scale(0.97); }
.btn-primary:hover { background-color: var(--primary-hover); }

.btn-massive {
    padding: 16px 24px;
    font-size: 18px;
    border-radius: 12px;
    width: 100%;
}

.btn-shadow {
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.btn-wa {
    background-color: var(--wa-color);
    color: white;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}
.btn-wa:hover { background-color: var(--wa-hover); transform: translateY(-3px); box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5); }

.pulse-anim { animation: pulse-soft 2s infinite; }
@keyframes pulse-soft {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.6); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(245, 158, 11, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}

.glow-btn {
    animation: glow-pulse 2s infinite alternate;
}
@keyframes glow-pulse {
    0% { box-shadow: 0 0 15px rgba(245, 158, 11, 0.5), 0 0 30px rgba(245, 158, 11, 0.3); }
    100% { box-shadow: 0 0 25px rgba(245, 158, 11, 0.8), 0 0 50px rgba(245, 158, 11, 0.5); }
}

/* Хедер - премиум glassmorphism */
.header {
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo-text { display: flex; flex-direction: column; }
.logo-title { font-family: var(--font-heading); font-size: 20px; font-weight: 800; color: white; }
.logo-subtitle { font-size: 13px; color: var(--text-gray); font-weight: 500;}

.header-contact { display: flex; align-items: center; gap: 24px; }

.main-nav { display: flex; gap: 20px; align-items: center; }
.nav-link { color: var(--text-light); text-decoration: none; font-weight: 600; font-size: 15px; transition: color 0.2s; opacity: 0.8;}
.nav-link:hover, .nav-link.active { color: var(--primary); opacity: 1;}

.phone-link-big {
    font-weight: 800;
    font-size: 20px;
    color: white;
    text-decoration: none;
    transition: color 0.2s;
}
.phone-link-big:hover { color: var(--primary); }

/* Первый Экран - Дружелюбный, но уверенный */
.hero {
    position: relative;
    padding: 80px 0 100px;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
    overflow: hidden;
}

.hero-bg::after {
    content: '';
    position: absolute; inset: 0;
    /* Глубокий, современный градиент для ВАУ эффекта */
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.6) 50%, rgba(0, 0, 0, 0.8) 100%);
}

.hero-img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.badge-trust {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #e2e8f0;
    font-weight: 500;
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 30px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(36px, 5vw, 64px);
    margin-bottom: 30px;
}

.hero-checklist {
    margin-bottom: 40px;
    font-size: clamp(16px, 2vw, 20px);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--primary);
    color: #111;
    border-radius: 50%;
    font-size: 14px;
    font-weight: bold;
}

.hero-actions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 500px;
}

.quick-calc { margin-top: 24px; }
.text-link {
    font-size: 15px;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px dashed var(--primary);
    padding-bottom: 2px;
}
.text-primary { color: var(--primary); }

/* Инфо-блок (вместо агрессивной полосы бьющей тревогу) */
.info-bar {
    background-color: var(--primary);
    color: #111;
    padding: 40px 0;
}
.info-title { font-size: clamp(24px, 3vw, 32px); margin-bottom: 12px; color: #111; }
.info-text { font-size: 18px; font-weight: 500; max-width: 800px; margin: 0 auto; color: rgba(0,0,0,0.8);}

/* Прайс - Аккуратные карточки */
.prices { padding: 80px 0; }
.price-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    justify-content: center; /* Центрируем, так как стало 3 карточки */
}

.light-panel {
    background: var(--bg-glass) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass) !important;
    padding: 40px 30px;
    border-radius: 24px;
    position: relative;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.light-panel:hover { 
    transform: translateY(-10px); 
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 20px rgba(245, 158, 11, 0.1); 
    border-color: rgba(245, 158, 11, 0.3) !important;
}

.price-card h3 { font-size: 20px; margin-bottom: 15px; }

/* FAQ Аккордеон */
.faq-question { display: flex; justify-content: space-between; align-items: center; cursor: pointer; transition: color 0.2s; margin: 0 !important; }
.faq-question::after { content: '+'; font-size: 24px; color: var(--primary); transition: transform 0.3s; }
.faq-item.active .faq-question::after { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out, margin-top 0.3s; }
.faq-item.active .faq-answer { max-height: 500px; margin-top: 15px; }
.price-val { font-size: 32px; font-weight: 800; color: var(--primary); margin-bottom: 10px; font-family: var(--font-heading);}
.price-card p { color: var(--text-gray); font-size: 15px; }

.active-price {
    background: linear-gradient(180deg, rgba(40, 48, 70, 0.8), rgba(15, 23, 42, 0.9)) !important;
    border-color: rgba(245, 158, 11, 0.5) !important;
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.15) !important;
    transform: scale(1.05);
}
.active-price:hover {
    transform: scale(1.05) translateY(-5px);
}
.price-badge {
    position: absolute;
    top: -12px; left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #111;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
}

/* Что перевозим & Автопарк */
.services { padding: 80px 0; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.service-item {
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 40px 24px;
    border-radius: 20px;
    border: 1px solid var(--border-glass);
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.service-item:hover {
    transform: translateY(-8px);
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}
.service-icon { font-size: 56px; margin-bottom: 20px; text-shadow: 0 10px 20px rgba(0,0,0,0.3); }
.service-item h4 { font-size: 20px; margin-bottom: 12px; }
.service-item p { color: var(--text-gray); font-size: 15px; line-height: 1.6;}

/* Где работаем */
.locations { padding: 80px 0; }
.locations-content { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.loc-col h3 { font-size: 22px; margin-bottom: 24px; color: var(--primary);}
.loc-list { list-style: none; }
.loc-list li { 
    font-size: 16px; 
    margin-bottom: 16px; 
    color: #e2e8f0;
    position: relative;
    padding-left: 24px;
    line-height: 1.5;
}
.loc-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* Автопарк Доверие */
.trust-fleet { padding: 80px 0; }
.fleet-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.fleet-card img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 12px;
}
.trust-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-glass);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}
.trust-stats .value { 
    font-family: var(--font-heading); 
    font-size: 40px; 
    color: var(--primary); 
    font-weight: 800; 
    line-height: 1;
}
.trust-stats .label {
    font-size: 14px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Финальный CTA - ВАУ */
.mega-cta {
    background: radial-gradient(circle at center, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 1));
    padding: 120px 0;
    border-top: 1px solid var(--border-glass);
    position: relative;
    overflow: hidden;
}
.mega-cta::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle at center, rgba(245, 158, 11, 0.05), transparent 50%);
    z-index: 0;
    pointer-events: none;
}
.mega-cta > * { position: relative; z-index: 1; }
.mega-cta h2 { font-size: clamp(28px, 4vw, 48px); margin-bottom: 16px; }
.mega-cta p { font-size: 18px; color: var(--text-gray); margin-bottom: 40px; }
.cta-huge-phone {
    font-family: var(--font-heading);
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 800;
    margin-bottom: 40px;
    color: white;
}
.cta-centered { margin: 0 auto; max-width: 400px; }

/* МЕГА SEO ПОДВАЛ */
.mega-seo-links {
    background-color: #0b1120;
    padding: 60px 0;
    border-top: 1px solid var(--border-glass);
}
.pb-6 { padding-bottom: 48px; }
.seo-title-mini { 
    font-size: 20px; 
    margin-bottom: 30px; 
    color: var(--primary); 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 10px;
}
.seo-links-grid {
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); 
    gap: 30px;
}
.seo-link-col h4 { 
    font-family: var(--font-body); 
    font-size: 16px; 
    margin-bottom: 16px; 
    color: #f1f5f9; 
    font-weight: 600; 
}
.seo-link-col ul { 
    list-style: none; 
    padding: 0; 
}
.seo-link-col ul li { 
    margin-bottom: 12px; 
}
.seo-link-col ul li a { 
    color: #94a3b8; 
    text-decoration: none; 
    font-size: 14px; 
    transition: var(--transition); 
    display: inline-block;
}
.seo-link-col ul li a:hover { 
    color: var(--primary); 
    transform: translateX(5px); 
}

.seo-text-massive {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 30px;
}
.seo-text-massive h3 { 
    font-size: 18px; 
    margin-bottom: 16px; 
    color: #cbd5e1; 
}
.seo-text-massive p { 
    font-size: 13px; 
    color: #64748b; 
    line-height: 1.8; 
    text-align: justify; 
    margin-bottom: 16px; 
}
.seo-text-massive strong { 
    color: #94a3b8; 
}

/* Подвал */
.footer { border-top: 1px solid rgba(255,255,255,0.05); padding: 40px 0; background: #181a20;}
.footer-wrap { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px;}
.footer-phone { font-family: var(--font-heading); font-size: 20px; color: white; text-decoration: none; font-weight: 800;}
.copyright { font-size: 14px; text-align: center; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 30px;}

/* Плавающие мобильные кнопки */
.floating-buttons {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 99;
}

.fab-wa, .fab-tel {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    visibility: hidden;
    opacity: 0;
    transform: translateX(100px);
    transition: var(--transition);
}

.fab-wa { background: var(--wa-color); }
.fab-tel { background: var(--primary); color: #111; }

@media (max-width: 768px) {
    .floating-buttons a { visibility: visible; opacity: 1; transform: translateX(0); }
    
    .header-inner { flex-direction: column; gap: 12px;}
    .header-contact { display: none; }
    .main-nav { gap: 12px; font-size: 14px; flex-wrap: wrap; justify-content: center; }
    
    .hero { padding-top: 40px; text-align: center; }
    .hero-content { display: flex; flex-direction: column; align-items: center; text-align: center; }
    
    .hero-actions-grid { grid-template-columns: 1fr; width: 100%; max-width: 100%; }
    
    .locations-content { grid-template-columns: 1fr; gap: 30px; }
    .footer-wrap { flex-direction: column; text-align: center; gap: 20px; }
    .loc-list li { text-align: left; }
    
    .trust-stats { flex-direction: column; gap: 24px; }
}
