/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* -------- Light Theme Tokens -------- */
:root{
    --bg: #ffffff;
    --bg-soft: #f6f7f8;
    --bg-softer: #f9fafb;
    --card: #ffffff;
    --border: #e6e8eb;
    --text: #111111;
    --muted: #667085;
    --muted-2: #8a8f98;
    --accent: #3fb271;
    --accent-600: #32995f;
    --chip: #eef6f0;
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px rgba(0,0,0,0);
    border-radius: 0;
    background: var(--bg-soft);
}
::-webkit-scrollbar-thumb {
    background-color: var(--accent);
    border-radius: 0;
}

/* Website style */
* { padding: 0; margin: 0; }
html { width: 100%; height: 100%; scroll-behavior: smooth; }

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    height: 100%;
    overflow-x: hidden;
    background-color: var(--bg);
    margin: 40px 200px;
    color: var(--text);
}

@media only screen and (max-width: 1100px) {
    body{ margin: 40px 30px; }
}

a{ text-decoration: none!important; color: inherit; }
img{ max-width: 100%; }

/**:focus, *:hover, select {*/
/*    outline: none!important;*/
/*    border: transparent!important;*/
/*    box-shadow: none;*/
/*    -webkit-appearance: none;*/
/*}*/

/* Logotype */
.navbar__logotype__title{
    color: var(--text);
    font-size: 40px;
    font-weight: 800;
}

.navbar__logotype__subtitle{
    font-weight: 500;
    font-size: 17px;
    margin-left: 110px;
    margin-top: -7px;
    color: var(--accent);
}

.navbar__logotype{
    text-align: center;
    margin-bottom: 40px;
}

/* Title */
.title__section{
    text-align: center;
    margin: 35px 0;
}

.title__section--title{
    color: var(--text);
    font-size: 34px;
    font-weight: 800;
}

.title__section--subtitle{
    color: var(--muted);
    font-weight: 400;
    margin-top: -2px;
}

/* Navbar */
.navbar{
    background: var(--bg-soft);
    padding: 36px 60px;
    border: 1px solid var(--border);
}

