/* Custom Styles */
:root {
    /* Fonts */
    --font-poppins: 'Poppins', sans-serif;

    /* Colors */
    --black: #000000;
    --white: #ffffff;
    --primary: #FDDA0D;
    --primary-hover: #F2CF03;
    --secondary: #008000;
    --secondary-hover: #05A205;
    --light: #f8f9fa;
    --dark: #212529;

    /* Spacing */
    --spacing-responsive: clamp(2rem, 4vw + 1rem, 3.5rem);
    --padding-responsive: clamp(2rem, 4vw + 1rem, 3.5rem);
    --margin-responsive: clamp(2rem, 4vw + 1rem, 3.5rem);
}


body {
    font-family: var(--font-poppins);
    padding-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--black);
    font-family: var(--font-poppins);
}

h1 {
    font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem);
}

h2 {
    font-size: clamp(2rem, 2vw, 2rem);
}

h3 {
    font-size: clamp(1.75rem, 3vw + 1rem, 3rem);
}

h4 {
    font-size: clamp(1.5rem, 2vw + 1rem, 2.5rem);
}

h5 {
    font-size: clamp(1.25rem, 1vw + 1rem, 2rem);
}

h6 {
    font-size: clamp(1rem, 0.5vw + 1rem, 1.5rem);
}

p {
    font-size: 1rem;
}

.btn.btn-primary {
    background-color: var(--primary);
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1rem;
    border: none;
    font-weight: 600;
    color: var(--black);
    transition: all 0.3s ease;
}

.btn.btn-primary:hover {
    transform: scale(1.03);
    background-color: var(--primary-hover);
}

.btn.btn-success {
    background-color: var(--secondary);
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1rem;
    border: none;
    font-weight: 600;
    color: var(--white);
    transition: all 0.3s ease;
}

.btn.btn-success:hover {
    transform: scale(1.03);
    background-color: var(--secondary-hover);
}

