/* ===========================
   GLOBAL STYLES
=========================== */

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    background: #000;
    color: #fff;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.page {
    padding-top: 80px;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #d4af37;
}

/* ===========================
   HEADER
=========================== */

.header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 70px;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    z-index: 1000;
    border-bottom: 1px solid #111;
}

.nav-inner {
    display: flex;
    align-items: center;
    gap: 26px;
    position: relative;
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #d4af37;
}

nav {
    display: flex;
    align-items: center;
    gap: 26px;
}

nav a {
    font-size: 1rem;
    transition: 0.3s;
}

nav a:hover {
    color: #d4af37;
}

nav .active {
    color: #d4af37;
}

.btn {
    padding: 8px 18px;
    border: 1px solid #d4af37;
    border-radius: 6px;
}

/* ===========================
   LANGUAGE SWITCH (DESKTOP)
=========================== */

.lang-switch {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-left: 20px;
    padding: 6px 14px;
    border: 1px solid #444;
    border-radius: 6px;
    font-weight: 600;
    color: #ccc;
    transition: 0.3s;
}

.lang-switch:hover {
    color: #d4af37;
    border-color: #d4af37;
}

.lang-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border: 1px solid rgba(212, 175, 55, 0.7);
    border-radius: 6px;
    color: #d4af37;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s ease;
}

.lang-item img {
    width: 18px;
    height: 18px;
}

.lang-item:hover {
    background: rgba(212, 175, 55, 0.15);
}

.active-lang {
    background: rgba(212, 175, 55, 0.25);
    border-color: #d4af37;
}

/* ===========================
   HERO SECTIONS
=========================== */

