/* === ОБЩИЕ СТИЛИ (RESET & VARIABLES) === */
:root {
    --primary-blue: #1c4ed8; /* Основной синий */
    --dark-blue: #1e3a8a;    /* Темно-синий (для футера) */
    --light-blue: #3b82f6;   /* Светло-синий (для кнопок TG) */
    --bg-blue: #2563eb;      /* Фон блока "Почему мы" */
    --accent-yellow: #fbbf24; /* Желтый акцент */
    --whatsapp-green: #22c55e;
    --text-dark: #1f2937;
    --text-light: #f3f4f6;
    --white: #ffffff;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #f9fafb;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

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

.section-title {
    text-align: center;
    font-size: 2rem;
    color: var(--dark-blue);
    margin-bottom: 10px;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: #6b7280;
    margin-bottom: 40px;
}

/* === HEADER === */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 0;
    color: var(--white);
}

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

.logo { font-size: 1.5rem; font-weight: bold; display: flex; align-items: center; gap: 10px; }
.logo img { 
    width: 50px;
    height: 50x;
    border-radius: 50%;
}

nav ul { display: flex; gap: 30px; }
nav a:hover { color: var(--accent-yellow); }

.header-phone { font-weight: bold; display: flex; align-items: center; gap: 8px; }

/* === HERO SECTION === */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('img/background.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding-top: 60px; /* Отступ под шапку */
}

.hero h1 { font-size: 3.5rem; margin-bottom: 10px; line-height: 1.2; }
.hero span { color: var(--accent-yellow); }
.hero p { font-size: 1.2rem; margin-bottom: 30px; max-width: 700px; margin-left: auto; margin-right: auto; }

.hero-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

.btn {
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: inline-block;
}

.btn-yellow { background: var(--accent-yellow); color: var(--text-dark); border: none; }
.btn-yellow:hover { background: #d97706; color: white; }

.btn-trans { background: rgba(255,255,255,0.2); color: var(--white); border: 1px solid var(--white); backdrop-filter: blur(5px); }
.btn-trans:hover { background: var(--white); color: var(--text-dark); }

/* === SERVICES & AUTOPARK === */
.services { padding: 80px 0; }

/* Сетка для авто */
.car-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.car-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Карточки услуг (синие) */
.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.s-card {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    padding: 30px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    min-height: 200px;
}

.s-card-icon {
    width: 50px; height: 50px;
    background: var(--accent-yellow);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.s-card h3 { margin-bottom: 10px; font-size: 1.2rem; }
.s-card p { font-size: 0.9rem; opacity: 0.9; }

/* === PRICE LIST (Разноцветные блоки) === */
.prices { padding: 60px 0; background: #fff; }

.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    align-items: start; /* Чтобы блоки не растягивались */
}

.price-col { padding: 30px; border-radius: 4px; color: #fff; }
.p-blue { background: #3b82f6; }
.p-orange { background: #f97316; }
.p-green { background: #84cc16; } /* Lime green как на скрине */
.p-dark-green { background: #4d7c0f; } /* Для Таласа */
.p-light-blue { background: #60a5fa; }

.price-item {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    font-size: 0.95rem;
}
.price-item:last-child { border: none; }
.price-title { font-weight: bold; margin-bottom: 15px; display: block; text-align: center; font-size: 1.2rem;}

/* === WHY CHOOSE US (Синий фон) === */
.why-us {
    background: var(--bg-blue);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.why-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.why-card {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.why-icon {
    background: var(--accent-yellow);
    color: #000;
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

.checklist {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 10px;
    max-width: 800px;
    margin: 0 auto 60px auto;
    text-align: left;
}
.check-item { margin-bottom: 10px; display: flex; gap: 10px; }
.check-item i { color: #4ade80; }

.stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}
.stat-item h3 { font-size: 2.5rem; color: var(--accent-yellow); margin-bottom: 5px; }

/* === BOOKING & CONTACTS === */
.booking { padding: 80px 0; text-align: center; }

.social-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.soc-card {
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    padding: 40px;
    border-radius: 20px;
    width: 300px;
}

.soc-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}
.tg-color { color: #229ED9; }
.wa-color { color: #25D366; }

.btn-tg { background: #229ED9; color: white; display: block; margin-top: 20px; padding: 10px; border-radius: 8px; }
.btn-wa { background: #25D366; color: white; display: block; margin-top: 20px; padding: 10px; border-radius: 8px; }

.contact-bar {
    background: var(--primary-blue);
    color: white;
    padding: 40px;
    border-radius: 20px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}
.c-item { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.c-item i { color: var(--accent-yellow); font-size: 1.5rem; }

/* === FOOTER === */
footer {
    background: var(--dark-blue);
    color: #d1d5db;
    padding: 60px 0 20px 0;
    font-size: 0.9rem;
}

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

.footer h4 { color: var(--accent-yellow); margin-bottom: 20px; font-size: 1.1rem; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a:hover { color: white; }

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
}

/* === MOBILE RESPONSIVE === */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    header .container { flex-direction: column; gap: 15px; }
    nav ul { gap: 15px; font-size: 0.9rem; }
    .stats { flex-direction: column; gap: 20px; }
    .contact-bar { flex-direction: column; }
}