
:root {
    --page-background: #f9f9f9;
    --color-blue: #003854;
    --color-red: #EB3026;
    --color-gray: #4D4D4D;
    --color-light-gray: #EEEEEE;
    --border-radius: 30px;
    --font-family-sf: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display",
    "Helvetica Neue", Arial, sans-serif;
}
body{
    font-family: var(--font-family-sf)
}
.header {
    padding: 18px 0;
    background-color: #ffffff;
}

.header__container {
    gap: 40px;
}

.header__logo img {
    height: 40px;
    width: auto;
}

.header__menu {
    list-style: none;
    margin: 0 0 0 48px;
    padding: 0;
    column-gap: 32px;
}

.menu__item {
    position: relative;
}

.menu__link {
    font-weight: 500;
    font-size: 14px;
    color: #5b5b5b;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    padding: 4px 0;
}

.menu__link:hover {
    color: #111111;
}

.menu__dropdown .arrow {
    border: solid #7a7a7a;
    border-width: 0 1.5px 1.5px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    transition: transform .2s;
}

.dropdown {
    position: absolute;
    top: 38px;
    left: 0;
    background: #ffffff;
    border-radius: 10px;
    padding: 12px 0;
    min-width: 220px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .2s ease;
    z-index: 100;
}

.dropdown li {
    padding: 8px 20px;
    list-style: none;

}
.dropdown-toggle::after{
    content: none;
}

.dropdown li a {
    display: block;
    color: #444444;
    font-weight: 400;
    font-size: 14px;
    text-decoration: none;
}

.dropdown li:hover {
    background: #f5f5f5;
}

.menu__item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu__item:hover .arrow {
    transform: rotate(-135deg);
}

.header__right {
    gap: 20px;
}

.lang-desktop {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
}

.lang__item--current {
    position: relative;
}

.lang__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 44px;
    padding: 0 22px;
    min-width: 80px;
    border-radius: 999px;
    border: 1px solid #e5e5e5;
    /*background-color: #ffffff;*/
    color: #5b5b5b;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
}

.lang__link--current {
    border-color: #e5e5e5;
}

.lang__link--current::after {
    content: "";
    border: solid #9b9b9b;
    border-width: 0 1.5px 1.5px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    margin-top: -2px;
}

.lang-dropdown {
    list-style: none;
    margin: 4px 0 0;
    padding: 4px 0;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 100%;
    /*background: #ffffff;*/
    border-radius: 12px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    display: none;
    z-index: 50;
}

.lang-dropdown__item {
    width: 100%;
}

.lang-dropdown__item .lang__link {
    width: 100%;
    justify-content: flex-start;
    border-radius: 0;
    border: none;
    padding: 8px 16px;
    height: auto;
    min-width: 0;
}

.lang-dropdown__item .lang__link:hover {
    background-color: transparent;
    text-decoration: underline;
}

.lang-desktop.is-open .lang-dropdown {
    display: block;
}

.header__call-btn {
    border: none;
    outline: none;
    background: var(--color-red);
    color: #ffffff;
    border-radius: 999px;
    height: 44px;
    padding: 0 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 8px 18px rgba(240, 57, 38, .35);
    white-space: nowrap;
    text-decoration: none;
}

.header__call-btn i {
    font-size: 18px;
}

.hero {
    position: relative;
    padding: 0;
}

.hero__curves {
    position: absolute;
    top: 0;
    right: 32%;
    height: 96%;
    opacity: .6;
    z-index: 9;
    pointer-events: none;
}

.hero__entry {
    background-color: var(--color-light-gray);
    padding: 4rem 3rem;
    border-radius: 28px;
    margin-top: 1.2rem;
    margin-bottom: 1.2rem;
    position: relative;
    overflow: hidden;
}