.hero {
    height: 90vh;
    background: url('img/hero.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.hero-content {
    position: relative;
    text-align: center;
}

.hero-content .title {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero-content .subtitle {
    font-size: 1.3rem;
    color: #d4af37;
    margin-bottom: 30px;
}

/* ===========================
   BUTTONS
=========================== */

.btn-gold {
    background: #d4af37;
    color: #000;
    padding: 12px 26px;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-gold:hover {
    background: #b8922c;
}

.big {
    font-size: 1.2rem;
}

/* GOLD WHATSAPP BUTTON */
.whatsapp-gold {
    display: inline-block;
    margin-top: 20px;
    text-align: center;
    background: linear-gradient(135deg, #d4af37, #b8922a);
    color: #000;
    padding: 14px 26px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: 0.3s ease;
}

.whatsapp-gold:hover {
    background: linear-gradient(135deg, #e6c45a, #c9a33a);
    transform: translateY(-3px);
}

/* ===========================
   ADVANTAGES GRID
=========================== */

.adv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    padding: 40px;
}

.adv-item {
    background: #111;
    padding: 26px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #222;
    transition: 0.3s;
}

.adv-item:hover {
    transform: translateY(-6px);
    border-color: #444;
}

/* ===========================
   FLEET PAGE — OPTIMIZED FULL-VIEW
=========================== */

.fleet-section {
    padding: 80px 40px 120px;
    max-width: 1200px;
    margin: auto;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.fleet-card {
    background: #111;
    border: 1px solid #222;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.fleet-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(0,0,0,0.5);
    border-color: #444;
}

/* FULL IMAGE, NO CROP, MAX SIZE */
.fleet-img {
    width: 100%;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.fleet-img img {
    width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: contain;
    display: block;
}

.fleet-info {
    padding: 20px 24px;
}

.fleet-info h3 {
    color: #d4af37;
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.fleet-desc {
    color: #ccc;
    margin-bottom: 18px;
    line-height: 1.6;
}

.fleet-features {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
}

.fleet-features li {
    margin-bottom: 6px;
    color: #bbb;
    font-size: 0.95rem;
}

.fleet-price {
    font-size: 1.3rem;
    color: #fff;
    font-weight: 600;
    margin-top: 10px;
}

.fleet-note {
    color: #aaa;
    font-size: 0.95rem;
    margin-bottom: 14px;
    font-style: italic;
}

/* ===========================
   ABOUT PAGE
=========================== */

.about-hero {
    height: 60vh;
    background: url('img/hero.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.9));
}

.about-hero-inner {
    position: relative;
    text-align: center;
    color: #fff;
}

.about-hero-inner h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.about-hero-inner p {
    color: #d4af37;
    font-size: 1.2rem;
}

.about-section {
    padding: 80px 40px;
    max-width: 900px;
    margin: auto;
}

.about-text p {
    margin-bottom: 20px;
    color: #ccc;
    line-height: 1.7;
}

.why-section {
    padding: 80px 40px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.why-item {
    background: #111;
    border: 1px solid #222;
    padding: 30px;
    border-radius: 12px;
    transition: 0.3s;
}

.why-item:hover {
    transform: translateY(-6px);
    border-color: #444;
}

.why-item h3 {
    color: #d4af37;
    margin-bottom: 10px;
}

.timeline-section {
    padding: 80px 40px 120px;
}

.timeline {
    border-left: 2px solid #333;
    padding-left: 30px;
    max-width: 700px;
    margin: auto;
}

.timeline-item {
    margin-bottom: 40px;
    position: relative;
}

.timeline-dot {
    width: 14px;
    height: 14px;
    background: #d4af37;
    border-radius: 50%;
    position: absolute;
    left: -38px;
    top: 4px;
}

.timeline-item h3 {
    color: #d4af37;
    margin-bottom: 6px;
}

.timeline-item p {
    color: #ccc;
}

/* ===========================
   SERVICES PAGE
=========================== */

.services-grid-section {
    padding: 80px 40px 120px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.service-card {
    background: #111;
    border: 1px solid #222;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: #444;
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #d4af37;
}

/* ===========================
   TARIFS PAGE
=========================== */

.tarifs-section {
    padding: 80px 40px;
}

.tarif-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.tarif-card {
    background: #111;
    border: 1px solid #222;
    padding: 30px;
    border-radius: 12px;
    transition: 0.3s;
}

.tarif-card:hover {
    transform: translateY(-6px);
    border-color: #444;
}

.tarif-card h3 {
    color: #d4af37;
    margin-bottom: 10px;
}

.price {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #fff;
}

/* ===========================
   CONTACT PAGE
=========================== */

.contact-section {
    padding: 80px 40px 120px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 60px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    margin-bottom: 6px;
    font-size: 1rem;
    color: #d4af37;
}

.contact-form input,
.contact-form textarea {
    background: #111;
    border: 1px solid #222;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 20px;
    color: #fff;
    font-size: 1rem;
    transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #d4af37;
    outline: none;
}

.contact-info .info-block {
    margin-bottom: 30px;
}

.contact-info h3 {
    color: #d4af37;
    margin-bottom: 6px;
}

.map-placeholder {
    background: #111;
    border: 1px solid #222;
    border-radius: 12px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    font-size: 1.2rem;
}

/* ===========================
   CTA SECTION
=========================== */

.cta-section {
    padding: 80px 40px;
    text-align: center;
}

.cta-inner {
    max-width: 700px;
    margin: auto;
}

.cta-inner h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.cta-inner p {
    color: #ccc;
    margin-bottom: 30px;
}

/* ===========================
   FOOTER
=========================== */

footer {
    text-align: center;
    padding: 40px;
    color: #777;
    border-top: 1px solid #111;
}

/* ===========================
   REVIEWS SECTION
=========================== */

.reviews-section {
    padding: 80px 40px 120px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.review-card {
    background: #111;
    border: 1px solid #222;
    padding: 30px;
    border-radius: 12px;
    transition: 0.3s ease;
}

.review-card:hover {
    transform: translateY(-6px);
    border-color: #444;
}

.review-text {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.review-author {
    color: #d4af37;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: right;
}

/* ===========================
   OLD MOBILE BLOCK (DISABLED)
=========================== */

@media (max-width: 600px) {
    /* Отключено, чтобы не ломать бургер */
}

/* ===========================
   BURGER MENU + MOBILE FIX (ИСПРАВЛЕНО)
=========================== */

#menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: #d4af37;
    position: absolute;
    right: 0;
    top: 18px;
    z-index: 2000;
}

@media (max-width: 768px) {

    .menu-icon {
        display: block;
    }

    nav {
        display: none;
        flex-direction: column;
        background: #000;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        padding: 20px 0;
        border-top: 1px solid #111;
        z-index: 1500;
        text-align: center;
    }

    /* ИСПРАВЛЕНО: меню теперь открывается всегда */
    #menu-toggle:checked ~ nav,
    #menu-toggle:checked ~ .menu-icon ~ nav {
        display: flex;
    }

    nav a {
        padding: 14px 0;
        font-size: 1.2rem;
        width: 100%;
    }

    /* ИСПРАВЛЕНО: языковые значки */
    .lang-switch {
        position: absolute;
        top: 70px;
        right: 10px;
        display: flex;
        gap: 6px;
        padding: 6px;
        background: rgba(0,0,0,0.7);
        border-radius: 6px;
        z-index: 2000;
    }

    .lang-item {
        padding: 4px 8px;
        font-size: 12px;
    }

    .lang-item img {
        width: 14px;
        height: 14px;
    }

    /* Сетки → 1 колонка */
    .fleet-grid,
    .services-grid,
    .tarif-grid,
    .reviews-grid,
    .why-grid,
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }

    section {
        padding: 40px 20px;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    p {
        font-size: 1rem;
    }
}

/* ===========================
   DESKTOP FIX FOR LANGUAGE SWITCH
=========================== */

@media (min-width: 769px) {

    .lang-switch {
        position: static;
        display: flex;
        gap: 12px;
        padding: 6px 14px;
        background: none;
        border: 1px solid #444;
        border-radius: 