/* Header Styles */
.main-header {
    background-color: var(--primary);
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.brand-section {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
    color: var(--black);
    text-decoration: none;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

.brand-tagline {
    font-size: 11px;
    font-weight: 500;
    font-style: italic;
    color: var(--black);
    margin-top: 4px;
    letter-spacing: 0.5px;
}

.navbar-nav .nav-link {
    color: var(--black) !important;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    padding: 8px 15px !important;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--secondary) !important;
}

/* Dropdown Premium Styles */
.navbar-nav .dropdown-menu {
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 10px;
    margin-top: 15px !important;
    background-color: var(--white);
    animation: fadeInDown 0.3s ease;
}

.navbar-nav .dropdown-item {
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 14px;
    color: var(--dark);
    transition: all 0.2s ease;
}

.navbar-nav .dropdown-item:hover {
    background-color: var(--primary);
    color: var(--black);
    transform: translateX(5px);
}

.navbar-nav .dropdown-toggle::after {
    display: none;
}

.navbar-nav .nav-link.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.profile-btn {
    width: 38px;
    height: 38px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.profile-btn:hover {
    transform: translateY(-2px);
    color: var(--secondary);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}



.btn-add-item i {
    font-size: 16px;
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: var(--primary);
        padding: 20px;
        margin-top: 10px;
        border-radius: 10px;
    }

    .header-actions {
        margin-top: 15px;
        justify-content: flex-start;
    }

    .offcanvas {
        background-color: var(--primary);
        border-left: none;
    }

    .offcanvas-header {
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        padding: 20px;
    }

    .offcanvas-body {
        padding: 20px;
    }

    .navbar-nav .nav-link {
        padding: 12px 0 !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .navbar-nav .dropdown-menu {
        background-color: rgba(255, 255, 255, 0.5);
        border-radius: 10px;
        box-shadow: none;
        margin-top: 0 !important;
        animation: none;
        border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .header-actions {
        margin-top: 30px;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .header-actions .btn-success {
        width: 100%;
        justify-content: center;
    }
}

/* Hero Banner Styles */
.hero-banner {
    position: relative;
    height: 900px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-title {
    font-size: clamp(2.8rem, 3.8vw, 3.8rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.5rem;
    letter-spacing: 0;
    line-height: 28px;
}

.hero-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--white);
}

.hero-arrow {
    position: absolute;
}

.arrow-prev {
    left: 30px;
    width: 71px;
    height: 83px;
    border: none;
    background: url(../images/slider-prev-btn.png) center center no-repeat;
    font-size: 0;
    background-size: 100% 100%;
}

.arrow-next {
    right: 30px;
    width: 71px;
    height: 83px;
    border: none;
    background: url(../images/slider-next-btn.png) center center no-repeat;
    font-size: 0;
    background-size: 100% 100%;
}



@media (max-width: 768px) {
    .hero-banner {
        height: 500px;
        text-align: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-arrow {
        width: 40px;
        height: 40px;
    }

    .arrow-prev {
        left: 10px;
    }

    .arrow-next {
        right: 10px;
    }
}

/* Search Inventory Styles */
.search-inventory {
    background-color: var(--secondary);
    margin-top: -110px;
    position: relative;
}

.search-tabs .nav-link {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    font-size: 15px;
    padding: 0 5px;
    background: none !important;
    border-radius: 0;
    border: none;
    transition: all 0.3s ease;
}

.search-tabs .nav-link.active {
    color: var(--white);
    border-bottom: 2px solid var(--white);
}

.search-tabs .nav-link:hover {
    color: var(--white);
}

.search-form .form-select,
.search-form .form-control {
    border-radius: 8px;
    font-size: 14px;
    color: var(--dark);
    height: 54px;
}

.search-form .form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-size: 12px;
}

.search-form .btn-primary {
    height: 54px;
    white-space: nowrap;
    min-width: 187px;
}


@media (max-width: 991.98px) {
    .search-header {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 15px;
    }

    .search-tabs {
        gap: 10px;
    }
}

/* Partners Section Styles */
.partners {
    background-color: var(--white);
    padding: clamp(4rem, 5vw, 5rem) 0;
}

.partners .section-title {
    font-size: clamp(2rem, 2vw, 2rem);
    color: var(--black);
    font-weight: 600;
    margin-bottom: 2rem;
}

.partners-marquee .partner-item {
    padding: 0 40px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    height: 60px;
}

.partners-marquee img {
    max-height: 40px;
    max-width: 150px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.partners-marquee img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Slick Linear Animation for Marquee */
.slider-marquee .slick-track {
    display: flex;
    align-items: center;
}

/* Best Solution Section Styles */
.solution {
    background-color: #F8F8F8;
    padding: clamp(4rem, 6vw, 6rem) 0;
}

.solution .section-title {
    font-size: clamp(2rem, 2.8vw, 2.5rem);
    color: var(--black);
    font-weight: 600;
    margin-bottom: 2rem;
}

.solution-image-wrapper {
    position: relative;
    max-width: 500px;
}

.solution-image-wrapper img {
    width: 100%;
    height: auto;
}

.solution-overlay-box {
    position: absolute;
    bottom: 60px;
    right: -49px;
    background-color: var(--primary);
    padding: 30px;
    width: 260px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.solution p {
    font-size: clamp(0.95rem, 1vw, 1rem);
    line-height: 28px;
    color: #606060;
}

.solution-overlay-box h4 {
    color: var(--black);
    line-height: 36px;
    font-size: 1.5rem;
}

.solution-content .check-icon i {
    font-size: 1.25rem;
}

.author-profile .author-img img {
    object-fit: cover;
    border: 4px solid #FDDA0D;
}

.author-info h6 {
    font-size: 1.1rem;
}

@media (max-width: 991.98px) {
    .solution-image-wrapper {
        margin: 0 auto 50px;
    }

    .solution-overlay-box {
        bottom: -20px;
        right: 10px;
        width: 220px;
        padding: 20px;
    }
}

/* Featured Cars Section Styles */
.featured-cars {
    padding: clamp(4rem, 6vw, 6rem) 0;
}

.featured-cars .section-title {
    font-size: clamp(2rem, 2.8vw, 2.5rem);
    color: var(--black);
    font-weight: 600;
    margin-bottom: 2rem;
}

.car-card {
    border-radius: 0;
    /* Boxy design in image */
    overflow: hidden;
    transition: all 0.3s ease;
    border: none;
}

.car-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1) !important;
}

.car-img-wrapper {
    position: relative;
    background-color: #E9ECEF;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
}

.car-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.car-price-badges {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: var(--primary);
    padding: 8px 15px;
    display: flex;
    align-items: center;
    border-radius: 4px;
    gap: 7px;
}

.car-price-badges .current-price {
    font-size: 1.1rem;
    color: var(--black);
}

.car-price-badges .tax-badge {
    background-color: #28a745;
    /* Green */
    color: var(--white);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
}

.car-model-label {
    color: #28a745;
    font-weight: 600;
    font-size: 0.9rem;
}

.car-name {
    color: var(--black);
    font-size: 1.25rem;
    font-weight: 600;
}

.car-specs {
    margin-top: 15px;
}

.spec-label {
    letter-spacing: 0.5px;
    font-size: 1rem;
    color: #919191;
    font-weight: 500;
}

.spec-value {
    letter-spacing: 0.5px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--black);
}

@media (max-width: 767.98px) {
    .featured-header {
        text-align: center;
        justify-content: center !important;
    }

    .header-left p br {
        display: none !important;
    }

}

/* Why Choose Us Section Styles */
.why-choose-us {
    overflow: hidden;
}

.choose-us-content {
    background-color: #0B1A31;
    padding: 80px 100px;
}

.why-choose-us h3 {
    font-size: clamp(2rem, 2.3vw, 2.3rem);
}

.choose-us-content h2 {
    font-size: clamp(2rem, 2.4vw, 2.4rem);
    letter-spacing: -1px;
    margin-top: 50px;
    font-weight: 600;
}

.choose-us-content p {
    font-size: clamp(0.9rem, 1vw, 1rem);
    line-height: 28px;
    color: var(--white);
}

.choose-us-content h4 {
    font-size: clamp(1.2rem, 1.3vw, 1.3rem);
    font-weight: 600;
    color: var(--white);
}

.contact-pill {
    width: 48px;
    height: 48px;
    justify-content: center;
}

.service-icon i {
    transition: transform 0.3s ease;
}

.service-item:hover .service-icon i {
    transform: rotate(45deg);
}

.play-btn-wrapper .btn-primary {
    transition: all 0.3s ease;
}

.play-btn-wrapper .btn-primary:hover {
    background-color: var(--white);
}

.border-secondary {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.top-contact-bar {
    background: var(--primary);
    padding: 31px 40px;
    margin-bottom: -76px;
    position: relative;
    z-index: 9;
}


.why-choose-us .contact-info span {
    font-size: clamp(0.9rem, 1vw, 1rem);
    font-weight: 600;
}

.why-choose-us .contact-info h5 {
    font-size: clamp(1.2rem, 1.5vw, 1.5rem);
    font-weight: 600;
    margin-top: 10px;
}

.service-icon {
    background: var(--secondary);
}

@media (max-width: 991.98px) {
    .top-contact-bar .container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .contact-info {
        text-align: center !important;
    }

    .choose-us-image {
        min-height: 400px !important;
    }

    .choose-us-content {
        padding: 60px 20px !important;
    }
}


.testimonials {
    padding-bottom: clamp(3.5rem, 5vw + 1rem, 6rem);
}

.testimonials .section-title {
    font-size: clamp(2rem, 2.5vw, 2.5rem);
    color: var(--black);
    font-weight: 600;
    margin-bottom: 2rem;
}

/* Marquee Container Styles */
.marquee-container {
    overflow: hidden;
    padding: 20px 0;
    position: relative;
    width: 100%;
}

.marquee-row {
    display: flex;
    gap: 20px;
    width: max-content;
}

/* Animation durations and directions */
.marquee-rtl {
    animation: marquee-rtl 40s linear infinite;
}

.marquee-ltr {
    animation: marquee-ltr 40s linear infinite;
}

.marquee-container:hover .marquee-rtl,
.marquee-container:hover .marquee-ltr {
    animation-play-state: paused;
}

.testimonial-item {
    width: 400px;
    flex-shrink: 0;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid #EDEDED;
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
    color: #141414;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    flex-grow: 1;
    margin-bottom: 20px;
}

.testimonial-footer {
    border-top: 1px solid #F3F4F6;
    padding-top: 20px;
}

.location-badge {
    padding: 6px 12px;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    color: #141414;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    border-radius: 30px;
    border: 1px solid rgba(20, 20, 20, 0.10);
    background: rgba(20, 20, 20, 0.04);
    opacity: 0.8;
}

.verified-icon {
    color: #039BE5;
    font-size: 14px;
    margin-left: 5px;
}

.google-logo-svg {
    width: 24px;
    height: 24px;
}

.testimonial-card .stars {
    display: flex;
}

.client-name {
    color: #141414;
    font-size: 17px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
}

/* Keyframes */
@keyframes marquee-rtl {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 10px));
    }
}

@keyframes marquee-ltr {
    0% {
        transform: translateX(calc(-50% - 10px));
    }

    100% {
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .testimonial-item {
        width: 320px;
    }
}



/* FAQ Section Styles */
.faq {
    padding-bottom: clamp(3.5rem, 5vw + 1rem, 6rem);
}

.faq .section-title {
    font-size: clamp(2rem, 2.5vw, 2.5rem);
    color: var(--black);
    font-weight: 600;
    margin-bottom: 2rem;
}

.custom-accordion .accordion-item {
    border-radius: 20px;
    border: 1px solid #8C9787;
    background: #FFF;
    box-shadow: 30px 30px 250px 0 #EDF7E9;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 16px !important;
    box-shadow: 30px 30px 250px 0 #EDF7E9;
}

.custom-accordion .accordion-button {
    background-color: var(--white);
    color: var(--black);
    font-size: clamp(1.1rem, 0.5vw + 1rem, 1.25rem);
    font-weight: 700;
    padding: 24px 30px;
    box-shadow: none !important;
    border-radius: 16px !important;
    line-height: 138%;
}

.custom-accordion .accordion-button:not(.collapsed) {
    background-color: var(--white);
    color: var(--black);
    box-shadow: none;
}

.custom-accordion .accordion-body {
    padding: 0 90px 24px 30px;
    color: var(--black);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 148%;
}

.custom-accordion .accordion-button::after {
    background-image: none;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\2b";
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #38424D;
    border-radius: 50%;
    color: var(--white);
    font-size: 22px;
    transition: all 0.3s ease;
}

.custom-accordion .accordion-button:not(.collapsed)::after {
    content: "\f068";
    background-color: #31353C;
    transform: rotate(0deg);
}

.custom-accordion .accordion-button:not(.collapsed)::after {
    content: "\f068";
}

/* Footer Styles */
.site-footer {
    background: url('../images/footer-bg.jpg') no-repeat center center;
    background-size: cover;
    color: var(--black);
    padding: 50px 0 40px;
}

.footer-desc {
    color: var(--black);
    font-size: 18px;
    font-weight: 700;
    line-height: 144%;
    max-width: 398px;
}

.footer-logo {
    margin-bottom: 32px;
}

.footer-title {
    color: var(--black);
    font-size: 20px;
    font-weight: 700;
    line-height: 144%;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--black);
    font-size: 17px;
    font-weight: 400;
    line-height: normal;
    transition: all 0.3s ease;
    text-decoration: none;
    opacity: 0.8;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-hours li {
    font-size: 16px;
    color: var(--black);
    opacity: 0.8;
    margin-bottom: 12px;
}


.footer-contact-bar .border-gradient {
    width: 100%;
    height: 1px;
    display: block;
    background: linear-gradient(to right,
            transparent,
            rgba(0, 0, 0, 0.1),
            rgba(0, 0, 0, 0.2),
            rgba(0, 0, 0, 0.1),
            transparent);
}

.contact-icon {
    width: 42px;
    min-width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.contact-icon img {
    width: 18px;
    height: 18px;
}

.contact-label {
    color: var(--black);
    font-size: 14px;
    font-weight: 400;
    line-height: 160%;
}

.contact-value {
    color: var(--black);
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    text-decoration: none;
}

.footer-bottom {
    background: rgba(255, 255, 255, 0.2);
}

.copyright-text {
    color: var(--black);
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 160%;
}

.footer-contact-bar .row {
    padding: 50px 0 !important;
}

.bottom-text {
    margin-top: 37px;
}

.removal-across-brisbane {
    background: url(../images/hav-inqueries-bg.jpg) no-repeat center center;
    background-size: cover;
    padding: 0;
    border-radius: 20px;
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3);
    margin-bottom: 100px;
    height: 646px;
}

.removal-across-brisbane h3 {
    color: #fff;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 98%;
    margin-bottom: 23px;
}

.enquiry-form {
    padding: 40px 50px;
    color: #fff;
}