/* =========================
   Font Family
   ========================= */

@font-face {
    font-family: 'Conthrax';
    src: url('../fonts/Conthrax.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');




/* =========================
   Project Starter CSS
   ========================= */

:root {
    /* Brand colors */
    --color-black: #131313;
    --color-yellow: #f4c630;
    --color-yellow: #b1884b;
    --color-grey: #242424;
    --color-grey-light: #313237;
    --color-text: #929292;

    /* Text colors */
    --text: var(--color-text);
    --text-muted: rgba(19, 19, 19, 0.70);
    --text-on-dark: #ffffff;

    /* Backgrounds & borders */
    --bg: var(--color-black);

    /* Links */
    --link: var(--color-yellow);
    --link-hover: #fff;

    /* Radius & shadow */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;


    /* Typography */

}



/* 2) CSS Reset (lightweight) */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    font-family: "Poppins", sans-serif;
    font-size: var(--fs-2);
    line-height: var(--lh);
    color: var(--color-text);
    letter-spacing: -0.5px;
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding: 15px 15px;
}

img,
svg,
video,
canvas {
    max-width: 100%;
    height: auto;
    display: block;
}

input,
button,
textarea,
select {
    font: inherit;
    color: inherit;
}

a {
    color: var(--link);
    text-decoration: none;
}

a:hover {
    color: var(--link-hover);
}

:focus-visible {
    outline: none;
    box-shadow: var(--focus);
    border-radius: var(--radius-sm);
}

/* 3) Common utilities */
.container {
    width: min(1120px, 100% - 2rem);
    margin-inline: auto;
}


.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .7rem 1.05rem;
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .12s ease, background-color .12s ease, border-color .12s ease, color .12s ease;
    user-select: none;
}

.btn:active {
    transform: translateY(1px);
}

.btn-primary {
    background: var(--color-black);
    color: #fff;
}

.btn-primary:hover {
    background: #000;
}

.btn-accent {
    background: var(--color-yellow);
    color: var(--color-black);
}

.btn-accent:hover {
    filter: brightness(0.98);
}

.text-muted {
    color: var(--text-muted);
}

.form-control {
    width: 100%;
    padding: .7rem .9rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    background: var(--color-text);
    box-shadow: none !important;
}

.form-control::placeholder {
    color: rgba(19, 19, 19, 0.45);
}




/* ====== Container Sizing ======= */
.theme__section {
    border-radius: 25px;
    overflow: hidden;
    padding: 60px 0;
}

.theme__container {
    max-width: 1440px;
    margin: auto;
}


/* ===== buttons ===== */
.theme__btn,
.theme__btn:hover {
    background: var(--color-yellow);
    color: var(--color-black);
    color: #fff;
    border-radius: 8px;
    border: none !important;
    padding: 10px 15px;
    font-weight: 500;
}




/* ====== typography ======= */
.theme__heading {
    font-family: 'Conthrax', sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: #fff;
}




/* =================================================
------------ sections styling ------------------
================================================= */

.home .navbar {
    position: absolute;
    top: 20px;
    width: 100%;
    color: #fff;
    max-width: 98vw;
}

.navbar .navbar-nav {
    gap: 15px;
}

.navbar .navbar-nav .nav-link {
    color: #fff;
    opacity: 0.6;
}

.navbar .navbar-nav .nav-link.active {
    opacity: 1;
    font-weight: 600;
}

.navbar .theme__btn {
    background: #fff !important;
    color: var(--color-black) !important;
    margin-right: 10px;
}

.navbar .navbar-brand img {
    max-width: 185px;
}


/* ---- navbar toggler ----*/
.navbar-toggler {
    background: #fff;
    border-color: #fff;
    box-shadow: none !important;
    margin-right: 10px;
}


/* ---- offcanvas ---- */
.offcanvas {
    background: var(--color-black);
}

.offcanvas .btn-close {
    filter: invert(1);
}



/* ===== Hero Section ====== */
.hero__section {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 50px;
    padding-top: 200px;
}

.hero__section .hero__heading {
    text-align: center;
    font-size: 65px;
    letter-spacing: 0.2px;
    word-spacing: 10px;
}

.hero__section .search__wrapper {
    max-width: 800px;
    margin: auto;
    margin-top: 80px;
    margin-bottom: 250px;
}