.hero__text {
    color: var(--color-gray);
    font-size: .9rem;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hero__text::before {
    content: "";
    width: 16px;
    height: 16px;
    background-color: var(--color-red);
    border-radius: 50%;
    flex-shrink: 0;
}

.hero__h1 {
    margin-top: 1.8rem;
    margin-bottom: 1.2rem;
    color: var(--color-blue);
    font-size: 3.2rem;
    line-height: 1.1;
    font-weight: 900;
}

/*.hero__h1 .hero__red {*/
/*    color: var(--color-red);*/
/*}*/
.hero__red {
    opacity: 0;
    display: none;
    transform: translateY(5px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    white-space: nowrap;
    color: var(--color-red);
    text-transform: uppercase;
}

.hero__red.is-visible {
    display: inline-block;
    opacity: 1;
    transform: translateY(0);
}
.hero__desc {
    color: var(--color-gray);
    font-size: 1rem;
    font-weight: 400;
    margin: 1.6rem 0;
    width: 80%;
}

.hero__cta {
    border: none;
    outline: none;
    background-color: var(--color-red);
    color: #fff;
    padding: 12px 32px;
    border-radius: 999px;
    font-size: .9rem;
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(240, 57, 38, .35);
    margin-bottom: 1.2rem;
    text-decoration: none;
}

.hero__image-wrapper {
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.hero__img {
    width: 90%;
    margin-top:-10%;
    height: auto;
    opacity: .9;
    transform: translateY(10px);
}

/*services*/

.services{
 padding: 0 ;
}

.service-card {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    height: 250px;
    cursor: pointer;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-content {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.60) 80%
    );
    color: #fff;
    transition: background .3s ease;
}

.service-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: .4rem;
}

.service-text {
    font-size: .8rem;
    font-weight: 400;
    opacity: .9;
    margin-bottom: 1.4rem;
}

.service-link {
    font-size: .8rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.8px;
    opacity: 0.85;
    transition: all .3s ease;
}

.service-link .arrow {
    transform: translateX(-6px);
    opacity: 0;
    transition: all .3s ease;
}

.service-card:hover .service-content {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, .15) 0%,
        rgba(0, 0, 0, .70) 90%
    );
}

.service-card:hover .service-link {
    opacity: 1;
}

.service-card:hover .service-link .arrow {
    transform: translateX(0);
    opacity: 1;
}


/*fleet*/
.fleet{
    padding: 4rem 0;
}
.section__title{
    font-size: 2.2rem;
    font-weight: 700;
    color:var(--color-gray);
}
.section__desc {
    font-size: .9rem;
    color: var(--color-gray);
    font-weight: 400;
    margin: 1.6rem 0;
    width: 90%;
}

.fleet__img{
    width: 70%;
    margin-top: 1rem;
    margin-bottom: 1.2rem;
}

.fleet-card {
    position: relative;
    background-color: var(--color-light-gray);
    border-radius: 28px;
    padding: 2.4rem 2.2rem 2rem;
    overflow: hidden;
}

.fleet-card__bg {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: auto;
    opacity: 1;
    pointer-events: none;
    z-index: 0;
}

.fleet-card__content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.fleet-card__van {
    width: 100%;
    height: 120px;
    object-fit: contain;
    display: block;
    margin: 0 auto 1.6rem;
}

.fleet-card__capacity {
    margin-bottom: 1.4rem;
}

.fleet-card__m3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--color-red);
    margin-bottom: 0.2rem;
}

.fleet-card__weight {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-blue);
    letter-spacing: 0.06em;
}

.fleet-card__row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 0.6rem;
}

.fleet-card__row-icon img {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.fleet-card__row-text {
    text-align: left;
}

.fleet-card__row-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: #9ca3af;
    text-transform: uppercase;
}

.fleet-card__row-price {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-blue);
}

.fleet-card__cta {
    margin-top: 1rem;
    border: none;
    outline: none;
    background-color: var(--color-red);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 0.8rem 1.8rem;
    border-radius: 999px;
    box-shadow: 0 10px 20px rgba(240, 57, 38, 0.45);
    text-transform: uppercase;
    text-decoration: none;
}


.offer{
    padding: 4rem 0;
}

.offer__block {
    position: relative;
    background-color: var(--color-red);
    border-radius: 32px;
    padding: 1.5rem 1.5rem;
    color: #ffffff;
    overflow: hidden;
    height: 100%;
}

.offer__bg {
    position: absolute;
    right: 0;
    top: 0;
    width: 55%;
    height: auto;
    opacity: 1;
    pointer-events: none;
    z-index: 0;
}

.offer__content {
    position: relative;
    z-index: 1;
    gap: 1.4rem;
}

.offer__icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 1rem;
}

.offer__icon img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

.offer__title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: .4rem;
}

