/* ======================
      GLOBAL
====================== */
*{margin:0;padding:0;box-sizing:border-box;}
html,body{
    background:#0A0A0A;
    color:#FFF;
    font-family:'Inter',sans-serif;
    width:100%;
    max-width:100%;
    overflow-x:hidden;
}
section{padding:100px 70px;}
h1,h2,h3{font-family:'Playfair Display',serif;}



/* Скрыть кнопку "Показать ещё" и "Свернуть" на ПК */
@media (min-width: 901px) {
    .show-more,
    .show-less {
        display: none !important;
    }
}


/* ======================
      NAVBAR
====================== */
.navbar{
    position:fixed;top:0;width:100%;
    padding:22px 70px;
    display:flex;justify-content:space-between;align-items:center;
    background:rgba(10,10,10,0.45);
    backdrop-filter:blur(12px);
    z-index:50;
    border-bottom:1px solid rgba(255,255,255,0.05);
}
.logo{font-size:32px;font-weight:700;color:#D4A373;font-family:'Playfair Display';}
.nav-center ul{display:flex;gap:40px;list-style:none;}
.nav-center a{color:#ffffffd0;text-decoration:none;font-size:18px;}
.btn-book{
    padding:10px 22px;background:#D4A373;color:#000;
    border-radius:8px;font-weight:600;text-decoration:none;
}
.burger{display:none;font-size:32px;color:#FFF;cursor:pointer;}
.mobile-menu{
    position:fixed;top:0;right:-100%;
    width:75%;height:100vh;background:#111;padding:40px;
    z-index:100;transition:.4s;
    display:flex;flex-direction:column;gap:25px;
}
.mobile-menu.open{right:0;}
.close-btn{align-self:flex-end;font-size:42px;cursor:pointer;color:#fff;}

/* ======================
      HERO + CANVAS
====================== */
.hero{
    height:100vh;padding-top:170px;padding-left:70px;position:relative;
}
.hero-text{width:50%;z-index:10;position:relative;}
.hero-text h1{font-size:58px;line-height:1.15;}
.hero-text p{font-size:22px;opacity:.85;margin-top:20px;margin-bottom:40px;}
.cta{
    padding:14px 32px;background:#D4A373;color:#000;
    border-radius:10px;font-size:20px;font-weight:600;text-decoration:none;
}
#renderCanvas{
    position:absolute;right:-10%;top:0;
    width:120%!important;height:120%!important;
    pointer-events:none;z-index:1;
}

/* ======================
      BANNER
====================== */
.banner{
    padding:120px 60px;background:#111;
    font-family:'Playfair Display';text-align:center;
    font-size:34px;color:#D4A373;
}

/* ======================
      FLEET SECTION
====================== */
.fleet-section h2{font-size:46px;margin-bottom:40px;}
.filters{display:flex;gap:20px;margin-bottom:40px;flex-wrap:wrap;}
.filter-btn{
    padding:10px 24px;background:#111;border:1px solid #333;
    border-radius:8px;font-size:18px;color:#fff;cursor:pointer;
}
.filter-btn:hover,.filter-btn.active{background:#D4A373;color:#000;}

.cars-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
}

/* ======================
      CAR CARD + FIX PHOTO
====================== */
.car-card{
    background:#111;padding:20px;border-radius:20px;
    border:1px solid #2a2a2a;transition:.3s;
}
.car-card:hover{transform:translateY(-6px);border-color:#D4A373;}

.car-img{
    width:100%;aspect-ratio:16/9;
    background:#222;border-radius:14px;
    overflow:hidden;margin-bottom:15px;
}
.car-img img{width:100%;height:100%;object-fit:cover;}

.car-card h3{font-size:24px;color:white;margin-bottom:5px;}
.car-card p{font-size:18px;opacity:.8;}

.car-details-btn{
    display:inline-block;margin-top:10px;padding:12px 20px;
    background:#D4A373;color:black;font-weight:600;
    border-radius:10px;text-decoration:none;
}

/* SHOW MORE / LESS */
.show-more,.show-less{
    margin:40px auto 0 auto;display:block;
    padding:14px 26px;background:#D4A373;color:black;
    border-radius:10px;border:none;font-size:20px;
    font-weight:600;cursor:pointer;
}
.show-less{display:none;}

/* ======================
      FEATURES
====================== */
.features-new{
    display:grid;grid-template-columns:repeat(3,1fr);
    gap:50px;
}
.feature{
    background:#111;padding:35px;border-radius:18px;
    border:1px solid #2a2a2a;transition:.3s;
}
.feature:hover{border-color:#D4A373;transform:translateY(-6px);}
.feature .icon{width:50px;margin-bottom:15px;}
.feature h3{font-size:22px;color:#D4A373;margin-bottom:10px;}
.feature p{font-size:17px;opacity:.8;line-height:1.5;}

/* ======================
      HOW RENT WORKS (FIXED)
====================== */
.steps-line{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}
.step{
    background:#111;padding:25px;border-radius:18px;
    border:1px solid #2a2a2a;transition:.3s;
}
.step:hover{border-color:#D4A373;transform:translateY(-5px);}
.step .num{font-size:38px;color:#D4A373;margin-bottom:8px;}
.step h4{font-size:18px;margin-bottom:8px;}
.arrow{display:none;} /* скрываем */

/* ======================
      GUARANTEE — SWIPE BLOCK
====================== */
.guarantee-flex{
    display:flex;gap:20px;overflow-x:auto;padding-bottom:10px;
    scroll-snap-type:x mandatory;
}
.guarantee-flex::-webkit-scrollbar{height:6px;}
.guarantee-flex::-webkit-scrollbar-thumb{background:#444;border-radius:4px;}

.guarantee{
    min-width:280px;scroll-snap-align:start;
    background:#111;border-radius:20px;
    padding:30px;border:1px solid #2a2a2a;
}
.guarantee h3{color:#D4A373;font-size:24px;margin-bottom:10px;}
.guarantee p{opacity:.8;line-height:1.5;font-size:17px;}

/* ======================
      GEOGRAPHY (NEW STYLE)
====================== */
.geo-layout{
    display:flex;gap:40px;align-items:center;
}
.geo-text{
    flex:1;font-size:20px;opacity:.85;line-height:1.5;
}
.geo-map{
    flex:1;height:300px;border-radius:20px;
    overflow:hidden;border:1px solid #2a2a2a;
}
.geo-map iframe,img{
    width:100%;height:100%;object-fit:cover;
}

/* ======================
      REVIEWS
====================== */
.reviews-grid{
    display:grid;grid-template-columns:repeat(3,1fr);
    gap:35px;
}
.review{
    background:#111;padding:30px;border-radius:18px;
    border:1px solid #2a2a2a;transition:.3s;
}
.review:hover{border-color:#D4A373;transform:translateY(-5px);}
.review .text{font-size:18px;line-height:1.5;}
.review .author{margin-top:12px;opacity:.7;font-size:16px;}



/* Исправление карточек на мобильных */
@media (max-width: 900px) {

     .car-card {
        width: 100%;
    }

    .car-card h3 {
        font-size: 20px;
        margin-bottom: 6px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis; /* если вдруг слишком длинно — красиво обрежет */
    }

    .car-card p {
        font-size: 16px;
        opacity: 0.8;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        margin-bottom: 10px;
    }

    .car-details-btn {
        width: 100%;
        text-align: center;
        padding: 12px;
        font-size: 17px;
    }
}


.car-img {
    width: 100%;
    height: 180px; /* уменьшили для телефонов */
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 12px;
}

@media (max-width: 900px) {
    .car-img {
        height: 150px; /* компактнее на мобильных */
    }
}


@media (max-width: 900px) {
    .car-card {
        min-height: 280px; /* одинаковая высота */
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }
}



/* ======================
      CONSULT FORM
====================== */
.form-container{
    display:flex;gap:50px;
}
form{
    flex:1;display:flex;flex-direction:column;gap:18px;
}
form input{
    padding:14px;border-radius:10px;background:#111;
    border:1px solid #2a2a2a;color:white;font-size:16px;
}
.social-select{display:flex;gap:12px;}
.social-option{
    padding:12px 18px;border-radius:10px;
    background:#111;color:#fff;border:1px solid #333;
}
.social-option.active{border-color:#D4A373;background:#1a1a1a;color:#D4A373;}

.contact-info{
    flex:1;background:#111;padding:30px;
    border-radius:18px;border:1px solid #2a2a2a;
}
.contact-info h3{color:#D4A373;font-size:26px;margin-bottom:10px;}
.contact-info p{opacity:.85;font-size:18px;margin-bottom:6px;}
.contact-info a{color:#D4A373;text-decoration:none;}

.submit-btn{
    padding:16px;background:#D4A373;color:black;
    border:none;border-radius:12px;font-weight:600;
    cursor:pointer;font-size:18px;
}

/* ======================
      FAQ
====================== */
.faq-item{
    background:#111;padding:20px;border-radius:14px;
    border:1px solid #2a2a2a;margin-bottom:20px;
}
.faq-question{
    width:100%;font-size:20px;background:none;border:none;
    text-align:left;color:white;cursor:pointer;
}
.faq-question.active{color:#D4A373;}
.faq-answer{
    margin-top:10px;font-size:17px;opacity:.8;display:none;
    line-height:1.5;
}

/* ======================
      FOOTER (NEW STYLE)
====================== */
.footer{
    background:#0c0c0c;padding:80px 70px 40px;margin-top:120px;
}
.footer-top{
    display:grid;grid-template-columns:repeat(4,1fr);gap:60px;
}
.footer-title{
    color:#D4A373;font-size:22px;margin-bottom:15px;
}
.footer-col ul{list-style:none;padding:0;}
.footer-col li{margin-bottom:8px;}
.footer-col a{
    color:#bbb;font-size:17px;text-decoration:none;transition:.3s;
}
.footer-col a:hover{color:#D4A373;}

.footer-map{
    height:250px;border-radius:14px;overflow:hidden;
    border:1px solid #2a2a2a;margin-top:20px;
}
.footer-map iframe{width:100%;height:100%;}

.footer-bottom{
    margin-top:30px;padding-top:20px;border-top:1px solid #2a2a2a;
    display:flex;justify-content:space-between;font-size:15px;opacity:.6;
}
.footer-bottom a{color:#D4A373;text-decoration:none;}

/* ======================
      MOBILE ADAPTATION
====================== */
@media(max-width:900px){

section{padding:60px 20px;}

.nav-center,.btn-book{display:none;}
.burger{display:block;}

.hero{padding-left:20px;padding-top:150px;}
.hero-text{width:90%;}
.hero-text h1{font-size:36px;}
.hero-text p{font-size:18px;}

#renderCanvas{
    width:130%!important;right:-15%!important;opacity:.4;
}

/* AUTOPARK 2x2 */
.cars-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

/* FEATURES */
.features-new{grid-template-columns:1fr;}

/* STEPS */
.steps-line{
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

/* GUARANTEE SWIPE */
.guarantee-flex{gap:20px;overflow-x:auto;}

/* GEO */
.geo-layout{flex-direction:column;}

/* REVIEWS */
.reviews-grid{grid-template-columns:1fr;}

/* FORM */
.form-container{flex-direction:column;gap:30px;}

/* FOOTER */
.footer{
    padding:60px 20px 30px;
}
.footer-top{
    grid-template-columns:1fr;
    gap:30px;
}
.footer-bottom{
    flex-direction:column;text-align:center;gap:10px;
}

}



/* Скрыть кнопку "Показать ещё" и "Свернуть" на мобильных */
/* @media (max-width: 900px) {
    .show-more,
    .show-less {
        display: none !important;
    }
} */

/* ============================================
   КНОПКИ ДЛЯ МОБИЛЬНОГО АВТОПАРКА
============================================ */
.fleet-btn {
    width: 100%;
    padding: 14px 0;
    text-align: center;
    border-radius: 12px;
    border: none;
    background: linear-gradient(90deg, #D4A373, #b88b5c);
    color: #000;
    font-size: 18px;
    font-weight: 600;
    margin-top: 20px;
    cursor: pointer;
    transition: .3s;
    display: none; /* скрыто по умолчанию */
}

.fleet-btn:active {
    transform: scale(0.97);
}

.show-less {
    background: #222;
    color: #D4A373;
    border: 1px solid #D4A373;
}

.hidden {
    display: none !important;
}

/* ПК ВЕРСИЯ — кнопки не показываем */
@media (min-width: 901px) {
    .fleet-btn {
        display: none !important;
    }
}

/* МОБИЛЬНАЯ ВЕРСИЯ — кнопка показывается */
@media (max-width: 900px) {
    #showMoreBtn {
        display: block;
    }
}

/* Мобильная версия — карточки по одной */
@media (max-width: 900px) {
    .cars-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .car-card.hidden-mobile {
        display: none;
    }
}

.hidden-mobile { display: none; }

.hidden { display: none !important; }


#guarantee {
    padding-top: 100px;      /* поднимаем блок выше */
    text-align: center;      /* центрируем заголовок */
}


#guarantee .section-title {
    font-size: 34px;    /* было 42px → сделали премиальный размер */
    margin-bottom: 30px;
}



@media (max-width: 900px) {
    #guarantee .section-title {
        font-size: 24px;    /* было 30px → мягче, компактнее */
        margin-bottom: 24px;
    }



    #guarantee .section-title {
        font-size: 30px;
        margin-bottom: 30px;
        line-height: 1.2;
    }
}





#geo {
    padding-top: 100px; /* поднимаем весь блок */
    text-align: center; /* центрируем заголовок */
}


#geo .section-title {
    font-size: 38px;        /* было меньше — теперь премиум размер */
    line-height: 1.2;
    margin-bottom: 45px;    /* больше воздуха под заголовком */
    text-align: center;
}


@media (max-width: 900px) {
    #geo {
        padding-top: 70px; /* комфортный отступ вверх */
    }

    #geo .section-title {
        font-size: 28px;   /* мягче, не огромный */
        margin-bottom: 30px;
        text-align: center;
    }
}



#reviews {
    padding-top: 90px;   /* поднимаем блок выше */
}

#reviews .section-title {
    text-align: left;    /* ставим слева */
    margin-bottom: 40px;
}


#reviews .section-title {
    font-size: 38px;   /* было меньше — теперь красивый премиум */
    line-height: 1.25;
}



@media (max-width: 900px) {
    #reviews {
        padding-top: 70px;
    }

    #reviews .section-title {
        font-size: 26px;     /* мягкий размер для маленьких экранов */
        margin-bottom: 28px;
        text-align: left;
    }
}


#contact {
    padding-top: 90px; /* можешь поставить 100px, если хочешь ещё выше */
}

#contact .section-title {
    text-align: left;
    font-size: 38px;     /* красивый премиальный размер */
    line-height: 1.25;
    margin-bottom: 40px;
}


@media (max-width: 900px) {
    #contact {
        padding-top: 70px;
    }

    #contact .section-title {
        font-size: 28px;   /* аккуратный размер */
        margin-bottom: 30px;
        text-align: left;
    }
}



