/* BASE RESET */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    --font-lato: "Lato", sans-serif;
    --primary-color: #CD691C;
    --black-color: #15171A;
    --light-gray: #EBEAE8;
    --border-default: #D9D9D9;
    --lime-green: #525E47;
}

body {
    font-family: var(--font-primary);
    color: #000;
    background: #F3F2EF;
    font-size: 16px;
}

ul{
    margin: 0;
    padding: 0;
}
.color-primary{
    color: var(--primary-color);
}
.color-black{
    color: var(--black-color);
}
 
.form-control:focus{
    border-color: var(--primary-color);
    box-shadow: none;
}

/* ===============================
   NAVBAR
================================ */

.navbar-header {
    /* position: sticky; */
    top: 0;
    width: 100%;
    z-index: 1000;
    font-family: var(--font-secondary);
}

.navbar-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 16px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.navbar-logo img {
    width: 132px;
}

/* Desktop Nav */
.navbar-nav {
    display: flex;
}

.nav-list {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px 0;
}

.nav-link:focus,
.nav-link:hover {
    color: var(--primary-color);
}

.nav-link .icon-size {
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Dropdown */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid var(--border-default);
    min-width: 200px;
    list-style: none;
    border-radius: 8px;
    overflow: hidden;
    display: none;
}

.dropdown li a {
    display: block;
    padding: 10px 16px;
    font-size: 13px;
    color: #000;
    text-decoration: none;
}

.dropdown li a:hover {
    background: var(--primary-color);
    color: #fff;
}

/* Hover open (desktop) */
.nav-item:hover .dropdown {
    display: block;
}

/* Icons */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.navbar-actions img {
    width: 36px;
}

.nav-icons-mobile {
    display: none;
}

/* Hamburger */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    margin-left: 8px;
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    background: #fff;
}

/* ===============================
   MOBILE NAV
================================ */

.mobile-nav {
    display: none;
    background: #000;
    position: fixed;
    top: 64px;
    width: 100%;
    height: calc(100vh - 64px);
    overflow-y: auto;
}

.mobile-list {
    list-style: none;
    padding: 16px 24px;
}

.mobile-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-item a,
.mobile-item button {
    width: 100%;
    padding: 14px 0;
    font-size: 15px;
    color: #fff;
    background: none;
    border: none;
    text-align: left;
}

.mobile-dropdown {
    display: none;
    padding-left: 12px;
}

.mobile-dropdown a {
    font-size: 14px;
    color: #ddd;
    padding: 10px 0;
    display: block;
}

.mobile-item.active .mobile-dropdown {
    display: block;
}

/* ===============================
   HERO SECTION
================================ */

.bg-container {
    background: url('../images/hero-bg.png') center/cover no-repeat;
    width: 100%;
}

.hero {
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 100px;
}

.hero-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    align-items: center;
    gap: 60px;
    flex-direction: column;
}

.hero-title {
    font-size: 64px;
    font-weight: 700;
    color: #fff;
    line-height: 110%;
}


/* ===============================
   HERO SEARCH
================================ */

.hero-search {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    background: #fff;
    padding: 24px;
    border-radius: 12px;
}

.search-field {
    position: relative;
}

.search-field select {
    padding: 14px 40px 14px 20px;
    font-size: 16px;
    border: 1px solid #B3B3B3;
    border-radius: 12px;
    min-width: 226px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: #fff;
    color: #292B2E;
    height: 100%;
}

.select-icon {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    font-size: 12px;
    color: #292B2E;
    pointer-events: none;
}

.search-field select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.search-button {
    padding: 12px;
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
    color: #fff;
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    cursor: pointer;
    line-height: 24px;
    height: 100%;
}

.search-button:hover {
    opacity: 0.9;
}


/* ===============================
   TRUSTPILOT MICRO STRIP
================================ */

/* TRUSTPILOT STARS */
.trustpilot-strip {
    background-color: var(--black-color);
    color: #EBEAE8;
}

.trustpilot-stars .tp-star {
    height: 30px;
    width: 30px;
    background-color: #219653;
    display: flex;
    justify-content: center;
    align-items: center;
}

.trustpilot-stars .tp-star.half {
    background: linear-gradient(to right,
            #219653 50%,
            var(--border-default) 50%);
}

/* ===============================
   REFRENCE SEARCH
================================ */

.reference-search {
    padding-top: 150px;
    padding-bottom: 150px;
}

.search-container {
    max-width: 600px;
}

.search-container input {
    border-radius: 12px;
    border: 1px solid var(--border-default);
}

.search-container input::placeholder {
    color: #B3B3B3;
}

.refrence-title,
.refrence-subtitle {
    font-size: 20px;
}

/* ===============================
   PROMO CRAD
================================ */

.promo-card {
    padding: 57px 60px;
    border-radius: 12px;
    background: url('../images/Promotion.png') center / cover no-repeat;
}