.offer__text {
    font-size: .9rem;
    font-weight: 400;
    line-height: 1.5;
}

.review{
    padding: 4rem 0;
}

/* review*/
.review__block {
    background-color: #f4f4f4;
    border-radius: 24px;
    padding: 1.4rem 1.6rem;
    height: 100%;
}

.review__content {
    font-size: 0.9rem;
    color: #444;
}

.review__icon img {
    height: 15px;
    margin-bottom: 1rem;
}

.review__text {
    margin-bottom: 1rem;
    line-height: 1.5;
}

.review__title {
    font-size: 0.85rem;
    color: #777;
}

.review__title span {
    font-weight: 600;
}

.reviews-wrapper {
    position: relative;
    max-height: 360px;
    overflow: hidden;
}

.reviews-wrapper::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0) 0%,
        #ffffff 60%
    );
    pointer-events: none;
}

.reviews-wrapper.is-expanded {
    max-height: none;
}

.reviews-wrapper.is-expanded::after {
    display: none;
}

.reviews-toggle {
    margin-top: 1.5rem;
    border: none;
    outline: none;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--color-red);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.6rem;
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(240, 57, 38, 0.5);
    padding: 0;
}

.reviews-toggle__icon {
    transform: translateY(2px);
    transition: transform .25s ease;
}

.reviews-wrapper.is-expanded + .reviews-toggle .reviews-toggle__icon {
    transform: rotate(180deg) translateY(-2px);
}

.cta {
    padding: 4rem 0;
}

.cta_bg {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    padding: 4rem 4.5rem;
    background-image: url("../images/home/cta.jpg");
    background-size: cover;
    background-position: center center;
}

.cta_service_bg {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    padding: 4rem 4.5rem;
    background-image: url("../images/services/cta.jpg");
    background-size: cover;
    background-position: center center;
}

.cta__curves {
    position: absolute;
    right: 10%;
    top: -3%;
    width: 32%;
    height: auto;
    opacity: .6;
    z-index: 2;
    pointer-events: none;
}

.cta__content {
    position: relative;
    z-index: 3;
    max-width: 520px;
}

.white__hero__text {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 2rem;
}

.white__hero__text::before {
    content: "";
    width: 16px;
    height: 16px;
    background-color: var(--color-red);
    border-radius: 50%;
    flex-shrink: 0;
}

.white__section__title {
    font-size: 2.7rem;
    font-weight: 700;
    color: #fff;
}

.white__section__desc {
    font-size: 0.9rem;
    color: #fff;
    font-weight: 400;
    margin: 1.6rem 0;
    width: 90%;
}

.faq {
    padding: 4rem 0;
}

.faq__illustration {
    margin-top: 2rem;
    max-width: 70%;
}

.faq__accordion {
    border-top: 1px solid #e5e5e5;
}

.faq-item {
    border-bottom: 1px solid #e5e5e5;
}

.faq-item__header {
    width: 100%;
    padding: 1.1rem 0;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.faq-item__question {
    font-weight: 600;
    color: #333333;
    text-align: left;
}

.faq-item__icon {
    margin-left: 1rem;
    flex-shrink: 0;
}

.faq-item__icon i {
    font-size: 1.1rem;
    color: #777777;
    transition: transform .25s ease;
}

.faq-item__body {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-4px);
    transition: max-height .3s ease, opacity .2s ease, transform .2s ease;
    font-size: 0.9rem;
    color: #555555;
    padding-right: 2.5rem;
}

.faq-item.is-open .faq-item__body {
    padding-bottom: 1rem;
    max-height: 200px;
    opacity: 1;
    transform: translateY(0);
}

.faq-item.is-open .faq-item__icon i {
    transform: rotate(180deg);
}


/*Service category*/
.category__anchor{
    color: var(--color-gray);
    font-size: .9rem;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.category__anchor:hover{
    color: var(--color-red)
}

/*footer*/
.footer {
    background-color: #4D4D4D;
    color: #f1f1f1;
    font-size: 14px;
}

.footer__one {
    padding: 22px 0 18px;
}

.footer__logo img.logo-footer {
    height: 40px;
    width: auto;
}

.social__media .social__link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
.social__media .social__link i{
    font-size: 1.2rem;
}

.social__media .social__link:nth-child(3)  {
    background-color: #1877f2;
}

.social__media .social__link {
    background-color: #e1306c;
}

.social__media .social__link:nth-child(2) {
    background-color: #000000;
}

.footer__phone-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
}