#faq {
    padding-top: 110px; /* можешь уменьшить до 90px если покажется высоко */
    text-align: center;
}


#faq .section-title {
    font-size: 40px;     /* премиальный размер */
    line-height: 1.25;
    margin-bottom: 50px; /* больше воздуха */
    text-align: center;
}


@media (max-width: 900px) {
    #faq {
        padding-top: 80px;
    }

    #faq .section-title {
        font-size: 28px;  /* аккуратный красивый размер */
        margin-bottom: 35px;
    }
}









/* ============================
      NAVIGATION — PREMIUM
============================ */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 22px 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10,10,10,0.45);
    backdrop-filter: blur(12px);
    z-index: 100;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* LOGO */
.logo {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: #D4A373;
    letter-spacing: 0.5px;
    cursor: pointer;
}


/* CENTER MENU (ПК) */
.nav-center ul {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-center ul li a {
    color: #ffffffd0;
    text-decoration: none;
    font-size: 18px;
    transition: .3s;
}

.nav-center ul li a:hover {
    color: #D4A373;
}


/* BOOK BUTTON (ПК) */
.btn-book {
    padding: 10px 22px;
    background: #D4A373;
    color: #000;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-book:hover {
    background: #b88b5c;
}


/* BURGER (моб.) */
.burger {
    display: none;
    font-size: 34px;
    cursor: pointer;
    color: #FFF;
}


/* ========== MOBILE MENU ========== */

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10,10,10,0.6);
    backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 99;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    background: #111;
    width: 75%;
    height: 100vh;
    padding: 40px 30px;
    transition: .4s ease;
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu a {
    color: #FFF;
    text-decoration: none;
    font-size: 28px;
    font-family: 'Playfair Display';
    transition: .3s;
}