.hero__section .nav-tabs {
    border: none !important;
}

.hero__section .nav-tabs .nav-item {
    border: none !important;
    outline: none !important;
    backdrop-filter: blur(5px);
}

.hero__section .nav-tabs .nav-item a.active {
    /* color: var(--color-black) */
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    border-color: rgba(255, 255, 255, 0.3);
}

.hero__section .nav-tabs .nav-item a {
    color: #fff;
}

.hero__section .hero__tab__form {
    padding: 20px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    border-top-left-radius: 0;
}


.hero__section .hero__tab__form * {
    color: #fff;
}

.hero__section .top__text__tit,
.search__wrapper .select-list .select-list-item p,
.search__wrapper p#val_steps1,
.search__wrapper p#val_steps2,
.search__wrapper p#val_steps3,
.search__wrapper p#val_steps4,
.search__wrapper p#val_steps5 {
    display: none;
}

/* .search__wrapper #valuation-form{
    display: flex;
} */
.search__wrapper .select-list {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.search__wrapper .select-list .select-list-item {
    flex: 1;
    position: relative;
}

.search__wrapper .select-list .form-navigation {
    flex: 0 0 100%;
}

.search__wrapper .select-list .select-list-item::after {
    content: '';
    height: 40%;
    width: 1px;
    background: #fff;
    position: absolute;
    right: 0;
    top: 0px;
    transform: translateY(100%);
}

.search__wrapper .select-list .select-list-item p {
    padding-left: 0.9rem;
    padding-left: 0;
}

.hero__section .hero__tab__form input,
.hero__section .hero__tab__form select {
    background: transparent !important;
    border: none !important;
    color: #fff !important;
    padding-left: 0;
}

.hero__section .hero__tab__form input::placeholder,
.hero__section .hero__tab__form select::placeholder {
    color: #fff;
}

.hero__section .hero__tab__form select option {
    background-color: var(--color-black);
    /* background: #fff; */
}

.hero__section .hero__tab__form button {
    background: var(--color-yellow) !important;
    color: var(--color-black) !important;
    color: #fff !important;
    border-radius: 8px;
    border: none !important;
    padding: 10px 15px;
    font-weight: 500;
    margin-bottom: 10px;
}

.hero__section .hero__tab__form button * {
    color: var(--color-black) !important;
    color: #fff !important;
}




/* ===== Brand logo ====== */




/* optional "panel" feel like screenshot */
.brands .container {
    position: relative;
}

.brands-swiper {
    padding: 18px 0;
}

/* each slide width (works great with slidesPerView: 'auto') */
.brands-swiper .swiper-slide {
    width: 170px;
}

.brand-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: transparent;
    /* grey look */
    opacity: .55;
    filter: grayscale(1) brightness(.95);
    transition: opacity .2s ease, filter .2s ease, transform .2s ease;
}

.brand-item img {
    height: 300px;
    width: 300px;
    width: auto;
    height: auto;
    display: block;
}

/* subtle hover (optional) */
.brand-item:hover {
    opacity: .85;
    filter: grayscale(0.2) brightness(.95);
    transform: translateY(-1px);
}

/* ---------- Special last two (tinted overlay) ---------- */
.brand-item--tint {
    opacity: .95;
    filter: grayscale(1) brightness(1);
    /* keep grey but allow overlay to show nicely */
}

.brand-item--tint::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    pointer-events: none;
    opacity: .55;
    mix-blend-mode: screen;
    /* gives that “colored overlay” vibe */
}

/* Yellow-ish tint (like your screenshot highlight) */
.brand-item--tint-yellow::after {
    background: var(--color-yellow);
}

/* Light/white tint for the very last one */
.brand-item--tint-white::after {
    background: rgba(255, 255, 255, .9);
    opacity: .25;
}









/* ====== about us ======= */