.footer__phone-link i {
    font-size: 20px;
}

.footer__two {
    padding: 28px 0 40px;
}

.footer__divider {
    height: 1px;
    background-color: #e2e2e2;
    opacity: 0.6;
    margin-bottom: 28px;
}

.footer__helps {
    color: #f4f4f4;
}

.footer__title {
    font-weight: 600;
    margin-bottom: 10px;
}

.footer__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer__item + .footer__item {
    margin-top: 4px;
}

.footer__item a {
    color: #d5d5d5;
    text-decoration: none;
    font-weight: 400;
    font-size: 13px;
}

.footer__item a:hover {
    color: #ffffff;
}




.footer__cta-btn {
    border: none;
    outline: none;
    background-color: var(--color-red);
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 28px;
    border-radius: 999px;
    box-shadow: 0 8px 18px rgba(240, 57, 38, .35);
    text-transform: uppercase;
}

.footer__three {
    background-color: #000000;
    padding: 12px 0;
    font-size: 12px;
    color: #f5f5f5;
}

.rights {
    opacity: 0.8;
}

.powered {
    opacity: 0.8;
}

.powered__by {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
}

.powered__by:hover {
    text-decoration: underline;
}


/*booking*/
.order-section {
    margin: 2rem 0 3rem;
}

.order-card {
    background-color: #ffffff;
    border-radius: 28px;
    padding: 1.4rem 1rem 1.8rem;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    margin-top: -465px;
    position: absolute;
    z-index: 99;
}

.order-vehicle {
    width: 100%;
    background: #8CA3AE;
    border-radius: 18px;
    border: none;
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #ffffff;
    cursor: pointer;
    margin-bottom: 1.3rem;
}

.order-vehicle__left {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.order-vehicle__img {
    width: 50px;
    height: auto;
}

.order-vehicle__text {
    font-size: 0.6rem;
    line-height: 1.3;
}

.order-vehicle__title {
    font-size: 0.9rem;
    margin-bottom: 0.15rem;
}

.order-vehicle__row {
    opacity: 0.9;
}

.order-vehicle__arrow i {
    font-size: 1.1rem;
}

.order-form {
    margin-top: 0.5rem;
    width: 380px;
}

.order-row {
    display: flex;
    align-items: center;
    padding: 0.8rem 1rem;
    border-radius: 20px;
    background-color: #f5f5f5;
    margin-bottom: 0.8rem;
}

.order-row__icon img {
    width: 28px;
    height: 28px;
}

.order-row__label {
    margin-left: 0.8rem;
    font-weight: 600;
    color: #264152;
}

.order-row__counter {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.counter-btn {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid #c7c7c7;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
}

.counter-value {
    min-width: 16px;
    text-align: center;
    font-weight: 600;
    color: #333;
}

.order-input {
    display: flex;
    align-items: center;
    background-color: #f5f5f5;
    border-radius: 22px;
    padding: 0.75rem 1rem;
    margin-bottom: 0.7rem;
}

.order-input__icon img {
    width: 22px;
    height: 22px;
}

.order-input__field {
    border: none;
    background: transparent;
    flex: 1;
    margin-left: 0.8rem;
    font-size: 0.9rem;
    outline: none;
}

.order-input__field::placeholder {
    color: #a0a0a0;
}

.order-input--textarea {
    align-items: flex-start;
}

.order-input__textarea {
    min-height: 70px;
    resize: vertical;
}

.order-terms {
    margin: 0.8rem 0 1.2rem;
    font-size: 0.78rem;
}

.order-terms__label {
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
}

.order-terms__label input[type="checkbox"] {
    margin-top: 3px;
    max-width: 1rem;
}

.order-terms__text a {
    color: var(--color-red);
    text-decoration: underline;
}

.terms__text{
    font-size: 1.2rem;
    font-weight: 600;
}
.order-vehicle-wrapper {
    position: relative;
}

.order-vehicle__dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.18);
    list-style: none;
    margin: 0;
    padding: 0.3rem 0;
    max-height: 260px;
    overflow-y: auto;
    z-index: 999;
    display: none;
}

.order-vehicle__dropdown.show {
    display: block;
}