.mobile-menu a:hover {
    color: #D4A373;
}

.close-btn {
    font-size: 42px;
    align-self: flex-end;
    margin-bottom: 20px;
    cursor: pointer;
    color: #FFF;
}

.book-mobile {
    margin-top: 20px;
    background: #D4A373;
    color: #000 !important;
    padding: 12px 20px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
}

/* PHONE LAYOUT */
@media (max-width: 900px) {
    .nav-center,
    .btn-book {
        display: none;
    }

    .burger {
        display: block;
    }

    .navbar {
        padding: 16px 25px;
    }

    .logo {
        font-size: 26px;
    }
}


/* MOBILE MENU — PREMIUM LINK STYLE */
.mobile-menu a {
    text-decoration: none;          /* убираем подчёркивание */
    color: #fff;                    /* чистый белый */
    font-size: 26px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: 0.3s;
}

/* последний пункт без линии */
.mobile-menu a:last-child {
    border-bottom: none;
}

/* HOVER EFFECT */
.mobile-menu a:hover {
    color: #D4A373;                 /* золото */
    padding-left: 8px;              /* лёгкий сдвиг — премиальный эффект */
    border-bottom-color: #D4A373;   /* золотая линия */
}

/* BUTTON "Бронь" — должны выглядеть как кнопка */
.book-mobile {
    background: #D4A373;
    color: #000 !important;
    font-size: 22px !important;
    padding: 14px 20px;
    border-radius: 10px;
    margin-top: 25px;
    border: none !important;
    text-align: center;
    font-weight: 600;
    transition: 0.25s;
}