nav ul{
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar__link{ margin: 0 20px; }

.navbar__link a{
    font-size: 15px;
    text-decoration: none;
    color: var(--muted);
    font-weight: 500;
    transition: 0.3s;
}

.navbar__link a:hover{ color: var(--text); }
.navbar__link--active a{ color: var(--text); }

.navbar__toggle{ display: none; }

@media only screen and (max-width: 1100px) {
    .navbar{ padding: 30px 35px; }
    .navbar__toggle{ display: block; color: #475467; font-weight: 600; }
    .navbar__links{ display: none; }
    .navbar__links--active{ display: block; }
    .navbar__link{ margin: 12px 0; }
}

/* Header */
.header__baner{ margin: 10px 0; }
.header__baner img{ width: 100%; }

/* Search */
.search{
    background: var(--bg-soft);
    padding: 36px 60px;
    border: 1px solid var(--border);
}

.search .row{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.33%;
}

.search .col{
    width: 24%;
    display: flex;
    flex-direction: column;
}

.search label{
    font-size: 14px;
    margin-bottom: 10px;
    color: var(--muted);
    font-weight: 400;
}

.search label span{ color: var(--accent); }

.search select{
    font-family: 'Montserrat', sans-serif;
    padding-left: 28px;
    background: var(--card);
    border: 1px solid var(--border)!important;
    height: 66px;
    color: #384250;
}

.search__btn{
    font-family: 'Montserrat', sans-serif;
    height: 66px;
    background: var(--accent);
    color: #000;
    font-weight: 600;
    transition: .3s;
    border: 0;
}

.search__btn:hover{ background: var(--accent-600); }

@media only screen and (max-width: 1100px) {
    .search{ padding: 12px 30px 28px; }
    .search .col{ width: 100%; }
    .search label{ margin-top: 20px; }
}

/* Slider */
.manufacturers{ margin-top: 70px; width: 100%; }
.manufacturers__logo{
    text-align: center; display: flex; justify-content: center; align-items: center;
}
.manufacturers__logo img{ width: 230px!important; }

.slider{ padding: 0 5%; position: relative; }
.swiper { width: 100%; height: auto; }
.swiper-slide img { display: block; width: 100%; height: 100%; object-fit: cover; }
.swiper{ position: relative; }
.pagination{ padding-top: 30px; }

.swiper-pagination-bullet {
    padding: 0 18px;
    border-radius: 0!important;
    width: auto;
    height: 20px;
    text-align: center;
    line-height: 30px;
    font-size: 12px;
    opacity: 1;
    background: #d0d5dd !important;
}
.swiper-pagination-bullet-active { background-color: var(--accent)!important; }

/* Vehicles */
.vehicles{ margin-top: 70px; }
hr, hr:hover{ border: 1px solid var(--border)!important; }
.vehicles .title__section{ margin-top: 70px; }

.vehicles__card{
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}
.vehicles__card img{ width: 100%; margin-bottom: 20px; }
.vehicles__card--title{ font-size: 30px; color: var(--text); }
.vehicles__card--description{
    font-weight: normal; font-size: 14px; color: var(--muted); margin-bottom: 30px;
}
.vehicles__card--btn{
    padding: 23px; background: var(--accent); color: #000; font-weight: 600; font-size: 15px; transition: .3s; border: 0;
}
.vehicles__card--btn:hover{ background-color: var(--accent-600); }

/* Grid */
.row{ display: flex; flex-direction: row; flex-wrap: wrap; gap: 2%; }
.about .row{ gap: 4%; }
.row--center{ align-items: center; text-align: left!important; }
.col-4{ width: 23.33%; }
.col-2{ width: 48%; }
.col-9{ width: 71%; }
.col-3{ width: 27%; }
.col-form{ width: 23.33%; }
.col-12{ width: 100%; }
.col-offer{ width: 37%; }
.col-offer-info{ width: 61%; }

@media only screen and (max-width: 1800px) {
    .col-offer{ width: 100%; }
    .col-offer-info{ width: 100%; }
}

@media only screen and (max-width: 1100px) {
    .col-4{ width: 32%; }
    .col-2{ width: 100%; }
    .col-9{ width: 100%; }
    .col-3{ width: 100%; }
}
@media only screen and (max-width: 900px) { .col-4{ width: 49%; } }
@media only screen and (max-width: 500px) { .col-4{ width: 100%; } }

/* Gallery / Opinions */
.gallery, .opinions{ padding: 1px 0; }
.gallery .slider, .opinions .slider{ padding: 0; }

.gallery__logo{
    display: flex; justify-content: center; align-items: center;
}
.gallery__logo img{ width: 95%; margin: 15px 0 35px 0; }

.opinions .title__section{ margin-bottom: 50px; }
.opinions hr{ margin-bottom: 50px; margin-top: 90px; }

.card__opinion{
    background-color: var(--card);
    padding: 40px 30px;
    margin-bottom: 40px;
    border: 1px solid var(--border);
}
.card__opinion h3{ font-weight: 800; color: var(--accent); }
.card__opinion h4{ color: var(--muted); font-weight: 600; margin-bottom: 20px; }
.card__opinion p{ font-weight: 500; font-size: 15px; color: #384250; }

/* About */
.about{ margin: 30px 0 50px; }
.about .row, .values .row{ margin: 30px 0; }

.card__text h1{ font-weight: 800; font-size: 40px; color: var(--text); }
.card__text h5{
    width: 80%; color: var(--muted-2); font-weight: 600;
}
.card__text p{ font-weight: 400; font-size: 15.5px; color: #384250; }

@media only screen and (max-width: 1100px) {
    .card__text h1{ margin-top: 20px; font-size: xx-large; }
}

/* Values */
.values hr{ margin-bottom: 50px; margin-top: 50px; }
.values .row{ margin-top: 50px; }
.values ul{ list-style: none; }
.values ul p{ font-size: 15px; font-weight: 500; color: var(--muted-2); }
.values li{
    margin: 9px 0; display: flex; align-items: center; font-weight: 500; font-size: 14px; color: #384250;
}
.values svg{ margin-right: 15px; }
@media only screen and (max-width: 1100px) { .values__second{ margin-top: 70px; } }

/* Service */
.card__service--icon{
    width: 65px; height: 65px; background-color: #dff3e7; /* soft accent bg */
    display: flex; justify-content: center; align-items: center; border-radius: 8px;
}
.card__service h2{ margin-top: 20px; font-weight: 800; color: var(--text); }
.card__service p{ font-weight: 400; margin-top: 10px; font-size: 14px; color: #384250; }
.card__service{ margin-bottom: 60px; }

/* Form */
.form{ padding-bottom: 50px; }
.form hr{ margin-bottom: 50px; margin-top: 10px; }

.info__card{
    background-color: var(--card);
    padding: 30px 30px;
    border: 1px solid var(--border);
}
.info__card hr{ margin-bottom: 12px; margin-top: 12px; }
.info__card h4{ font-weight: 400; color: #384250; }
.info__card span{ font-weight: 600; color: var(--accent); }

.form h2{ font-size: xx-large; font-weight: 800; margin-bottom: 60px; color: var(--text); }

.form__control{ display: flex; flex-direction: column; width: 100%; }
.form__control label{ font-weight: 500; margin-bottom: 10px; font-size: 14px; color: var(--text); }

.form__control input{
    font-family: 'Montserrat', sans-serif;
    padding: 20px;
    background-color: var(--bg-softer);
    outline: none;
    border: 1px solid var(--border);
    margin-bottom: 30px;
    color: var(--text);
}

.form h5{ margin-top: 15px; color: var(--muted); font-weight: 400; }

.form__btn{
    margin-top: 25px;
    font-family: 'Montserrat', sans-serif;
    padding: 22px 80px;
    background: var(--accent);
    color: #000;
    font-weight: 600;
    transition: .3s;
    border: 0;
}
.form__btn:hover{ background: var(--accent-600); }

/* Contact */
textarea{
    font-family: 'Montserrat', sans-serif;
    max-width: calc(100% - 20px);
    min-width: calc(100% - 20px);
    padding: 20px;
    background-color: var(--bg-softer);
    outline: none;
    border: 1px solid var(--border);
    margin-bottom: 30px;
    color: var(--text);
    -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box;
}

/* Info */
.info h2{ font-size: xx-large; font-weight: 800; margin-bottom: 10px; color: var(--text); }
.price{ color: var(--accent); margin-bottom: 40px; }

.product__card{
    background-color: var(--card);
    padding: 40px 30px;
    border: 1px solid var(--border);
}
.product__card hr{ margin-bottom: 22px; margin-top: 12px; }
.product__card p{ font-weight: 400; font-size: 15px; color: #384250; }

.product__card ul{ list-style: none; }
.product__card ul p{ font-size: 15px; font-weight: 500; color: var(--muted-2); }
.product__card li{
    margin: 9px 0; display: flex; align-items: center; font-weight: 500; font-size: 14px; color: #384250;
}
.product__card svg{ margin-right: 15px; }

/* Offer */
.offer label{ font-weight: 500; font-size: 14px; color: var(--text); }
.offer h3 span{
    height: 15px; font-size: 11px; font-weight: 500; margin-left: 11px;
    background-color: var(--chip); padding: 5px 10px; color: #125732; border: 1px solid #d6eade;
}
.offer select{
    width: 100%; margin-top: 10px;
    font-family: 'Montserrat', sans-serif;
    padding: 20px;
    background-color: var(--bg-softer);
    outline: none;
    border: 1px solid var(--border)!important;
    margin-bottom: 8px;
    color: var(--text);
}

.offer h5{ color: var(--muted); font-weight: 400; }

.offer__card{
    background-color: var(--card);
    padding: 30px 0;
    margin-bottom: 25px;
    border: 1px solid var(--border);
}

.col-info-offer{ padding-left: 20px; }

.offer--btn{
    padding: 18px 50px; margin-bottom: 40px;
    background: var(--accent); color: #000; font-weight: 600; font-size: 15px; transition: .3s; border: 0;
}
.offer--btn:hover{ background-color: var(--accent-600); }

@media only screen and (max-width: 1800px) {
    .offer__card h2{ margin-top: 30px; }
}

/* Footer */
footer{
    background: var(--bg-soft);
    color: var(--muted);
    font-size: 14px;
    justify-content: center;
    align-items: center;
    margin: 100px -200px;
    padding: 30px 150px;
    text-align: center;
    border-top: 1px solid var(--border);
}
footer h4{ font-weight: 400; }
footer a{ color: var(--accent); }

/* Header bg (optional image) */
/*
header {
    background-image: url('[URL_IMAGE]');
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}
*/

/* Responsive */
@media only screen and (max-width: 1100px) {}