.order-vehicle__option {
    padding: 0.4rem 0.7rem;
    cursor: pointer;
}

.order-vehicle__option-inner {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.order-vehicle__option:hover {
    background-color: #f5f5f5;
}

.order-vehicle.is-open .order-vehicle__arrow i {
    transform: rotate(180deg);
    transition: transform 0.2s ease;
}

.order-vehicle__arrow i {
    transition: transform 0.2s ease;
}


/*contacts*/
.contacts{
    padding: 4rem 0;
}

.contact-card {
    position: relative;
    background-color: #E5E5E5;
    border-radius: 40px;
    padding: 2rem 2.5rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-card:hover {
    background-color: var(--color-red);
}

.contact-card:hover .contact-card__text {
    color: #fff;
}

.contact-card:hover .contact-card__icon img {
    filter: brightness(0) invert(1);
}

.contact-card__pattern {
    position: absolute;
    right: 0;
    bottom: -20px;
    width: 30%;
    opacity: 0.25;
    pointer-events: none;
}

.contact-card__icon img {
    width: 40px;
    height: auto;
    flex-shrink: 0;
}

.contact-card__text {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    line-height: 1.4;
}


.map-real {
    width: 100%;
    height: 350px;
    border-radius: 45px;
    overflow: hidden;
    position: relative;
}

.map-real .leaflet-tile-pane {
    filter: grayscale(10%) brightness(1.05);
}

.map-real .leaflet-control-zoom {
    display: none;
}

.leaflet-control-attribution{
    display: none;
}

/*auth*/

.auth {
    padding: 4rem 0 5rem;
}

.auth__row {
    row-gap: 2.5rem;
}

.auth__intro {
    max-width: 480px;
}

.auth__headline {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-blue);
    margin: 1rem 0 1.2rem;
}

.auth__headline span {
    color: var(--color-red);
}

.auth__desc {
    font-size: 0.95rem;
    color: var(--color-gray);
    margin-bottom: 1.5rem;
}

.auth__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.auth__list li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.92rem;
    color: var(--color-gray);
    margin-bottom: 0.5rem;
}

.auth__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.4rem;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: var(--color-red);
}

/* card */

.auth-card {
    background-color: #ffffff;
    border-radius: 32px;
    padding: 2.2rem 2.4rem;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid #eef0f5;
}

.auth__title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-blue);
    margin-bottom: 0.4rem;
}

.auth__subtitle {
    font-size: 0.9rem;
    color: var(--color-gray);
    margin-bottom: 1.6rem;
}

/* inputs */

.form__inputs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form__input {
    position: relative;
}