/* LEFT */
.offer-title {
    font-weight: 800;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.offer-desc {
    color: rgba(255, 255, 255, .7);
    line-height: 1.6;
}

/* .offer-list li{
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.85);
  font-size: .95rem;
}

.offer-list span{
  color: rgba(255,255,255,.4);
  font-weight: 700;
  min-width: 28px;
} */

/* BUTTON */
.btn-offer {
    background: var(--color-yellow);
    color: var(--color-black);
    font-weight: 700;
    border-radius: 10px;
    padding: .6rem 1rem;
}

.btn-offer:hover {
    filter: brightness(.97);
}

/* CARDS */
.offer-card {
    position: relative;
    min-height: 300px;
    border-radius: 16px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-start;
}


.offer-card__content {
    position: relative;
    z-index: 2;
    padding: 22px;
    max-width: 85%;
}

.offer-card h3 {
    margin: 0 0 6px;
    font-weight: 800;
    font-family: 'Conthrax', sans-serif;
    color: var(--color-black);
}

.offer-card p {
    margin: 0;
    font-size: .9rem;
    color: var(--color-black);
}

/* variants */
.offer-card--large {
    min-height: 420px;
}

.offer-card--accent h3,
.offer-card--accent p {
    color: var(--color-black);
}











/* ======= image carousel ======== */

.hero-slider__title {
    color: #fff;
    font-weight: 800;
    letter-spacing: .2px;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
}

/* Card slide size + look */
.cars-image-swiper .swiper-slide {
    width: 260px;
    /* controls how many show */
}

.car-img-card {
    display: block;
    height: 370px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    border: none;
    position: relative;
    overflow: hidden;
    cursor: grab;
}

/* subtle dark edge like screenshot */
.car-img-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .18));
}

/* Bottom-left nav buttons */
.slider-btn {
    width: 34px;
    height: 34px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .06);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-size: 12px;
}

/* .slider-btn:hover{
    background: rgba(255,255,255,.10);
  }
  .slider-btn--next{
    background: var(--color-yellow);
    border-color: var(--color-yellow);
    color: var(--color-black);
  } */
.slider-btn--next:hover {
    background: var(--color-yellow) !important;
    color: #000;
}

.img__slider_btn {}







/* ======= CTA section ========= */
.cta__section {
    min-height: 600px;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
}

.cta__data .theme__heading {
    letter-spacing: 0.2px;
    word-spacing: 10px;
    max-width: 500px;
    padding-bottom: 20px;
}

.cta__data p {
    color: #fff;
    max-width: 400px;
    opacity: 0.8;
}


/* ======= FAQ section ========= */

.faq-strip {
    background: var(--color-black);
    color: #fff;
}

.faq-title {
    letter-spacing: .2px;
    text-align: center;
}

.faq-list {
    border-top: 1px solid rgba(255, 255, 255, .10);
}

.faq-item {
    width: 100%;
    display: flex;
    gap: 18px;
    align-items: center;
    padding: 18px 0;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .10);
    text-align: left;
    color: rgba(255, 255, 255, .88);
}

.faq-item[aria-expanded="true"] .faq-q,
.faq-item[aria-expanded="true"]:hover .faq-q {
    color: var(--color-yellow)
}

.faq-num {
    min-width: 34px;
    color: rgba(255, 255, 255, .35);
    font-weight: 800;
    letter-spacing: .6px;
}

.faq-q {
    font-weight: 600;
    line-height: 1.35;
}

/* little indicator on the right */
.faq-item::after {
    content: "+";
    margin-left: auto;
    color: rgba(255, 255, 255, .45);
    font-weight: 800;
    font-size: 1.1rem;
    transition: transform .15s ease, color .15s ease;
}

.faq-item[aria-expanded="true"]::after {
    content: "–";
    color: var(--color-yellow);
}


.faq-answer {
    background: transparent;
}

.faq-answer__inner {
    padding: 10px 0 18px 52px;
    /* aligns under question text */
    color: rgba(255, 255, 255, .68);
    font-size: .95rem;
    line-height: 1.6;
}

/* Hover feels like UI */
.faq-item:hover .faq-q {
    color: #fff;
}

/* Responsive spacing */
@media (max-width: 575px) {
    .faq-item {
        gap: 12px;
        padding: 16px 0;
    }
}












/* ======= contact section ========= */

.cta-map__title {
    font-weight: 800;
    letter-spacing: .2px;
    font-size: clamp(1.7rem, 3.2vw, 2.3rem);
}

.cta-map__desc {
    color: rgba(255, 255, 255, .72);
    line-height: 1.6;
    font-size: .95rem;
}