.book-mobile:hover {
    background: #b88b5c;
    padding-left: 20px;
}

/* ================================
   BENEFITS — PREMIUM NEW BLOCK
================================ */

.benefits-section {
    padding: 120px 70px;
}

.benefits-title {
    text-align: center;
    font-size: 44px;
    margin-bottom: 60px;
}

/* GRID */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* CARD */
.benefit-card {
    background: #111;
    border: 1px solid #2a2a2a;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: .35s;
    position: relative;
    overflow: hidden;
}

/* HOVER EFFECT */
.benefit-card:hover {
    transform: translateY(-6px);
    border-color: #D4A373;
    box-shadow: 0 0 20px rgba(212,163,115,0.25);
}

.benefit-card:hover .benefit-icon svg {
    transform: scale(1.12);
    filter: drop-shadow(0 0 5px #D4A373);
}

/* ICON */
.benefit-icon svg {
    width: 58px;
    height: 58px;
    transition: .35s ease;
    opacity: .95;
    margin-bottom: 18px;
}

/* TEXT */
.benefit-card h3 {
    font-size: 22px;
    color: #D4A373;
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 17px;
    opacity: .85;
    line-height: 1.5;
}

/* MOBILE */
@media (max-width: 900px) {

    .benefits-section {
        padding: 80px 20px;
    }

    .benefits-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .benefit-card {
        padding: 28px 22px;
    }
}

#steps {
    padding-top: 100px; /* поднимаем весь блок */
}
#steps .section-title {
    text-align: center;
    margin-bottom: 40px; /* уменьшили расстояние до следующего блока */
}

@media (max-width: 900px) {
    #steps {
        padding-top: 70px; /* чуть меньше на мобилке */
    }

    #steps .section-title {
        font-size: 30px;
        line-height: 1.2;
        text-align: center;
        margin-bottom: 30px;
    }
}



.footer-social{
  display: flex;
  gap: 12px;
}

.footer-social .soc{
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: rgba(255,255,255,.08);
  transition: transform .2s ease, background .2s ease;
  text-decoration: none;
}

.footer-social .soc i{
  font-size: 20px;
  line-height: 1;
}

.footer-social .soc:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.14);
}