.form__input input {
    width: 100%;
    padding: 0.9rem 0.9rem;
    border-radius: 14px;
    border: 1px solid #d7d9e0;
    font-size: 0.95rem;
    outline: none;
    background-color: #f9fafc;
    transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.form__input input:focus {
    border-color: var(--color-blue);
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(34, 106, 255, 0.08);
}

.form__input label {
    position: absolute;
    left: 0.9rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.85rem;
    color: #9ea2b0;
    pointer-events: none;
    transition: all .18s ease;
    background-color: transparent;
}

.form__input input:focus + label,
.form__input input:not(:placeholder-shown) + label {
    top: 0;
    transform: translateY(-50%);
    font-size: 0.72rem;
    background-color: #ffffff;
    padding: 0 0.25rem;
    color: var(--color-blue);
}

.form__input input::placeholder {
    color: transparent;
}

/* btn */

.auth-btn {
    width: 100%;
    border-radius: 999px;
    padding: 0.85rem 1.2rem;
    border: none;
    outline: none;
    background-color: var(--color-red);
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: background-color .18s ease, transform .12s ease, box-shadow .18s ease;
    margin-bottom: 0.6rem;
}

.auth-btn:hover {
    background-color: #d51e1b;
    box-shadow: 0 10px 26px rgba(240, 57, 38, 0.45);
    transform: translateY(-1px);
}

.auth-btn--secondary {
    background-color: var(--color-blue);
}

.auth-btn--secondary:hover {
    background-color: #184b9b;
    box-shadow: 0 10px 26px rgba(24, 75, 155, 0.35);
}

.auth__hint {
    font-size: 0.8rem;
    color: #9ea2b0;
    margin-top: 0.5rem;
}

/* alert */

.auth-card .alert {
    border-radius: 12px;
    padding: 0.7rem 0.9rem;
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
}

.auth-card .alert-danger {
    background-color: #ffe2e0;
    border-color: #ffc1bc;
    color: #aa2f27;
}

.auth-card .alert-success {
    background-color: #e3f5e7;
    border-color: #b7e4c0;
    color: #257a3a;
}
.order-card{
        margin-top: -415px;
}

@media(max-width: 1700px){
    .order-card{
        margin-top: -415px;
    }
}

@media(max-width: 1500px){
    .order-card{
        margin-top: -420px;
    }
}
@media(max-width: 1400px) {
    .header__container {
        gap: 20px;
    }

    .order-card{
        margin-top: -420px;
    }
    .order-vehicle__img{
        width: 40px;
    }
    .order-vehicle__title{
        font-size: .8rem;
    }
    .hero__h1{
        font-size: 3rem;
    }
    .order-form {
        margin-top: 0.5rem;
        width: 330px;
    }
    .services{
        padding: 0;
    }
}

@media (max-width: 1240px) {
    .hero__curves{
        right: 22%;
    }
    .fleet-card__cta{
        font-size: .6rem;
    }
    .header__menu{
        column-gap: 15px;
    }
    .menu__link{
        font-size: 12px;
    }
    .lang__link{
        padding: 0 15px;
        height: 40px;
    }
    .header__right{
        gap: 15px;
    }
    .header__call-btn{
        padding: 0 20px;
        height: 40px;
    }
}

@media(max-width: 1024px){
    .order-card{
        margin-top: -455px;
    }
    .order-vehicle__title{
        font-size: .7rem;
    }
    .hero__h1{
        font-size: 2.8rem;
    }
}

@media(max-width: 991px){
    .header__container {
        gap: 16px;
    }

    .header__menu {
        margin-left: 0;
    }

    .menu__dropdown .dropdown {
        position: static;
        opacity: 0;
        visibility: hidden;
        height: 0;
        overflow: hidden;
        box-shadow: none;
        padding: 0;
        transform: none;
    }

    .menu__dropdown.open .dropdown {
        opacity: 1;
        visibility: visible;
        height: auto;
        padding: 6px 0 8px;
    }

    .menu__dropdown .arrow {
        transition: transform .2s;
    }

    .menu__dropdown.open .arrow {
        transform: rotate(-135deg);
    }

    .hero__desc{
        width: 100%;
    }
    .fleet-card__cta{
        font-size: .8rem;
    }

    .faq__illustration{
        display: none;
    }
    .section__desc{
        width: 100%;
    }
    .fleet__img {
        display: none;
    }

    .order-card{
        margin-top: 0;
    }
    .order-form {
        width: 100%;
    }
    .order-section{
        margin-top: 0;
    }
    .service-card{
        height: 205px;
    }
    .hero__curves{
        top:0;
        right: 12%;
        height: 100%;
    }
    .hero__h1{
        font-size: 2.3rem;
    }
    .footer__cta-wrapper {
        justify-content: flex-end;
    }

    .faq__illustration {
        max-width: 50%;
    }

    .cta_bg {
        padding: 4rem 2rem;
    }

    .white__section__title {
        font-size: 2.1rem;
    }

    .white__section__desc {
        width: 100%;
    }

    .cta__curves {
        right: -30%;
        top: -10%;
        width: 80%;
    }

    .auth {
        padding: 3rem 0 4rem;
    }

    .auth-card {
        border-radius: 24px;
        padding: 1.8rem 1.6rem;
    }
}

@media(max-width: 767px) {
    .header {
        padding-bottom: 10px;
    }

    .hero {
        padding-top: 0;
        margin-top: 0;
    }

    .contact-card {
        border-radius: 30px;
        padding: 1.5rem;
    }

    .order-card {
        position: relative;
        margin-top: -420px;
    }

    .hero__curves {
        height: 70%;
        opacity: .5;
        right: 35%;
    }

    .footer__one {
        text-align: center;
    }

    .footer__phone-link {
        justify-content: center;
    }

    .footer__two {
        padding-bottom: 28px;
    }

    .footer__three {
        text-align: center;
    }

    .offer__block {
        padding: 1.5rem 1.4rem;
        border-radius: 24px;
    }

    .fleet-card {
        padding: 2rem 1.4rem 1.8rem;
    }

    .fleet-card__van {
        max-width: 380px;
    }

    .auth__headline {
        font-size: 1.7rem;
    }

    .cta_service_bg {
        padding: 2rem 1rem;
    }

    .white__section__title, .section__title {
        font-size: 1.4rem;
    }

    .order-modal__dialog {
        margin-top: 2rem;
    }
}
@media(max-width: 540px) {
    .hero__curves{
        display: none;
    }
    .header__logo img{
        height: 35px;
    }
}

/*cookie*/
.notification-cookies {
    display: none;
    opacity: 0;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 70%;
    padding: 30px;
    background-color: #E7E8F5FF;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
    border: 1px solid rgb(231, 232, 245);
    border-radius: 25px;
    z-index: 99;
    -webkit-animation: slide 0.5s forwards;
    -webkit-animation-delay: 2s;
    animation: slide 0.5s forwards;
    animation-delay: 2s;
}

.policy__details{
    color: #aa2f27;
}
.notification-cookies .row {
    display: flex;
    align-items: center;
}
@-webkit-keyframes slide {
    0% {
        bottom: 0;
        opacity: 0;
    }
    100% {
        bottom: 50px;
        opacity: 1;
    }
}
@keyframes slide {
    0% {
        bottom: 0;
        opacity: 0;
    }
    100% {
        bottom: 50px;
        opacity: 1;
    }
}

@media (max-width: 767px) {
    .notification-cookies {
        width: 80%;
    }
    .white__section__title,
    .section__title{
        font-size: 1.8rem;
        line-height: 1.2;
    }
}

@media (max-width: 540px) {
    .notification-cookies {
        width: 90%;
    }
}

.order-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1100;
    padding: 1.5rem;
    overflow-y: auto;

}