.cta-map__btn {
    background: var(--color-yellow);
    color: var(--color-black);
    border-radius: 10px;
    padding: .6rem 1rem;
    font-weight: 700;
    border: 0;
}

.cta-map__btn:hover {
    filter: brightness(.97);
}

/* Open hours card */
.open-hours {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 14px;
    padding: 14px;
    max-width: 360px;
}

.open-hours__head {
    font-weight: 800;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, .9);
    border-bottom: 1px solid #ffffff40;
    padding-bottom: 15px;
    line-height: 1;
}

.open-hours-body {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.open-hours__row {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
    gap: 12px;
    padding: 17px 0 10px;
    border-top: 1px solid rgba(255, 255, 255, .10);
}

.open-hours__day {
    font-size: .72rem;
    letter-spacing: .8px;
    color: rgba(255, 255, 255, .65);
}

.open-hours__time {
    font-size: .85rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .9);
    text-align: right;
}

/* Right panel */
.map-panel {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.map-embed {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .10);
    min-height: 370px;
}

/* iframe takes full area */
.map-embed iframe {
    width: 100%;
    height: 100%;
    min-height: 385px;
    border: 0;

    filter: grayscale(1) contrast(1.1) brightness(.8);
    transform: scale(1.02);
    /* tiny zoom hides tile seams */
}

/* .map-pin{
  position:absolute;
  left: 56%;
  top: 55%;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--color-yellow);
  color: var(--color-black);
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
}

.map-address{
  position:absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(19,19,19,.75);
  color: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: .78rem;
  line-height: 1.35;
  max-width: 260px;
} */

/* Contact chips */
.map-chips {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .06);
    color: rgba(255, 255, 255, .9);
    text-decoration: none;
    font-size: .9rem;
}