.promo-btn {
    background-color: var(--primary-color);
    padding: 24px 32px;
    color: #F5F5F5;
    line-height: 24px;
    border-radius: 8px;
    font-size: 32px;
    font-weight: 600;
    border: none;
}

.promo-btn:hover {
    opacity: 0.9;
}

/* ===============================
   BUY CAR SECTION
================================ */

.buy-cars-section {
    background-color: #15171A;
    margin-top: 180px;
}

.buy-cars-image {
    min-height: 200px;
    background: url('../images/buy-cars-bg.png') center / cover no-repeat;
}

.buy-car-content {
    padding: 60px;
}

.buy-car-btn {
    padding: 8px 24px;
    background-color: var(--primary-color);
    color: #F5F5F5;
    font-size: 16px;
    line-height: 24px;
    border-radius: 8px;
}

.buy-car-btn:hover {
    opacity: 0.9;
    color: #F5F5F5;
}

.buy-car-content h2 {
    font-size: 40px;
}

.buy-car-content ul {
    font-weight: bold;
}

.buy-car-content p {
    font-size: 20px;
}

/* ===============================
   BUY CAR STATS
================================ */

.buy-cars-stats {
    background-color: #525E47;
    padding: 40px 0;
}

.stats-details .number {
    font-size: 24px;
    font-family: var(--font-lato);
    line-height: 100%;
}

.stats-details .desc {
    font-size: 16px;
}




/*------------ Brand Sections -------------*/
.brand-sections{
    margin-bottom: 180px;
    margin-top: 60px;
}
.brand-sections .brand-title{
    font-size: 40px;
    color: var(--black-color);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.brand-sections p {
    color: var(--black-color);
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0px;
}
.brand-logo{
    margin: 60px 0px;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.brand-logo img{
    margin-bottom: 16px;
    max-height: 60px;
}
.brand-logo p {
    color: var(--black-color);
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
}
.btn-orange{
    padding: 8px 24px;
    font-size: 16px;
    font-weight: 600;
    background: var(--primary-color);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
}
.btn-orange:hover{
    color: #fff;
    background: #000;
}

/*------------ Counter Section -------------*/
.main-counter{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
}
.counter-section{
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    color: var(--lime-green);
    padding: 40px 0px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.counter-section img{
    height: 48px;
    margin-right: 10px;
}

/*------------- FAQ Sections -------------*/
.faq-section {
    background: url('../images/faq_bg.jpg') center / cover no-repeat;
    padding: 100px 0px;
}
.faq-overlay {
    position: absolute;
    inset: 0;
    background: rgba(82, 94, 71, 0.94);
}
.faq-title{
    font-size: 40px;
    color: var(--light-gray);
    font-weight: 900;
    text-transform: uppercase;
}
.faq-detail{
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0px;
    color: var(--light-gray);
}
#faqAccordion{
    margin-top: 60px;
}
.accordion-item {
    border: none;
    border-radius: 8px !important;
    overflow: hidden;
}
.accordion-button {
    background: #fff;
    color: var(--black-color);
    font-weight: 400;
    border-radius: 8px;
    padding: 20px;
    font-size: 16px;
}
.accordion-button:not(.collapsed) {
    background: #fff;
    box-shadow: none;
    color: var(--primary-color);
}
.accordion-button:focus {
    box-shadow: none;
}
.accordion-body {
    background: #fff;
    color: #333;
}
.accordion-button::after {
  transition: transform 0.3s ease;
}

/* Rotate when open */
.accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}


/*------------ Partner section --------------*/
.partner-section{
    max-width: 75%;
    margin: 0 auto;
    padding: 120px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.partner-section img{
    margin-bottom: 10px;
}

/*------------ Footer ------------*/
.site-footer {
    background: url('../images/footer_bg.png') center/cover no-repeat;
    position: relative;
}
.footer-overlay {
    position: absolute;
    inset: 0;
    background:rgba(21, 23, 26, 0.95);
}
.footer-grid{
    padding: 80px 0px 40px 0px;
    display: flex;
    justify-content: space-between;
    align-items: start;
}
.footer-logo {
    height: 52px ;
    display: inline-block;
    margin-bottom: 32px;
}
.footer-title {
    margin-bottom: 12px;
    font-weight: 600;
    font-family: var(--font-lato);
    text-transform: uppercase;
    font-size: 16px;
    color: var(--light-gray);
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    font-size: 16px;
    color: var(--light-gray);
    margin-bottom: 8px;
    font-weight: 500;
}
.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}
.footer-links a:hover {
    color: var(--primary-color);
}
.social-links{
    margin-bottom: 40px;
}
.social-links a {
    color: #fff;
    width: 32px;
    height: 32px;
    margin-right: 12px;
    text-decoration: none;
    display: inline-block;
}
.social-links a img{
    width: 100%;
}
.payment-logos img {
    max-width: 100%;
    margin-bottom: 24px;
}