.order-modal.show {
    display: flex;
}

.order-modal__dialog {
    background: #ffffff;
    border-radius: 32px;
    max-width: 860px;
    width: 100%;
    padding: 2rem 2rem 2.4rem;
    position: relative;
    overflow-y: auto;
}

@media (max-width: 767px) {
    .order-modal__dialog {
        padding: 2.4rem 1rem 1.8rem;
        border-radius: 26px;
    }
}

.order-modal__close {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: none;
    background: var(--color-red);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(240, 57, 38, 0.4);
}

.order-modal__close i {
    line-height: 1;
}

body.modal-open {
    overflow: hidden;
}

.order-card--modal {
    position: static;
    box-shadow: none;
    padding-top: 1.6rem;
    margin-top: 1rem;
}


.order-success-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.order-success-modal.is-visible {
    display: flex;
}

.order-success-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.order-success-modal__content {
    position: relative;
    background: #ffffff;
    border-radius: 18px;
    padding: 2rem 2.4rem 1.8rem;
    max-width: 420px;
    width: 100%;
    box-shadow: 0 18px 40px rgba(0,0,0,0.25);
    z-index: 1;
    text-align: center;
}

.order-success-modal__body {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.order-success-modal__close {
    position: absolute;
    top: 10px;
    right: 14px;
    border: none;
    background: transparent;
    font-size: 1.5rem;
    cursor: pointer;
}

.order-success-modal__ok {
    border: none;
    outline: none;
    background-color: var(--color-red);
    color: #ffffff;
    font-weight: 600;
    border-radius: 999px;
    padding: 0.6rem 1.8rem;
    cursor: pointer;
}
@media(max-width: 540px){
    .hero__h1 {
        font-size: 1.6rem;
    }
    .order-card{
        margin-top: -370px;
    }
    .header__call-btn--mobile{
        padding: 0 15px;
        font-size: 12px;
    }
}

.burger {
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    padding: 0;
    position: relative;
    z-index: 1040;
}

.burger__line {
    height: 3px;
    width: 22px;
    background: #555555;
    border-radius: 999px;
    display: block;
    margin-left: auto;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.burger.is-open{
    left: 300px;
    position: absolute;
    z-index: 999999;
    gap: 1px;
}
.burger.is-open .burger__line:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
    background: var(--color-red);
    transition: transform 1s ease, opacity 1s ease;
}
.burger.is-open .burger__line:nth-child(2) {
    opacity: 0;
}
.burger.is-open .burger__line:nth-child(3) {
    transform: translateY(-4px) rotate(-45deg);
    background: var(--color-red);
    transition: transform 1s ease, opacity 1s ease;
}

.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.25);
    z-index: 1025;
}
.mobile-overlay.is-visible {
    display: block;
}