.chip__icon {
    width: 28px;
    height: 28px;
    border-radius: 9px;
    background: rgba(244, 198, 48, .18);
    border: 1px solid rgba(244, 198, 48, .35);
    color: var(--color-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
}

.chip:hover {
    background: rgba(255, 255, 255, .10);
}

/* Responsive */
@media (max-width: 991px) {
    .open-hours {
        max-width: 100%;
    }

    .map-embed iframe {
        min-height: 280px;
    }

    .map-embed {
        min-height: 280px;
    }
}

@media (max-width: 768px) {
    .open-hours-body {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width: 575px) {
    .map-pin {
        left: 60%;
        top: 54%;
    }

    .chip {
        width: 100%;
    }
}












/* ======= footer ======== */

.site-footer {
    background: #fff;
    border-radius: 18px;
}

.footer__spacer{
    background: transparent;
    height: 15px;
}

.footer-title {
    font-weight: 700;
    letter-spacing: .3px;
    color: #111;
    text-transform: uppercase;
}

.footer-text {
    color: #6c757d;
    font-size: .95rem;
    line-height: 1.5;
}

.footer-links li {
    margin-bottom: .5rem;
}

.footer-links a {
    color: #6c757d;
    text-decoration: none;
    font-size: .95rem;
}

.footer-links a:hover {
    color: #111;
}

.newsletter .footer-input {
    background: #f1f3f5;
    border: 0;
    border-radius: 10px 0 0 10px;
    padding: .65rem .9rem;
}

.newsletter .footer-btn {
    background: #111;
    color: #fff;
    border: 0;
    border-radius: 0 10px 10px 0;
    padding: .65rem 1.1rem;
    white-space: nowrap;
}

.newsletter .footer-btn:hover {
    background: #000;
}

.footer-bottom {
    border-top: 0;
    /* image looks like no visible line */
}

.footer-copy {
    color: #6c757d;
}

.social-icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid #e9ecef;
    color: #111;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

/* highlighted (yellow) first icon */
.social-icon:hover {
    background: #f6c343;
    border-color: #f6c343;
    transform: translateY(-1px);
}










/* ==================== Media Query ==================== */

@media(max-width: 992px) {
    .hero__section {
        padding: 30px;
        padding-top: 250px;
    }

    .hero__section .hero__heading {
        font-size: 45px;
    }

    .theme__heading {
        font-size: 36px;
    }

    /* -- about us -- */
    .cars-image-swiper .swiper-slide {
        width: 360px;
    }
    .car-img-card {
        height: 500px;
    }

    /* -- cta -- */
    .cta__section{
        padding-left: 30px;
        min-height: 450px;
    }

    /* --- footer  --- */
    .site-footer{
        padding-left: 20px;
        padding-right: 20px;
    }

}



@media(max-width: 768px) {
    .navbar {
        max-width: 94vw;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 20px;
    }

    .home .navbar {
        max-width: 94vw;
    }
    .navbar .navbar-brand img {
        max-width: 120px;
    }

    /* --- font --- */
    .theme__heading {
        font-size: 28px;
    }

    /* -- hero -- */
    .hero__section {
        padding: 10px;
        padding-top: 120px;
        background-position: top;
    }

    .hero__section .hero__heading {
        font-size: 35px;
    }
    .hero__section .search__wrapper{
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .search__wrapper .select-list {
        flex-direction: column;
    }

    .search__wrapper .select-list .select-list-item::after {
        height: 1px;
        width: 100%;
        bottom: 0;
        left: 0;
        top: unset;
        transform: translateY(0);
    }

    .search__wrapper .select-list .form-navigation {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    /* -- about us -- */
    .cars-image-swiper .swiper-slide {
        width: 300px;
    }
    .car-img-card {
        height: 430px;
    }

    /* -- cta -- */
    .cta__section{
        padding-left: 20px;
        padding-right: 20px;
        min-height: 390px;
    }
    .cta__section .theme__container{
        margin-top: 0;
    }
    .cta__section  .cta__data{
        text-align: center;
        padding: 10px 15px;
    }
    .cta__data .theme__heading,
    .cta__data p{
        max-width: 100%;
        padding-bottom: 0;
    }

    /* -- faq -- */
    .faq-num{
        display: none;
    }
    .faq-answer__inner{
        padding-left: 0;
    }

    


}














.search__wrapper .select-list .select-list-item::after{
    transform: translateY(80%);
}
.hero__section .hero__tab__form form{
    display: flex;
}
.hero__section .hero__tab__form button{
    margin-bottom: 0;
    text-wrap: nowrap;
    padding: .7rem .9rem;
    margin-left: 12px;
}
.search__wrapper .select-list{
    margin-bottom: 0;
}
.search__wrapper .select-list .form-navigation{
    flex: unset !important;
}

@media(max-width: 992px){
    .hero__section .hero__tab__form button{
        margin-bottom: 10px;
    }
    .hero__section .hero__tab__form form{
        flex-direction: column !important;
        align-items: start !important;
    }
    .search__wrapper .select-list{
        width: 100% !important;
    }
}


@media (max-width: 768px){
    .hero__section .hero__tab__form button{
        margin-left: 0 !important;
        margin-bottom: 0 !important;
        margin-top: 12px !important;
    }
}



/* ---------------------- */


.search__wrapper .select-list{
    flex: 1;
}
.hero__section .hero__tab__form form{
    align-items: center;
}
.hero__section .hero__tab__form button{
    margin-left: 15px;
    height: 41px;
}
.hero__section .hero__tab__form .form-navigation {
    display: flex;
    align-items: start;
    gap: 10px;
}
.hero__section .hero__tab__form .form-navigation button{
    margin-left: 0;
    margin-right: 0;
}
.hero__section .top__text__tit,
.search__wrapper .select-list .select-list-item p,
.search__wrapper p#val_steps1,
.search__wrapper p#val_steps2,
.search__wrapper p#val_steps3,
.search__wrapper p#val_steps4,
.search__wrapper p#val_steps5{
    display: none !important;
}

.hero__section .hero__tab__form #valuation-form:has(h5) h5,
.hero__section .hero__tab__form #valuation-form:has(h5) p{
    flex: 0 0 100%;
    text-align: left;
    width: 100%;
}
.hero__section .hero__tab__form #valuation-form:has(h5) br{
    display: none;
}

.hero__section .hero__tab__form #valuation-form:has(h5) {
    flex-direction: column;
}

.hero__section .hero__tab__form #valuation-form:has(h5) #book-appointment{
    margin-right: auto;
    margin-bottom: 0;
    text-wrap: nowrap;
    padding: .7rem .9rem;
    height: 41px;    
    background: var(--color-yellow) !important;
    color: var(--color-black) !important;
    color: #fff !important;
    border-radius: 8px;
    border: none !important;
    font-weight: 500;
}