body.menu-open {
    overflow: hidden;
}

@media(max-width: 991px) {
    .header__container {
        gap: 16px;
        justify-content: space-between;
    }

    .header__menu {
        margin-left: 0;
    }

    .header__call-btn--mobile {
        width: 100%;
        justify-content: center;
        margin-top: 16px;
    }

    .mobile-nav {
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 80%;
        max-width: 360px;
        background: #ffffff;
        padding: 20px 20px 32px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1050;
        display: flex;
        flex-direction: column;
    }

    .mobile-nav.is-open {
        transform: translateX(0);
    }

    .mobile-nav__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 24px;
    }

    .mobile-nav__logo img {
        height: 32px;
        width: auto;
    }

    .mobile-menu {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        row-gap: 10px;
    }

    .mobile-menu .menu__link {
        width: 100%;
        justify-content: space-between;
        padding: 8px 0;
        border-bottom: 1px solid rgba(211, 211, 211, 0.57);
    }

    .mobile-menu .menu__dropdown .dropdown {
        position: static;
        opacity: 0;
        visibility: hidden;
        height: 0;
        overflow: hidden;
        box-shadow: none;
        padding: 0;
        transform: none;
    }

    .mobile-menu .menu__dropdown.open .dropdown {
        opacity: 1;
        visibility: visible;
        height: auto;
        padding: 4px 0 6px;
    }

    .mobile-menu .menu__dropdown .arrow {
        border: solid #7a7a7a;
        border-width: 0 1.5px 1.5px 0;
        display: inline-block;
        padding: 3px;
        transform: rotate(45deg);
        transition: transform .2s;
    }

    .mobile-menu .menu__dropdown.open .arrow {
        transform: rotate(-135deg);
    }

}

@media (max-width: 440px) {
    .burger.is-open{
        left: 270px;
    }
    .header__call-btn{
        padding: 0 15px;
    }
    .header__right{
        gap: 10px;
    }

}
@media (max-width: 400px) {
    .burger.is-open{
        left: 260px;
    }

}
@media (max-width: 380px) {
    .burger.is-open{
        left: 250px;
    }

}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.service__details__img{
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--border-radius);
}
.section__title{
    padding-bottom: 1rem;
}

.fleet-card__cta,
.header__call-btn,
.footer__cta-btn,
.hero__cta{
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.fleet-card__cta:hover,
.header__call-btn:hover,
.footer__cta-btn:hover,
.hero__cta:hover{
    background-color: #d42a2a;
    box-shadow: 0 15px 20px rgba(240, 57, 38, 0.5);
}
@media(max-width: 600px){
    .fleet-card__cta,
    .footer__cta-btn,
    .hero__cta{
        width: 100%!important;
    }
    .order-modal__dialog{
        margin-top: 3rem;
        padding: 1.2rem .5rem;
    }

    .order-input{
        padding-bottom: .5rem;
    }
   .order-form2{
       max-width: 90%;
       margin: auto;
   }

}


/* FLOATING CHAT */
.floating-chat img{
    max-width: 60px;
}
.floating-chat {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    width: 40px;
    height: 40px;
    bottom: 40px;
    right: 50px;
    z-index: 1024;
    transition: bottom 0.2s ease;
    animation: pulse-chat 2s infinite;
    cursor: pointer;
}
.floating-chat.down {
    bottom: 170px;
}

/* Pulse animation for floating chat */
@keyframes pulse-chat {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(0, 211, 85, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 211, 85, 0);
    }
}

@media(max-width: 991px){
    .floating-chat{
        right: 20px;
    }
}
@media(max-width: 540px){
    .floating-chat{
        right: 5px;
    }
}


/* implicit dropdown-ul este ascuns */
.header__lang .lang-dropdown {
    display: none;
    position: absolute;
    /* restul stilurilor tale: background, shadow, etc. */
}

/* când elementul curent are clasa .is-open, afișăm lista */
.header__lang .lang__item.lang__item--current.is-open > .lang-dropdown {
    display: block;
}
