* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif, Arial;
}
html[lang="ar"] *:not([class*="fa-"]) {
    font-family: "Segoe UI", Tahoma, "Cairo", sans-serif;
}
body {
    background: #f4f6f8;
    color: #1f2937;
    overflow-x: hidden;
    min-width: 0;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 7%;
    background: rgb(255 255 255 / 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgb(0 0 0 / 0.05);
    position: sticky;
    top: 0;
}
.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
.logo img {
    max-height: 54px;
    width: auto;
    display: block;
}
#mainNav {
    display: flex;
    gap: 28px;
    align-items: center;
    margin-inline-end: auto;
}
nav a {
    text-decoration: none;
    color: #374151;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.25s;
}
nav a:hover {
    color: #e85d04;
}
#langBtn {
    border: 2px solid #e85d04;
    background: rgb(232 93 4 / 0.1);
    color: #e85d04;
    padding: 8px 18px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s;
}
#langBtn:hover {
    background: linear-gradient(135deg, #e85d04 0%, #d84c03 100%);
    color: #fff;
    border-color: #d84c03;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgb(232 93 4 / 0.3);
}
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 60px 7%;
    min-height: 85vh;
    position: relative;
    overflow: hidden;
    min-width: 0;
}
.hero-bg {
    inset:0;
    overflow:hidden;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-bg img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.hero-bg::after{
    content:'';
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgb(232 93 4 / 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgb(16 185 129 / 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 2;
}
.hero-content {
    flex: 1 1 0%;
    max-width: 520px;
    position: relative;
    z-index: 3;
    min-width: 0;
    text-align: start;
}
.hero-content h1 {
    font-size: 50px;
    font-weight: 800;
    margin-bottom: 18px;
    color: #fff;
    line-height: 1.15;
}
.hero-content p {
    font-size: 18px;
    color: #e5e7eb;
    margin-bottom: 32px;
    line-height: 1.7;
}
.btn {
    display: inline-block;
    background: linear-gradient(135deg, #e85d04 0%, #d84c03 100%);
    color: #fff;
    padding: 13px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 15px rgb(232 93 4 / 0.3);
    position: relative;
    overflow: hidden;
}
.btn:hover {
    background: linear-gradient(135deg, #d84c03 0%, #c44d00 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgb(232 93 4 / 0.4);
}
.hero-form-wrap {
    flex: 0 0 600px;
    max-width: 600px;
    width: 100%;
    position: relative;
    z-index: 3;
    min-width: 0;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.lead-form {
    backdrop-filter: blur(30px);
    background: rgb(255 255 255 / 0.22);
    border-radius: 16px;
    padding: 28px 26px 24px;
    box-shadow:
        0 20px 60px rgb(0 0 0 / 0.25),
        0 4px 16px rgb(0 0 0 / 0.1);
    border: 1px solid rgb(255 255 255 / 0.6);
    position: relative;
    overflow: hidden;
}
.lead-form::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e85d04 0%, #ff8c42 100%);
}
.lead-form__tag {
    text-align: center !important;
    display: inline-block;
    background: azure;
    color: #e85d04;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 15px 10px;
    border-radius: 20px;
    margin-bottom: 6px;
}
.lead-form__title {
    font-size: 30px;
    font-weight: 800;
    color: #000;
    line-height: 1.2;
    margin-bottom: 20px;
}
.lead-form__body {
    display: flex;
    flex-direction: column;
}
.lf-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.lf-label {
    font-size: 12px;
    font-weight: 700;
    color: beige;
    letter-spacing: 0.3px;
}
.lf-input {
    width: 100%;
    height: 42px;
    padding: 0 12px;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    color: #1f2937;
    background: #fff;
    outline: none;
    transition:
        border-color 0.2s,
        box-shadow 0.2s;
    appearance: none;
    -webkit-appearance: none;
    font-family: inherit;
}
.lf-input:focus {
    border-color: #e85d04;
    box-shadow: 0 0 0 3px rgb(232 93 4 / 0.12);
}
.lf-input.lf-error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgb(239 68 68 / 0.1);
}
.lf-input:disabled {
    background: #f9fafb;
    color: #9ca3af;
    cursor: not-allowed;
}
select.lf-input {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23e85d04' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}
.lf-phone-row {
    display: flex;
    gap: 8px;
    position: relative;
}
.lf-err {
    font-size: 11px;
    color: #ef4444;
    min-height: 14px;
    display: block;
}
.dial-wrap {
    position: relative;
    flex: 0 0 120px;
    width: 120px;
}
.dial-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 42px;
    padding: 0 10px;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    color: #1f2937;
    transition:
        border-color 0.2s,
        box-shadow 0.2s;
    user-select: none;
    white-space: nowrap;
}
.dial-trigger:hover,
.dial-trigger.open {
    border-color: #e85d04;
    box-shadow: 0 0 0 3px rgb(232 93 4 / 0.12);
}
.dial-trigger .dt-flag {
    font-size: 16px;
    line-height: 1;
}
.dial-trigger .dt-code {
    font-size: 13px;
    font-weight: 700;
    color: #e85d04;
}
.dial-trigger .dt-arrow {
    margin-inline-start: auto;
    font-size: 10px;
    color: #9ca3af;
    transition: transform 0.2s;
}
.dial-trigger.open .dt-arrow {
    transform: rotate(180deg);
}
.dial-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    width: 240px;
    background: #fff;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgb(0 0 0 / 0.15);
    z-index: 999;
    overflow: hidden;
}
.dial-dropdown.show {
    display: block;
}
.dial-search-wrap {
    padding: 8px 8px 6px;
    border-bottom: 1px solid #f3f4f6;
}
.dial-search {
    width: 100%;
    height: 34px;
    padding: 0 10px 0 30px;
    border: 1.5px solid #e5e7eb;
    border-radius: 6px;
    font-size: 13px;
    color: #1f2937;
    outline: none;
    background: #fff
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.35-4.35'/%3E%3C/svg%3E")
        no-repeat 8px center;
    font-family: inherit;
}
.dial-search:focus {
    border-color: #e85d04;
    box-shadow: 0 0 0 2px rgb(232 93 4 / 0.1);
}
.dial-list {
    max-height: 180px;
    overflow-y: auto;
}
.dial-list::-webkit-scrollbar {
    width: 4px;
}
.dial-list::-webkit-scrollbar-thumb {
    background: #e85d04;
    border-radius: 4px;
}
.dial-opt {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 13px;
    color: #1f2937;
    transition: background 0.15s;
}
.dial-opt:hover,
.dial-opt.selected {
    background: #fff5f0;
}
.dial-opt.selected {
    font-weight: 700;
    color: #e85d04;
}
.dial-opt .do-flag {
    font-size: 16px;
}
.dial-opt .do-name {
    flex: 1;
    font-size: 12px;
    color: #6b7280;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.dial-opt .do-code {
    font-size: 13px;
    font-weight: 700;
    color: #374151;
    margin-inline-start: auto;
}
.dial-no-result {
    padding: 12px;
    font-size: 13px;
    color: #9ca3af;
    text-align: center;
}
html[dir="rtl"] .dial-wrap {
    order: -1;
}
html[dir="rtl"] .dial-dropdown {
    left: auto;
    right: 0;
}
.lf-submit {
    width: fit-content;
    min-width: 200px;
    height: 46px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    margin-top: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0 30px;
    align-self: flex-start;
}
.lf-submit:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none !important;
}
.dial-wrap {
    position: relative;
    flex: 0 0 84px;
    width: 120px;
}
.dial-trigger {
    display: flex;
    align-items: center;
    gap: 5px;
    height: 42px;
    padding: 0 10px;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    color: #1f2937;
    transition:
        border-color 0.2s,
        box-shadow 0.2s;
    user-select: none;
    white-space: nowrap;
}
.dial-trigger:hover,
.dial-trigger.open {
    border-color: #e85d04;
    box-shadow: 0 0 0 3px rgb(232 93 4 / 0.12);
}
.dial-trigger .dt-flag {
    font-size: 16px;
    line-height: 1;
}
.dial-trigger .dt-code {
    font-size: 13px;
    font-weight: 700;
    color: #e85d04;
}
.dial-trigger .dt-arrow {
    margin-inline-start: auto;
    font-size: 9px;
    color: #9ca3af;
    transition: transform 0.2s;
}
.dial-trigger.open .dt-arrow {
    transform: rotate(180deg);
}
.dial-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    width: 250px;
    background: #fff;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgb(0 0 0 / 0.15);
    z-index: 9999;
    overflow: hidden;
}
.dial-dropdown.show {
    display: block;
}
.dial-search-wrap {
    padding: 8px 8px 6px;
    border-bottom: 1px solid #f3f4f6;
}
.dial-search {
    width: 100%;
    height: 34px;
    padding: 0 10px 0 30px;
    border: 1.5px solid #e5e7eb;
    border-radius: 6px;
    font-size: 13px;
    color: #1f2937;
    outline: none;
    font-family: inherit;
    background: #f9fafb
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2.5'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.35-4.35'/%3E%3C/svg%3E")
        no-repeat 8px center;
}
.dial-search:focus {
    border-color: #e85d04;
    background-color: #fff;
    box-shadow: 0 0 0 2px rgb(232 93 4 / 0.1);
}
.dial-list {
    max-height: 190px;
    overflow-y: auto;
}
.dial-list::-webkit-scrollbar {
    width: 3px;
}
.dial-list::-webkit-scrollbar-thumb {
    background: #e85d04;
    border-radius: 4px;
}
.dial-opt {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 13px;
    color: #1f2937;
    transition: background 0.12s;
}
.dial-opt:hover,
.dial-opt.selected {
    background: #fff5f0;
}
.dial-opt.selected .do-name,
.dial-opt.selected .do-code {
    color: #e85d04;
    font-weight: 700;
}
.do-flag {
    font-size: 16px;
    line-height: 1;
    flex-shrink: 0;
}
.do-name {
    flex: 1;
    font-size: 12px;
    color: #6b7280;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.do-code {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    flex-shrink: 0;
}
.dial-no-result {
    padding: 14px;
    font-size: 13px;
    color: #9ca3af;
    text-align: center;
}
html[dir="rtl"] .dial-dropdown {
    left: auto;
    right: 0;
}
html[dir="rtl"] .dial-search {
    padding: 0 30px 0 10px;
    background-position: right 8px center;
}
html[dir="rtl"] .lf-phone-row {
    flex-direction: row-reverse;
}
html[dir="rtl"] .lf-label {
    text-align: start;
}
html[dir="rtl"] select.lf-input {
    background-position: left 12px center;
    padding-right: 12px;
    padding-left: 36px;
}
html[dir="rtl"] .lead-form__title,
.lead-form__tag {
    text-align: start;
    display: block;
}
html[dir="rtl"] .hero {
    direction: rtl;
}
html[dir="rtl"] .hero-content {
    text-align: start;
}
html[dir="rtl"] .hero-bg {
    transform: scaleX(-1);
}
html[dir="rtl"] .lf-input:not(.lf-phone) {
    direction: rtl;
}
html[dir="rtl"] .lf-phone {
    direction: ltr;
}
html[dir="rtl"] .dial-trigger {
    justify-content: flex-end;
}
html[dir="rtl"] .lf-submit {
    align-self: flex-end;
}
@media (max-width: 768px) {
    nav {
        display: none;
    }
    .nav-dropdown__menu {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        padding: 10px;
        box-sizing: border-box;
    }
    .brands-logos-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        width: 100%;
        overflow: hidden;
    }
    .brand-logo-card {
        min-width: 0;
        width: 100%;
        padding: 12px 8px;
        min-height: 140px;
    }
    .brand-logo-img {
        width: 65px;
        height: 65px;
    }
    .brand-logo-name {
        white-space: normal;
        word-break: break-word;
    }
    body,
    html {
        overflow-x: hidden;
    }
}
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        align-items: stretch;
        padding: 40px 5%;
        min-height: unset;
        height: auto;
        gap: 0;
    }
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    .hero-content h1 {
        font-size: 36px;
    }
    .hero-content p {
        font-size: 15px;
    }
    .hero-form-wrap {
        flex: 1 1 auto;
        max-width: 100%;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 680px) {
    .lf-phone-row {
        display: flex;
        flex-direction: row !important;
        align-items: center;
        gap: 10px;
    }
    .dial-wrap {
        width: 110px;
        flex-shrink: 0;
    }
    .lf-phone {
        flex: 1;
        width: 100%;
    }
}
@media (max-width: 480px) {
    .hero {
        padding: 30px 4%;
    }
    .lead-form {
        padding: 22px 16px 20px;
    }
    .lead-form__title {
        font-size: 17px;
    }
    .hero-content h1 {
        font-size: 28px;
    }
    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 5px;
    }
    .lead-form__tag,
    .lead-form__title {
        text-align: center;
    }
    .lf-code {
        flex: 0 0 90px;
        width: 90px;
        font-size: 12px;
    }
    .lf-input {
        font-size: 13px;
    }
}
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 28px;
    padding: 60px 7%;
}
.car-card {
    background: rgb(255 255 255 / 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgb(255 255 255 / 0.3);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 32px rgb(0 0 0 / 0.08);
}
.car-card:hover {
    box-shadow: 0 20px 45px rgb(0 0 0 / 0.15);
    transform: translateY(-8px);
    background: rgb(255 255 255 / 0.95);
    border-color: rgb(232 93 4 / 0.2);
}
.car-card__img-wrap {
    position: relative;
    cursor: zoom-in;
    overflow: hidden;
}
.car-card__img-wrap::before {
    content: "Preview";
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    padding: 8px 16px;
    color: #fff;
    background: rgb(15 23 42 / 0.75);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    opacity: 0;
    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
    pointer-events: none;
}
.car-card__img-wrap:hover::before {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
.car-card__img-wrap img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}
.image-preview-trigger {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    background: #fff0;
    color: inherit;
    cursor: zoom-in;
    padding: 0;
    margin: 0;
}
.image-preview-trigger span {
    display: none;
}
.image-preview-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgb(15 23 42 / 0.8);
    backdrop-filter: blur(8px);
    z-index: 3000;
    padding: 20px;
}
.image-preview-modal--visible {
    display: flex;
}
.image-preview-dialog {
    width: min(95%, 820px);
    max-width: 940px;
    border-radius: 28px;
    overflow: hidden;
    background: rgb(255 255 255 / 0.05);
    border: 1px solid rgb(255 255 255 / 0.14);
    box-shadow: 0 36px 90px rgb(0 0 0 / 0.45);
    position: relative;
    opacity: 0;
    transform: translateY(24px);
    animation: previewDialogIn 0.35s ease-out forwards;
}
@keyframes previewDialogIn {
    from {
        opacity: 0;
        transform: translateY(24px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
.image-preview-close {
    position: absolute;
    top: 16px;
    inset-inline-end: 16px;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgb(15 23 42 / 0.8);
    color: #fff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 8px 18px rgb(0 0 0 / 0.2);
}
.image-preview-dialog img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    max-height: 75vh;
}
.image-preview-caption {
    padding: 18px 24px 22px;
    color: #f8fafc;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
}
.car-card__actions {
    display: flex;
    gap: 8px;
}
.car-card__actions .car-card__btn {
    flex: 1;
    text-align: center;
}
.car-card__btn--book {
    background: #e85d04;
}
.car-card__btn--book:hover {
    background: #d84c03;
}
.car-card--filtered-out {
    display: none !important;
}
.car-card[data-filterable] {
    opacity: 1;
    transform: none;
}
.car-card__badge {
    position: absolute;
    top: 12px;
    inset-inline-start: 12px;
    background: #e85d04;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}
.car-card__badge--used {
    background: #6b7280;
}
.car-card__badge--offer {
    background: #16a34a;
}
.car-card__body {
    padding: 16px 18px 20px;
}
.car-card__name {
    font-size: 17px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
}
.car-card__price {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: #e85d04;
    margin-bottom: 10px;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.car-card__details {
    list-style: none;
    margin-bottom: 18px;
    border-top: 1px solid #e5e7eb;
    padding-top: 4px;
    display: flex;
    flex-direction: column;
}
.car-card__details li {
    font-size: 13.5px;
    color: #374151;
    line-height: 1.5;
    padding: 6px 0;
    border-bottom: 1px dashed #d1d5db;
}
.car-card__details li:last-child {
    border-bottom: none;
}
.car-card__details li strong {
    color: #111827;
    font-weight: 700;
    margin-inline-end: 4px;
}
.car-card__btn {
    display: inline-block;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    color: #fff;
    padding: 9px 22px;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgb(31 41 55 / 0.2);
}
.car-card__btn:hover {
    background: linear-gradient(135deg, #e85d04 0%, #d84c03 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgb(232 93 4 / 0.3);
}
.page-banner {
    padding: 70px 8% 40px;
    text-align: center;
    background: linear-gradient(
        135deg,
        rgb(255 247 237 / 0.6) 0%,
        rgb(244 246 248 / 0.6) 50%,
        rgb(248 251 255 / 0.6) 100%
    );
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgb(229 231 235 / 0.5);
}
.page-banner h1 {
    font-size: 46px;
    font-weight: 800;
    color: #0f172a;
}
footer {
    background: linear-gradient(135deg, #0f172a 0%, #1a2849 100%);
    color: #94a3b8;
    font-size: 14px;
    padding-top: 56px;
    margin-top: 20px;
    border-top: 1px solid rgb(255 255 255 / 0.1);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 0 7% 48px;
    border-bottom: 1px solid #1e293b;
}
.footer-brand .footer-logo {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 3px;
    margin-bottom: 14px;
}
.footer-brand p {
    line-height: 1.8;
    color: #94a3b8;
    max-width: 280px;
    text-align: start;
}
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgb(30 41 59 / 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgb(255 255 255 / 0.1);
    color: #94a3b8;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.3s;
}
.footer-social a:hover {
    background: linear-gradient(135deg, #e85d04 0%, #d84c03 100%);
    color: #fff;
    border-color: rgb(232 93 4 / 0.3);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgb(232 93 4 / 0.3);
}
.footer-col h5 {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
}
.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-col ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-col ul li a:hover {
    color: #e85d04;
}
.footer-col .contact-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 10px;
}
.footer-col .contact-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #64748b;
}
.footer-col .contact-value {
    color: #cbd5e1;
    font-size: 13.5px;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 7%;
    font-size: 13px;
    color: #475569;
    flex-wrap: wrap;
    gap: 8px;
}
.footer-bottom a {
    color: #475569;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-bottom a:hover {
    color: #e85d04;
}
html[dir="rtl"] {
    direction: rtl;
}
html[dir="rtl"] body {
    text-align: start;
}
html[dir="rtl"] .hero-bg {
    transform: scaleX(-1);
}
html[dir="rtl"] .lead-form,
html[dir="rtl"] .hero-content,
html[dir="rtl"] .footer-brand p {
    text-align: start;
}
html[dir="rtl"] .lf-label,
html[dir="rtl"] .lf-input {
    text-align: start;
}
html[dir="rtl"] .lf-phone-row {
    flex-direction: row-reverse;
}
html[dir="rtl"] .lf-submit {
    align-self: flex-end;
}
.logo {
    margin-inline-end: 40px;
}
#mainNav {
    margin-inline-end: auto;
}
.home-section__head h2::before,
.section-title::before,
.offers-banner h2::before {
    inset-inline-start: 0;
}
.home-section__head h2::after,
.section-title::after,
.offers-banner h2::after {
    inset-inline-start: 0;
}
.brand-logo-card {
    text-align: center;
}
.footer-grid {
    direction: inherit;
}
html[dir="rtl"] .logo {
    background: linear-gradient(225deg, #0f172a 0%, #e85d04 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    background-clip: text;
}
.booking-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgb(15 23 42 / 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 2000;
    padding: 12px;
}
.booking-modal--visible {
    display: flex;
}
.booking-modal__dialog {
    background: rgb(255 255 255 / 0.22);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    width: min(95%, 520px);
    padding: 48px 32px 32px;
    border-radius: 24px;
    position: relative;
    box-shadow: 0 25px 60px rgb(0 0 0 / 0.2);
    border: 1px solid rgb(255 255 255 / 0.3);
    overflow-y: auto;
    max-height: 90vh;
}
.booking-modal__close {
    position: absolute;
    top: 12px;
    inset-inline-end: 12px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    line-height: 1;
    background: #f1f5f9;
    border: none;
    color: #64748b;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.2s;
}
.booking-modal__close:hover {
    background: #e2e8f0;
    color: #0f172a;
}
.bm-car-info {
    background: linear-gradient(135deg, #fff7ed 0%, #fff3e8 100%);
    border: 1px solid rgb(232 93 4 / 0.2);
    border-radius: 12px;
    padding: 14px 18px;
    margin-bottom: 20px;
    animation: bmCarInfoIn 0.35s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes bmCarInfoIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.bm-car-info__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}
.bm-car-info__name {
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
}
.bm-car-info__brand {
    font-size: 12px;
    color: #6b7280;
    font-weight: 600;
    margin-top: 2px;
}
.bm-car-info__price {
    font-size: 20px;
    font-weight: 800;
    color: #e85d04;
    white-space: nowrap;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.booking-modal h2 {
    margin-bottom: 20px;
    font-size: 26px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
}
.booking-details {
    background: linear-gradient(135deg, rgb(248 250 252 / 0.8) 0%, rgb(240 249 255 / 0.8) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 28px;
    border: 1px solid rgb(232 93 4 / 0.1);
}
.booking-details p {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 14px;
}
.booking-details p:last-child {
    margin-bottom: 0;
}
.booking-details strong {
    color: #64748b;
    font-weight: 600;
}
.booking-details span {
    color: #0f172a;
    font-weight: 700;
    text-align: right;
}
.booking-field {
    display: block;
    margin-bottom: 20px;
}
.booking-field span {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 8px;
}
.booking-field input,
.booking-field textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid rgb(226 232 240 / 0.6);
    background: rgb(248 250 252 / 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s;
}
.booking-field input:focus,
.booking-field textarea:focus {
    outline: none;
    border-color: #e85d04;
    background: rgb(255 255 255 / 0.9);
    box-shadow: 0 0 0 4px rgb(232 93 4 / 0.15);
}
.booking-modal .btn {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 12px;
    margin-top: 8px;
}
.booking-errors,
.booking-success {
    margin-bottom: 18px;
    padding: 16px 18px;
    border-radius: 12px;
    font-size: 14px;
}
.booking-errors {
    background: #fee2e2;
    color: #991b1b;
}
.booking-errors ul {
    list-style: disc;
    margin-left: 18px;
}
.booking-success {
    background: #47261b;
    color: #e34821;
}
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border: 1.5px solid rgb(232 93 4 / 0.3);
    background: rgb(248 250 252 / 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #1e293b;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.btn-outline:hover {
    background: linear-gradient(135deg, rgb(232 93 4 / 0.08) 0%, rgb(232 93 4 / 0.04) 100%);
    border-color: #e85d04;
    color: #e85d04;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgb(0 0 0 / 0.1);
}
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 35px 5%;
}
.brands-section {
    background: #fff;
    padding: 80px 0;
}
.section-title {
    font-size: 40px;
    font-weight: 800;
    color: #0f172a;
    text-align: center;
    margin-bottom: 16px;
}
.brands-section .section-title {
    margin-bottom: 32px;
}
.brands-logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 24px;
    margin-top: 40px;
}
.brand-logo-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 24px 16px;
    background: rgb(255 255 255 / 0.24);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 20px;
    border: 1px solid rgb(255 255 255 / 0.24);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    min-height: 190px;
    box-shadow: 0 20px 45px rgb(0 0 0 / 0.08);
}
.brand-logo-card:hover {
    background: rgb(255 255 255 / 0.34);
    transform: translateY(-7px) scale(1.01);
    box-shadow: 0 22px 56px rgb(0 0 0 / 0.14);
    border-color: rgb(232 93 4 / 0.3);
}
.brand-logo-card:hover .brand-logo-name {
    color: #1f2937;
}
.brand-logo-img {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    background: rgb(255 255 255 / 0.7);
    border-radius: 20px;
    border: 1px solid rgb(229 231 235 / 0.65);
    box-shadow: inset 0 1px 2px rgb(255 255 255 / 0.7);
}
.brand-logo-img img {
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
    filter: saturate(1.1) contrast(1.05);
}
.brand-placeholder {
    width: 70px;
    height: 70px;
    background: #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: #475569;
}
.brand-logo-name {
    font-size: 15px;
    font-weight: 600;
    color: #334155;
    text-align: center;
}
.brands-section .btn-outline {
    margin: 0 auto;
}
.origin-section {
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(
            180deg,
            rgb(15 23 42 / 0.84) 0%,
            rgb(15 23 42 / 0.65) 45%,
            rgb(15 23 42 / 0.18) 100%
        ),
        url(../images/background.webp);
    background-size: cover, cover;
    background-position:
        center center,
        center center;
    background-repeat: no-repeat;
    animation: originBgMove 18s ease infinite;
}
.origin-section::before,
.origin-section::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    filter: blur(58px);
    opacity: 0.45;
    pointer-events: none;
    z-index: 0;
}
.origin-section::before {
    top: -120px;
    inset-inline-start: -90px;
    background: radial-gradient(circle, rgb(232 93 4 / 0.18) 0%, transparent 65%);
    animation: floatSlow 18s ease-in-out infinite;
}
.origin-section::after {
    bottom: -100px;
    inset-inline-end: -100px;
    background: radial-gradient(circle, rgb(16 185 129 / 0.16) 0%, transparent 62%);
    animation: floatSlow 20s ease-in-out infinite;
}
.origin-section > .section-container {
    position: relative;
    z-index: 1;
}
.origin-section .section-title {
    text-align: center;
    margin-bottom: 40px;
    color: whitesmoke;
}
.origin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 20px;
    margin-top: 0;
}
@keyframes originBgMove {
    0%,
    100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}
.origin-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    padding: 18px;
    background: rgb(255 255 255 / 0.22);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-radius: 18px;
    border: 1px solid rgb(255 255 255 / 0.18);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 24px 55px rgb(0 0 0 / 0.08);
}
.origin-card:hover {
    border-color: rgb(232 93 4 / 0.35);
    box-shadow: 0 28px 70px rgb(0 0 0 / 0.16);
    transform: translateY(-6px);
    background: rgb(255 255 255 / 0.3);
}
.origin-flag {
    width: 58px;
    height: 38px;
    margin-bottom: 14px;
    box-shadow: 0 6px 18px rgb(0 0 0 / 0.12);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgb(255 255 255 / 0.35);
}
.origin-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.15) contrast(1.02);
}
.flag-placeholder {
    width: 100%;
    height: 100%;
    background: #cbd5e1;
}
.origin-name {
    font-size: 14px;
    font-weight: 600;
    color: #f7f7f8;
}
@media (max-width: 1024px) {
    .detail-wrapper {
        grid-template-columns: 220px 1fr;
    }
    .detail-specs {
        grid-column: 1 / -1;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }
    .footer-brand p {
        margin: 0 auto 14px;
    }
    .footer-social {
        justify-content: center;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}
@media (max-width: 768px) {
    .booking-modal {
        padding: 0;
        align-items: flex-end;
    }
    .booking-modal__dialog {
        border-radius: 20px 20px;
        margin-bottom: auto;
        max-height: 95vh;
    }
    .booking-modal__close {
        top: 10px;
        inset-inline-end: 10px;
    }
    .booking-details {
        padding: 14px;
    }
    .booking-details strong {
        width: 100px;
        font-size: 13px;
    }
    header {
        flex-wrap: wrap;
        padding: 14px 5%;
        gap: 0;
        position: relative;
    }
    .logo {
        font-size: 22px;
    }
    .nav-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 36px;
        height: 36px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 4px;
        margin-left: auto;
    }
    .nav-toggle span {
        display: block;
        height: 2px;
        background: #1f2937;
        border-radius: 2px;
        transition: all 0.3s;
    }
    nav {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 0;
        background: #fff;
        border-top: 1px solid #f3f4f6;
        margin-top: 10px;
        padding: 8px 0;
    }
    nav.open {
        display: flex;
    }
    nav a {
        padding: 12px 16px;
        border-bottom: 1px solid #f9fafb;
        font-size: 15px;
    }
    .nav-dropdown__menu {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0;
        width: 100%;
        display: none;
        animation: none;
    }
    .nav-dropdown.open .nav-dropdown__menu {
        display: block;
        background: #f8fafc;
    }
    .nav-dropdown__menu::before,
    .nav-dropdown__menu::after {
        display: none;
    }
    .nav-dropdown__trigger {
        width: 100%;
        text-align: start;
        padding: 12px 16px;
        border-bottom: 1px solid #f9fafb;
        font-size: 15px;
    }
    .brands-logos-grid {
        grid-template-columns: 1fr 1fr;
        padding: 10px;
    }
    #langBtn {
        margin-top: 10px;
        width: 100%;
        text-align: center;
        padding: 10px;
        border-radius: 6px;
    }
    .hero {
        height: auto;
        min-height: 60vh;
        padding: 15px 5% 50px;
        align-items: flex-start;
    }
    .hero-content {
        max-width: 100%;
    }
    .hero h1 {
        font-size: 30px;
        margin-bottom: 14px;
    }
    .hero p {
        font-size: 15px;
        margin-bottom: 24px;
    }
    .btn {
        padding: 11px 24px;
        font-size: 14px;
    }
    .mobile-btn {
        display: none;
    }
    .filter-bar__inner {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 20px 16px;
    }
    .filter-actions {
        grid-column: auto;
        flex-direction: column;
        width: 100%;
    }
    .filter-btn {
        width: 100%;
    }
    .page-banner {
        padding: 40px 5% 24px;
    }
    .page-banner h1 {
        font-size: 26px;
    }
    .cards {
        grid-template-columns: 1fr;
        padding: 28px 5%;
        gap: 18px;
    }
    .car-card__img-wrap img {
        height: 200px;
    }
    .pagination {
        padding: 10px 5% 36px;
        gap: 4px;
    }
    .pagination__btn {
        min-width: 34px;
        height: 34px;
        font-size: 13px;
    }
    .detail-wrapper {
        grid-template-columns: 1fr;
        padding: 16px 5%;
        gap: 16px;
    }
    .detail-sidebar {
        position: static;
        order: 3;
        width: 100%;
    }
    .detail-specs {
        grid-column: auto;
        order: 2;
        width: 100%;
    }
    .detail-main {
        order: 1;
        width: 100%;
    }
    .detail-title-row {
        flex-direction: column;
        gap: 4px;
    }
    .detail-car-title {
        font-size: 20px;
    }
    .detail-price {
        font-size: 20px;
    }
    .gallery__main img {
        height: 220px;
    }
    .gallery__thumbs {
        grid-template-columns: repeat(4, 1fr);
        gap: 6px;
    }
    .thumb {
        height: 64px;
    }
    .color-picker__swatches {
        gap: 8px;
    }
    .swatch {
        width: 34px;
        height: 34px;
    }
    .additional-section {
        margin: 0 5% 24px;
        padding: 20px 16px;
    }
    .additional-title {
        font-size: 18px;
    }
    .tabs {
        flex-wrap: wrap;
        gap: 4px;
        border-bottom: none;
    }
    .tab-btn {
        padding: 9px 14px;
        font-size: 11px;
        border-radius: 6px;
        border: 1px solid #e5e7eb;
    }
    .tab-btn.active {
        margin-bottom: 0;
        border-color: #e85d04;
    }
    .tab-content {
        border-radius: 8px;
        border: 1px solid #e5e7eb;
        margin-top: 8px;
        padding: 18px 14px;
    }
    .tab-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .breadcrumb {
        padding: 10px 5%;
        font-size: 12px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 0 5% 36px;
    }
    .footer-brand p {
        max-width: 100%;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 16px 5%;
        gap: 6px;
    }
}
@media (max-width: 480px) {
    .hero h1 {
        font-size: 26px;
    }
    .logo img {
        max-height: 46px;
    }
    .cards {
        padding: 20px 4%;
    }
    .gallery__thumbs {
        grid-template-columns: repeat(4, 1fr);
    }
    .thumb {
        height: 54px;
    }
    .specs-table {
        font-size: 12.5px;
    }
    .tab-btn {
        font-size: 10px;
        padding: 8px 10px;
    }
}
.hl {
    color: #e85d04;
}
.breadcrumb {
    padding: 12px 7%;
    font-size: 13px;
    color: #6b7280;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
}
.breadcrumb a {
    color: #e85d04;
    text-decoration: none;
}
.breadcrumb a:hover {
    text-decoration: underline;
}
.detail-wrapper {
    display: grid;
    grid-template-columns: 260px 1fr 280px;
    gap: 24px;
    padding: 28px 7%;
    align-items: start;
}
.sidebar-box {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 18px;
    margin-bottom: 20px;
}
.sidebar-title {
    font-size: 15px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #f3f4f6;
}
.dealer-name {
    font-size: 13.5px;
    color: #374151;
}
.calc-form {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.calc-form label {
    font-size: 12px;
    color: #6b7280;
    margin-top: 4px;
}
.calc-form input {
    border: 1px solid #d1d5db;
    border-radius: 4px;
    padding: 6px 10px;
    font-size: 13px;
    color: #1f2937;
    background: #f9fafb;
    width: 100%;
}
.calc-form input[readonly] {
    background: #f3f4f6;
    color: #6b7280;
}
.calc-btn {
    margin-top: 10px;
    background: #e85d04;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 9px;
    font-weight: 700;
    font-size: 13.5px;
    cursor: pointer;
    transition: background 0.25s;
}
.calc-btn:hover {
    background: #c44d00;
}
.featured-car {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid #f3f4f6;
}
.featured-car:last-of-type {
    border-bottom: none;
    margin-bottom: 14px;
}
.featured-car img {
    width: 68px;
    height: 52px;
    object-fit: cover;
    border-radius: 5px;
    flex-shrink: 0;
}
.featured-car__info {
    display: flex;
    flex-direction: column;
    font-size: 12.5px;
    color: #374151;
    line-height: 1.5;
}
.featured-car__info strong {
    color: #111827;
    font-size: 13px;
}
.featured-price {
    color: #e85d04;
    font-weight: 700;
    font-size: 13.5px;
}
.all-cars-btn {
    display: inline-block;
    background: #e85d04;
    color: #fff;
    padding: 7px 18px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.25s;
}
.all-cars-btn:hover {
    background: #c44d00;
}
.detail-title-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 10px;
}
.detail-car-title {
    font-size: 26px;
    font-weight: 700;
    color: #1f2937;
}
.detail-price-box {
    font-size: 15px;
    color: #6b7280;
    white-space: nowrap;
}
.detail-price {
    font-size: 24px;
    font-weight: 800;
    color: #e85d04;
    margin-left: 6px;
}
.gallery__main {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
}
.gallery__main img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
    transition:
        opacity 0.25s,
        filter 0.35s;
}
.gallery__thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-top: 10px;
}
.thumb {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    border: 2px solid #fff0;
    transition:
        border-color 0.2s,
        opacity 0.2s;
    opacity: 0.75;
}
.thumb:hover,
.thumb.active {
    border-color: #e85d04;
    opacity: 1;
}
.detail-specs {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 20px;
}
.specs-title {
    padding: 0px 107px;
    font-size: 15px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}
.specs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13.5px;
}
.specs-table tr {
    border-bottom: 1px solid #f3f4f6;
}
.specs-table tr:last-child {
    border-bottom: none;
}
.specs-table td {
    padding: 7px 4px;
    color: #374151;
    vertical-align: top;
}
.spec-label {
    font-weight: 700;
    color: #111827;
    width: 48%;
    white-space: nowrap;
}
.additional-section {
    background: #fff;
    margin: 0 7% 40px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 32px 36px;
}
.additional-title {
    font-size: 22px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 10px;
}
.additional-hr {
    border: none;
    border-top: 1px solid #e5e7eb;
    margin-bottom: 22px;
}
.additional-text {
    font-size: 14px;
    color: #374151;
    line-height: 1.8;
    margin-bottom: 32px;
}
.tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #e5e7eb;
    margin-bottom: 0;
}
.tab-btn {
    background: #f3f4f6;
    border: none;
    padding: 12px 28px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    color: #6b7280;
    border-radius: 6px 6px 0 0;
    transition:
        background 0.2s,
        color 0.2s;
}
.tab-btn:hover {
    color: #e85d04;
}
.tab-btn.active {
    background: #f3f4f6;
    color: #e85d04;
    border-bottom: 2px solid #f3f4f6;
    margin-bottom: -2px;
}
.tab-content {
    display: none;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-top: none;
    border-radius: 0 0 8px 8px;
    padding: 24px 28px;
}
.tab-content.active {
    display: block;
}
.tab-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 40px;
}
.tab-list {
    padding: 0px 118px;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.tab-list li {
    font-size: 13.5px;
    color: #374151;
    padding-inline-start: 14px;
    position: relative;
}
.tab-list li::before {
    content: "•";
    color: #e85d04;
    font-size: 16px;
    position: absolute;
    inset-inline-start: 0;
    top: -1px;
}
.tab-list li strong {
    color: #111827;
    font-weight: 700;
    margin-right: 4px;
}
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 10px 7% 50px;
    flex-wrap: wrap;
}
.pagination__btn {
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border: 1px solid #d1d5db;
    background: #fff;
    color: #374151;
    font-size: 14px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition:
        background 0.2s,
        color 0.2s,
        border-color 0.2s;
}
.pagination__btn:hover:not(:disabled) {
    background: #fff7ed;
    border-color: #e85d04;
    color: #e85d04;
}
.pagination__btn.active {
    background: #e85d04;
    border-color: #e85d04;
    color: #fff;
}
.pagination__btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}
.detail-sidebar {
    position: sticky;
    top: 80px;
    align-self: start;
}
.color-picker {
    margin-top: 20px;
    padding: 16px 18px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
}
.color-picker__label {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #374151;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.color-picker__swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.swatch {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid #e5e7eb;
    cursor: pointer;
    position: relative;
    transition:
        border-color 0.2s,
        transform 0.15s;
    box-shadow: 0 1px 4px rgb(0 0 0 / 0.12);
    outline: none;
}
.swatch:hover {
    transform: scale(1.12);
    border-color: #9ca3af;
}
.swatch.active {
    border-color: #e85d04;
}
.swatch.active::after {
    content: "✓";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 1px 3px rgb(0 0 0 / 0.5);
    line-height: 34px;
    text-align: center;
    width: 100%;
}
.swatch[style*="#ffffff"].active::after,
.swatch[style*="#e7e5e4"].active::after,
.swatch[style*="#d1d5db"].active::after {
    color: #374151;
    text-shadow: none;
}
.color-picker__selected {
    margin-top: 12px;
    font-size: 13.5px;
    color: #6b7280;
}
.color-picker__selected strong {
    color: #111827;
    margin-left: 4px;
}
.rtl .color-picker__selected strong {
    margin-left: 0;
    margin-right: 4px;
}
.filter-bar {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    padding: 20px 7%;
}
.filter-bar__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: flex-end;
}
.filter-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1 1 140px;
    min-width: 120px;
}
.filter-group label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #6b7280;
}
.filter-group select,
.filter-group input {
    border: 1px solid #d1d5db;
    border-radius: 6px;
    padding: 9px 12px;
    font-size: 13.5px;
    color: #1f2937;
    background: #f9fafb;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
}
.filter-group select:focus,
.filter-group input:focus {
    border-color: #e85d04;
    background: #fff;
}
.filter-actions {
    display: flex;
    gap: 8px;
    align-items: flex-end;
    flex-shrink: 0;
}
.filter-btn {
    padding: 9px 22px;
    border: none;
    border-radius: 6px;
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
    background: #e85d04;
    color: #fff;
    transition: background 0.2s;
    white-space: nowrap;
}
.filter-btn:hover {
    background: #c44d00;
}
.filter-btn--reset {
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #d1d5db;
}
.filter-btn--reset:hover {
    background: #e5e7eb;
}
.home-section {
    padding: 0 0 10px;
}
.home-section__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 48px 7% 0;
}
.home-section__head h2,
.section-title,
.offers-banner h2 {
    font-size: 40px;
    font-weight: 800;
    color: #0f172a;
    position: relative;
    display: inline-block;
}
.home-section__head h2::before,
.home-section__head h2::after,
.section-title::before,
.section-title::after,
.offers-banner h2::before,
.offers-banner h2::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #e95f1a, #0c0c0c);
    opacity: 0.85;
    transition: transform 0.4s ease-out;
    transform: scaleX(0);
}
.home-section__head h2::before,
.section-title::before,
.offers-banner h2::before {
    top: -10px;
    inset-inline-start: 0;
    transform-origin: left;
}
.home-section__head h2::after,
.section-title::after,
.offers-banner h2::after {
    bottom: -10px;
    inset-inline-start: 0;
    transform-origin: right;
}
html[dir="rtl"] .home-section__head h2::before,
html[dir="rtl"] .section-title::before,
html[dir="rtl"] .offers-banner h2::before {
    transform-origin: right;
}
html[dir="rtl"] .home-section__head h2::after,
html[dir="rtl"] .section-title::after,
html[dir="rtl"] .offers-banner h2::after {
    transform-origin: left;
}
.home-section__head h2:hover::before,
.home-section__head h2:hover::after,
.section-title:hover::before,
.section-title:hover::after,
.offers-banner h2:hover::before,
.offers-banner h2:hover::after {
    transform: scaleX(1);
}
.see-all {
    font-size: 15px;
    font-weight: 700;
    color: #e85d04;
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
}
.see-all:hover {
    color: #c44d00;
    transform: translateX(var(--move-dir, 4px));
}
html[dir="rtl"] {
    --move-dir: -4px;
}
.no-results {
    text-align: center;
    padding: 40px 7%;
    color: #6b7280;
    font-size: 15px;
}
.offers-banner {
    margin: 60px 7% 0;
    border-radius: 20px;
    background: linear-gradient(135deg, rgb(15 23 42 / 0.95) 0%, rgb(31 41 55 / 0.95) 50%, rgb(232 93 4 / 0.08) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 60px 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgb(232 93 4 / 0.2);
    box-shadow:
        0 8px 32px rgb(232 93 4 / 0.15),
        inset 0 1px 0 rgb(255 255 255 / 0.1);
}
html[dir="rtl"] .offers-banner {
    background: linear-gradient(225deg, rgb(15 23 42 / 0.95) 0%, rgb(31 41 55 / 0.95) 50%, rgb(232 93 4 / 0.08) 100%);
}
.offers-banner::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgb(232 93 4 / 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: floatSlow 20s ease-in-out infinite;
    pointer-events: none;
}
html[dir="rtl"] .offers-banner::before {
    right: auto;
    left: -20%;
}
.offers-banner::after {
    content: "";
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgb(16 185 129 / 0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(50px);
    animation: floatSlow 25s ease-in-out infinite reverse;
    pointer-events: none;
}
html[dir="rtl"] .offers-banner::after {
    left: auto;
    right: -10%;
}
.offers-banner__content {
    max-width: 620px;
    position: relative;
    z-index: 2;
}
html[dir="rtl"] .offers-banner__content {
    text-align: right;
}
.offer-preview-popup {
    opacity: 0;
    transform: translateY(12px);
    transition:
        opacity 0.28s ease,
        transform 0.28s ease;
    position: relative;
    z-index: 2;
    pointer-events: none;
    flex-shrink: 0;
}
.offers-banner:hover .offer-preview-popup {
    opacity: 1;
    transform: translateY(0);
}
.offer-preview-hint {
    position: absolute;
    top: -28px;
    right: 0;
    font-size: 13px;
    color: rgb(255 255 255 / 0.9);
    letter-spacing: 0.2px;
    font-weight: 600;
    background: rgb(15 23 42 / 0.7);
    padding: 6px 12px;
    border-radius: 999px;
    pointer-events: none;
}
html[dir="rtl"] .offer-preview-hint {
    right: auto;
    left: 0;
}
.offer-preview-card {
    width: 320px;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgb(255 255 255 / 0.18);
    background: rgb(255 255 255 / 0.16);
    box-shadow: 0 20px 50px rgb(0 0 0 / 0.18);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    position: relative;
}
.offer-preview-card img {
    display: block;
    width: 100%;
    height: 240px;
    object-fit: cover;
    filter: saturate(1.05) contrast(1.05);
}
.offer-preview-label {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgb(232 93 4 / 0.95);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 999px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}
.offers-banner__tag {
    display: inline-block;
    background: linear-gradient(135deg, #e85d04 0%, #d84c03 100%);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 18px;
    box-shadow: 0 4px 12px rgb(232 93 4 / 0.4);
    animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
    0%,
    100% {
        box-shadow: 0 4px 12px rgb(232 93 4 / 0.4);
    }
    50% {
        box-shadow: 0 6px 20px rgb(232 93 4 / 0.6);
    }
}
.offers-banner h2 {
    font-size: 42px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, #e5e7eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    background-clip: text;
}
.offers-banner p {
    font-size: 16px;
    color: #cbd5e1;
    margin-bottom: 28px;
    line-height: 1.8;
    font-weight: 500;
}
.offers-banner .btn {
    position: relative;
    padding: 14px 36px;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 20px rgb(232 93 4 / 0.4);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@media (max-width: 768px) {
    .filter-bar {
        padding: 16px 5%;
    }
    .filter-bar__inner {
        gap: 10px;
    }
    .filter-group {
        flex: 1 1 calc(50% - 10px);
        min-width: 0;
    }
    .filter-actions {
        width: 100%;
    }
    .filter-btn {
        flex: 1;
        text-align: center;
    }
    .home-section__head {
        padding: 24px 5% 0;
    }
    .home-section__head h2 {
        font-size: 18px;
    }
    .offers-banner {
        margin: 40px 5% 0;
        padding: 36px 24px;
        border-radius: 16px;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }
    .offer-preview-popup {
        display: none;
    }
    .offers-banner__content {
        max-width: 100%;
        width: 100%;
    }
    .offers-banner h2 {
        font-size: 26px;
        line-height: 1.2;
    }
    .offers-banner p {
        font-size: 14px;
        margin-bottom: 20px;
    }
    .offers-banner .btn {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
    }
}
@media (max-width: 480px) {
    .filter-group {
        flex: 1 1 100%;
    }
}
.header-right {
    display: flex;
    align-items: center;
    gap: 10px;
}
.nav-toggle {
    display: none;
}
.nav-dropdown {
    position: static;
}
.nav-dropdown__trigger {
    background: none;
    border: none;
    outline: none !important;
    box-shadow: none !important;
    color: #374151;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    padding: 0;
    transition: color 0.25s;
    white-space: nowrap;
}
.nav-dropdown__trigger:hover {
    color: #e85d04;
}
.nav-dropdown__menu {
    display: none;
    position: absolute;
    top: 100%;
    inset-inline-start: 7%;
    width: 1100px;
    max-width: calc(100vw - 14%);
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgb(0 0 0 / 0.12);
    padding: 30px;
    z-index: 2000;
    animation: dropFade 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes dropFade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown.open .nav-dropdown__menu {
    display: block;
}
.brands-grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 7px;
    width: 100%;
}
.brand-drop-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 15px;
    border-radius: 16px;
    text-decoration: none;
    background: #fdfdfd;
    border: 1px solid #f3f4f6;
    transition: all 0.3s ease;
}
.brand-drop-item:hover {
    background: #fff5f0;
    border-color: #ffd8c2;
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgb(232 93 4 / 0.1);
}
.brand-drop-item:hover {
    background: #fff7ed;
    border-color: #e85d04;
    transform: translateY(-2px);
}
.brand-drop-item.active-brand {
    background: #fff7ed;
}
.bdrop-logo {
    width: 46px;
    height: 46px;
}
.bdrop-logo svg {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: block;
}
.brand-drop-item span {
    font-size: 11px;
    font-weight: 700;
    color: #374151;
    white-space: nowrap;
    text-align: center;
}
.brand-drop-item:hover span,
.brand-drop-item.active-brand span {
    color: #e85d04;
}
@media (max-width: 900px) {
    header {
        flex-wrap: wrap;
        padding: 14px 5%;
    }
    .nav-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 36px;
        height: 36px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 4px;
    }
    .nav-toggle span {
        display: block;
        height: 2px;
        background: #1f2937;
        border-radius: 2px;
        transition: all 0.3s;
    }
    .nav-toggle.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .nav-toggle.open span:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    #mainNav {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #fff;
        border-top: 1px solid #f3f4f6;
        margin-top: 10px;
        padding: 8px 0;
        gap: 0;
    }
    #mainNav.open {
        display: flex;
    }
    #mainNav > a {
        padding: 12px 16px;
        border-bottom: 1px solid #f9fafb;
        font-size: 15px;
        width: 100%;
    }
    .nav-dropdown {
        width: 100%;
    }
    .nav-dropdown__trigger {
        display: block;
        width: 100%;
        text-align: start;
        padding: 12px 16px;
        border-bottom: 1px solid #f9fafb;
        font-size: 15px;
    }
    .nav-dropdown__menu {
        position: static;
        transform: none;
        border-radius: 0;
        box-shadow: none;
        border: none;
        border-top: 1px solid #f3f4f6;
        padding: 12px 10px;
        animation: none;
        display: none;
        white-space: normal;
    }
    .nav-dropdown__menu::before,
    .nav-dropdown__menu::after {
        display: none;
    }
    .nav-dropdown.open .nav-dropdown__menu {
        display: block;
    }
    .brands-grid {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 6px;
    }
    .brand-drop-item {
        min-width: 56px;
    }
    #langBtn {
        padding: 8px 14px;
        font-size: 13px;
    }
}
@media (max-width: 768px) {
    .mobile-form-row {
        display: unset !important;
    }
    .lf-field {
        width: unset !important;
    }
}
.success-toast {
    position: fixed;
    top: 90px;
    inset-inline-end: 24px;
    bottom: auto;
    z-index: 99999;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #fff;
    border-radius: 14px;
    padding: 18px 20px 22px;
    min-width: 300px;
    max-width: 380px;
    box-shadow:
        0 20px 60px rgb(0 0 0 / 0.18),
        0 4px 16px rgb(0 0 0 / 0.08);
    border-inline-start: 4px solid #16a34a;
    transform: translateX(calc(100% + 40px));
    opacity: 0;
    transition:
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.35s ease;
    overflow: hidden;
}
html[dir="rtl"] .success-toast {
    transform: translateX(calc(-100% - 40px));
}
.success-toast--visible {
    transform: translateX(0);
    opacity: 1;
}
.success-toast--hiding {
    transform: translateX(calc(100% + 40px));
    opacity: 0;
}
html[dir="rtl"] .success-toast--hiding {
    transform: translateX(calc(-100% - 40px));
}
.success-toast__icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #16a34a, #15803d);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 900;
    box-shadow: 0 4px 12px rgb(22 163 74 / 0.35);
    animation: toastIconPop 0.5s 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
@keyframes toastIconPop {
    from {
        transform: scale(0.4);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
.success-toast__body {
    flex: 1;
    min-width: 0;
}
.success-toast__title {
    font-size: 14px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.3;
    margin-bottom: 4px;
}
.success-toast__sub {
    font-size: 12.5px;
    color: #6b7280;
    line-height: 1.5;
}
.success-toast__close {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border: none;
    background: #f1f5f9;
    border-radius: 50%;
    color: #64748b;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        background 0.2s,
        color 0.2s;
    margin-top: -2px;
}
.success-toast__close:hover {
    background: #e2e8f0;
    color: #0f172a;
}
.success-toast__bar {
    position: absolute;
    bottom: 0;
    inset-inline-start: 0;
    height: 3px;
    width: 100%;
    background: linear-gradient(90deg, #16a34a, #4ade80);
    border-radius: 0 0 14px 14px;
    transform-origin: left;
    animation: toastBar 5s linear forwards;
}
html[dir="rtl"] .success-toast__bar {
    transform-origin: right;
    background: linear-gradient(270deg, #16a34a, #4ade80);
}
@keyframes toastBar {
    from {
        transform: scaleX(1);
    }
    to {
        transform: scaleX(0);
    }
}
@media (max-width: 600px) {
    .success-toast {
        top: 80px;
        inset-inline-end: 12px;
        inset-inline-start: 12px;
        min-width: 0;
        max-width: 100%;
        transform: translateY(-120%);
    }
    html[dir="rtl"] .success-toast {
        transform: translateY(-120%);
    }
    .success-toast--visible {
        transform: translateY(0);
    }
    .success-toast--hiding {
        transform: translateY(-120%);
        opacity: 0;
    }
    html[dir="rtl"] .success-toast--hiding {
        transform: translateY(-120%);
    }
}
.policy-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 10px 5% 40px;
}
.policy-hero {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 24px;
    align-items: center;
    background: linear-gradient(135deg, rgb(232 93 4 / 0.12) 0%, rgb(255 250 240 / 0.96) 100%);
    border: 1px solid rgb(232 93 4 / 0.18);
    border-radius: 28px;
    padding: 32px;
    box-shadow: 0 20px 60px rgb(15 23 42 / 0.08);
}
.policy-hero h2 {
    font-size: 34px;
    line-height: 1.1;
    margin-bottom: 16px;
    color: #0f172a;
}
.policy-hero p {
    max-width: 720px;
    line-height: 1.85;
    color: #475569;
}
.policy-hero__badge {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 140px;
    border-radius: 24px;
    background: linear-gradient(135deg, #e85d04 0%, #d84c03 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    padding: 24px;
    box-shadow: 0 18px 42px rgb(232 93 4 / 0.2);
}
.policy-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 32px;
}
.policy-card {
    position: relative;
    overflow: hidden;
    background: rgb(255 255 255 / 0.98);
    border: 1px solid rgb(15 23 42 / 0.08);
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 22px 50px rgb(15 23 42 / 0.06);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}
.policy-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 60px rgb(15 23 42 / 0.12);
}
.policy-card::before {
    content: "";
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgb(232 93 4 / 0.16) 0%, transparent 70%);
    filter: blur(12px);
    opacity: 0.9;
    animation: policyPulse 6s ease-in-out infinite;
}
.policy-card-icon {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(135deg, #e85d04 0%, #d84c03 100%);
    color: #fff;
    font-size: 24px;
    margin-bottom: 18px;
    box-shadow: 0 12px 28px rgb(232 93 4 / 0.24);
}
.policy-card h3 {
    margin-bottom: 12px;
    font-size: 20px;
    line-height: 1.3;
    color: #0f172a;
}
.policy-card p {
    line-height: 1.85;
    color: #475569;
}
.policy-contact {
    text-align: center;
}
.policy-cta {
    display: inline-flex;
    flex-direction: column;
    gap: 14px;
    max-width: 860px;
    margin: 0 auto;
    padding: 40px 32px;
    border-radius: 28px;
    background: rgb(248 241 227 / 0.94);
    border: 1px solid rgb(232 93 4 / 0.16);
}
.policy-cta h2 {
    font-size: 30px;
    margin-bottom: 0;
    color: #0f172a;
}
.policy-cta p {
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.9;
    color: #334155;
}
@keyframes policyPulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.9;
    }
    50% {
        transform: scale(1.12);
        opacity: 0.7;
    }
}
@media (max-width: 900px) {
    .policy-hero {
        grid-template-columns: 1fr;
    }
    .policy-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 640px) {
    .page-banner {
        padding: 60px 5% 30px;
    }
    .page-banner h1 {
        font-size: 32px;
    }
    .policy-hero {
        padding: 24px;
    }
    .policy-card {
        padding: 22px;
    }
}
.price-disclaimer {
    background: #f8f8f8;
    padding: 15px 20px;
    font-size: 13px;
    line-height: 1.7;
    color: #666;
    text-align: center;
    border-top: 1px solid #ddd;
    margin-top: 40px;
}
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    inset-inline-end: 24px;
    z-index: 9998;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 8px 24px rgb(37 211 102 / 0.45);
    text-decoration: none;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}
.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 32px rgb(37 211 102 / 0.55);
    color: #fff;
}
.form-message {
    padding: 14px 16px;
    border-radius: 10px;
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 600;
}
.form-message--success {
    background: #ecfdf5;
    color: #166534;
    border: 1px solid #bbf7d0;
}
.form-message--error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}
.fa-solid,
.fas,
.fa-solid::before,
.fas::before {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    display: inline-block;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}
.fa-regular,
.far,
.fa-regular::before,
.far::before {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 400;
    font-style: normal;
}
.fa-brands,
.fab,
.fa-brands::before,
.fab::before {
    font-family: "Font Awesome 6 Brands" !important;
    font-weight: 400;
    font-style: normal;
    line-height: 1;
    display: inline-block;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}
html[lang="ar"] .fa-solid,
html[lang="ar"] .fas,
html[lang="ar"] .fa-solid::before,
html[lang="ar"] .fas::before {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900;
}
html[lang="ar"] .fa-brands,
html[lang="ar"] .fab,
html[lang="ar"] .fa-brands::before,
html[lang="ar"] .fab::before {
    font-family: "Font Awesome 6 Brands" !important;
    font-weight: 400;
}
html[dir="rtl"] .fa-solid,
html[dir="rtl"] .fas,
html[dir="rtl"] .fa-solid::before,
html[dir="rtl"] .fas::before {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900;
}
html[dir="rtl"] .fa-brands,
html[dir="rtl"] .fab,
html[dir="rtl"] .fa-brands::before,
html[dir="rtl"] .fab::before {
    font-family: "Font Awesome 6 Brands" !important;
    font-weight: 400;
}
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.footer-social a i,
.whatsapp-float i {
    font-family: "Font Awesome 6 Brands" !important;
    font-size: 18px;
    line-height: 1;
    width: 1em;
    height: 1em;
}
.whatsapp-float i {
    font-size: 30px;
}
.detail-wrapper {
    display: grid;
    grid-template-columns: 220px 1fr 260px;
    gap: 20px;
    padding: 20px 7%;
    align-items: start;
}
@media (max-width: 1100px) {
    .detail-wrapper {
        grid-template-columns: 200px 1fr;
        gap: 16px;
    }
    .detail-specs {
        grid-column: 1/-1;
        order: 3;
    }
}
@media (max-width: 768px) {
    .detail-wrapper {
        display: flex;
        flex-direction: column;
        padding: 12px 4%;
        gap: 14px;
    }
    .detail-sidebar {
        order: 4;
        width: 100%;
    }
    .detail-main {
        order: 1;
        width: 100%;
    }
    .detail-specs {
        order: 2;
        width: 100%;
    }
    .detail-title-row {
        flex-direction: column;
        gap: 6px;
        margin-bottom: 12px;
    }
    .detail-car-title {
        font-size: 18px;
        font-weight: 800;
        line-height: 1.3;
    }
    .detail-price {
        font-size: 18px;
    }
    .gallery__main img {
        height: 200px;
        border-radius: 8px;
    }
    .gallery__thumbs {
        grid-template-columns: repeat(4, 1fr);
        gap: 5px;
        margin-top: 8px;
    }
    .thumb {
        height: 56px;
        border-radius: 5px;
    }
    .specs-table {
        font-size: 13px;
    }
    .specs-table td {
        padding: 6px 4px;
    }
    .sidebar-box {
        padding: 14px;
    }
    .featured-car img {
        width: 56px;
        height: 44px;
    }
    .additional-section {
        margin: 0 4% 20px;
        padding: 16px 14px;
    }
    .additional-title {
        font-size: 16px;
    }
    .tab-grid {
        grid-template-columns: 1fr;
    }
    .color-picker {
        padding: 12px 14px;
        margin-top: 14px;
    }
    .color-picker__swatches {
        gap: 8px;
    }
    .swatch {
        width: 32px;
        height: 32px;
    }
}
@media (max-width: 480px) {
    .detail-wrapper {
        padding: 10px 3%;
    }
    .detail-car-title {
        font-size: 16px;
    }
    .gallery__main img {
        height: 180px;
    }
    .gallery__thumbs {
        grid-template-columns: repeat(4, 1fr);
        gap: 4px;
    }
    .thumb {
        height: 48px;
    }
    .specs-table {
        font-size: 12px;
    }
    .additional-section {
        margin: 0 3% 16px;
        padding: 14px 12px;
    }
}
.offer-preview-popup {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transition:
        opacity 0.5s ease,
        transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 2;
    pointer-events: none;
    flex-shrink: 0;
}
.offer-preview-popup.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}
.offer-preview-hint {
    display: none;
}
.offers-banner:hover .offer-preview-popup {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
}
.offers-banner:hover .offer-preview-popup.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}
@media (max-width: 768px) {
    .offer-preview-popup {
        display: none;
    }
}
.offer-scroll-modal {
    position: fixed;
    inset: 0;
    z-index: 3500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    visibility: hidden;
    pointer-events: none;
}
.offer-scroll-modal.is-open {
    visibility: visible;
    pointer-events: auto;
}
.offer-scroll-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgb(15 23 42 / 0.65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.35s ease;
}
.offer-scroll-modal.is-open .offer-scroll-modal__backdrop {
    opacity: 1;
}
.offer-scroll-modal__box {
    position: relative;
    z-index: 1;
    background: #fff;
    border-radius: 20px;
    width: min(92%, 420px);
    overflow: hidden;
    box-shadow: 0 32px 80px rgb(0 0 0 / 0.25);
    transform: translateY(40px) scale(0.95);
    opacity: 0;
    transition:
        transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
        opacity 0.35s ease;
}
.offer-scroll-modal.is-open .offer-scroll-modal__box {
    transform: translateY(0) scale(1);
    opacity: 1;
}
.offer-scroll-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: rgb(15 23 42 / 0.7);
    color: #fff;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: background 0.2s;
}
.offer-scroll-modal__close:hover {
    background: #e85d04;
}
.offer-scroll-modal__badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: linear-gradient(135deg, #e85d04, #d84c03);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 4px 12px rgb(232 93 4 / 0.4);
}
.offer-scroll-modal__img-wrap {
    width: 100%;
    overflow: hidden;
}
.offer-scroll-modal__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.offer-scroll-modal.is-open .offer-scroll-modal__img-wrap img {
    transform: scale(1.03);
}
.offer-scroll-modal__body {
    padding: 20px 22px 24px;
}
.offer-scroll-modal__name {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 6px;
    line-height: 1.3;
}
.offer-scroll-modal__price {
    font-size: 22px;
    font-weight: 800;
    color: #e85d04;
    margin-bottom: 18px;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.offer-scroll-modal__actions {
    display: flex;
    gap: 10px;
}
@media (max-width: 480px) {
    .offer-scroll-modal__img-wrap {
        height: 250px;
    }
    .offer-scroll-modal__body {
        padding: 16px 18px 20px;
    }
    .offer-scroll-modal__name {
        font-size: 16px;
    }
    .offer-scroll-modal__price {
        font-size: 18px;
    }
}
.lf-submit:disabled,
.btn:disabled,
button[type="submit"]:disabled {
    opacity: 0.45;
    cursor: not-allowed !important;
    transform: none !important;
    box-shadow: none !important;
    background: #9ca3af !important;
    border-color: #9ca3af !important;
    color: #fff !important;
    pointer-events: none;
}
.lf-submit:not(:disabled),
.btn.lf-submit:not(:disabled) {
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.why-choose-section {
    background: #0f172a !important;
    position: relative;
    overflow: hidden;
}
.why-choose-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 50% at 50% 0%, rgb(232 93 4 / 0.15) 0%, transparent 70%);
    pointer-events: none;
}
.why-choose-section::after {
    content: "";
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 600px;
    height: 300px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="rgba(232,93,4,0.04)" d="M500.33 221.09c-10.43-34.53-31.57-64.44-59.54-84.22l-15.65-11.08c-32.09-22.68-71.14-34.79-111.09-34.79H197.95c-39.95 0-79 12.11-111.09 34.79L71.21 136.87c-27.97 19.78-49.11 49.69-59.54 84.22L.15 259.41c-2.4 7.96 3.1 16.59 11.23 16.59h18.2c1.47 0 2.87-.66 3.78-1.81l14.73-18.66c5.87-7.44 14.8-11.53 24.16-11.09 10.63.5 19.49 8.16 21.68 18.32l5.48 25.13c1.78 8.17 9.01 14.11 17.37 14.11h310.44c8.36 0 15.59-5.94 17.37-14.11l5.48-25.13c2.19-10.16 11.05-17.82 21.68-18.32 9.36-.44 18.29 3.65 24.16 11.09l14.73 18.66c.91 1.15 2.31 1.81 3.78 1.81h18.2c8.13 0 13.63-8.63 11.23-16.59l-11.62-38.32zM152 168c0-4.42 3.58-8 8-8h192c4.42 0 8 3.58 8 8v48c0 4.42-3.58 8-8 8H160c-4.42 0-8-3.58-8-8v-48z"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
}
.why-choose-section .section-container {
    position: relative;
    z-index: 1;
}
.why-choose-section .section-title {
    color: #fff !important;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}
.why-choose-section .section-desc {
    color: #94a3b8;
    max-width: 560px;
    margin: 12px auto 0;
    font-size: 1rem;
    line-height: 1.7;
}
.why-choose-section .offers-banner__tag {
    background: rgb(232 93 4 / 0.1) !important;
    color: #fff !important;
    border: 1px solid rgb(232 93 4 / 0.4) !important;
    display: inline-block;
    margin-bottom: 14px;
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.75rem;
}
.why-slider-container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 0;
}
.why-slider-track {
    position: relative;
    height: 410px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.why-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(30px);
    z-index: 1;
}
.why-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    z-index: 2;
}
.why-featured-card {
    background: rgb(255 255 255 / 0.05);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgb(255 255 255 / 0.1);
    border-radius: 30px;
    display: flex;
    height: 100%;
    overflow: hidden;
    box-shadow: 0 40px 100px rgb(0 0 0 / 0.5);
    position: relative;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}
.why-card-image {
    flex: 0 0 58%;
    position: relative;
    overflow: hidden;
    background: rgb(0 0 0 / 0.2);
}
.why-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
    display: block;
    transition: transform 1.2s ease;
}
.why-slide.active .why-card-image img {
    transform: scale(1.05);
}
.why-card-content {
    flex: 1;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}
.why-card-meta {
    font-size: 0.85rem;
    font-weight: 700;
    color: #e85d04;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    opacity: 0.8;
}
.why-card-content h3 {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.1;
}
.why-card-content p {
    font-size: 1.1rem;
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 90%;
}
.why-card-footer {
    margin-top: auto;
}
.offers-banner__ad {
    position: relative;
    z-index: 2;
    min-width: 300px;
    max-width: 300px;
    height: 250px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 54px rgb(0 0 0 / 0.18);
    background: rgb(255 255 255 / 0.04);
    border: 1px solid rgb(255 255 255 / 0.12);
    flex-shrink: 0;
}
@media (max-width: 1060px) {
    .offers-banner {
        flex-wrap: wrap;
        padding: 40px 36px;
    }
    .offers-banner__ad {
        margin-top: 30px;
        width: 100%;
        max-width: 100%;
        min-width: auto;
        height: auto;
    }
    .offers-banner__ad ins {
        width: 100% !important;
        height: 250px !important;
    }
}
@media (max-width: 760px) {
    .offers-banner {
        flex-direction: column;
        padding: 30px 24px;
    }
    .offers-banner__ad {
        margin-top: 24px;
    }
}
.why-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: #d84c03;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}
.why-card-btn::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #e85d04;
    transition: width 0.3s ease;
}
.why-card-btn:hover {
    color: #e85d04;
    gap: 15px;
}
.why-card-btn:hover::after {
    width: 100%;
}
.why-dots {
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 10;
}
.why-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgb(255 255 255 / 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}
.why-dot.active {
    background: #e85d04;
    transform: scale(1.5);
    box-shadow: 0 0 15px rgb(232 93 4 / 0.5);
}
.why-dot:hover {
    background: rgb(255 255 255 / 0.5);
}
@media (max-width: 1200px) {
    .why-dots {
        right: 20px;
        background: rgb(0 0 0 / 0.5);
        padding: 15px 10px;
        border-radius: 30px;
        backdrop-filter: blur(5px);
    }
}
@media (max-width: 992px) {
    .why-slider-track {
        height: auto;
    }
    .why-slide {
        position: relative;
        display: none;
        inset: auto;
        transform: none;
    }
    .why-slide.active {
        display: block;
    }
    .why-featured-card {
        flex-direction: column;
        height: auto;
    }
    .why-card-image {
        flex: 0 0 220px;
    }
    .why-card-content {
        padding: 40px 30px;
    }
    .why-card-content h3 {
        font-size: 2.2rem;
    }
    .why-dots {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        flex-direction: row;
        justify-content: center;
        margin-top: 30px;
        background: none;
    }
}
@media (max-width: 576px) {
    .why-card-content h3 {
        font-size: 1.8rem;
    }
    .why-card-content p {
        font-size: 1rem;
    }
}
html[dir="rtl"] .why-card-btn::after {
    left: auto;
    right: 0;
}
html[dir="rtl"] .why-dots {
    right: auto;
    left: -60px;
}
@media (max-width: 1200px) {
    html[dir="rtl"] .why-dots {
        left: 20px;
    }
}
.pagination-wrap {
    display: flex;
    justify-content: center;
    margin: 60px 0 80px;
    padding: 0 5%;
}
.pagination {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 8px 12px;
    border-radius: 50px;
    box-shadow: 0 8px 24px rgb(15 23 42 / 0.08);
    border: 1px solid #e2e8f0;
}
.pag-num,
.pag-btn {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    color: #475569;
    transition: all 0.3s ease;
    border: none;
    background: #fff0;
    cursor: pointer;
}
.pag-num:hover,
.pag-btn:hover {
    background: #f1f5f9;
    color: #e85d04;
}
.pag-num.active {
    background: #e85d04;
    color: #fff;
    box-shadow: 0 4px 12px rgb(232 93 4 / 0.3);
}
.pag-dots {
    color: #94a3b8;
    font-weight: 700;
    padding: 0 5px;
}
.pag-btn {
    color: #e85d04;
    background: rgb(232 93 4 / 0.05);
}
.pag-btn:hover {
    background: #e85d04;
    color: #fff;
}
html[dir="rtl"] .pag-btn i {
    transform: rotate(180deg);
}
.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.faq-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-card:hover {
    border-color: rgb(232 93 4 / 0.3);
    background: #fff;
    box-shadow: 0 10px 30px rgb(15 23 42 / 0.05);
}
.faq-card.active {
    background: #fff;
    border-color: #e85d04;
    box-shadow: 0 15px 40px rgb(232 93 4 / 0.1);
}
.faq-card-header {
    width: 100%;
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    gap: 20px;
}
html[dir="rtl"] .faq-card-header {
    text-align: right;
}
.faq-card-icon {
    font-size: 1.2rem;
    color: #94a3b8;
    transition:
        transform 0.4s ease,
        color 0.3s ease;
    flex-shrink: 0;
}
.faq-card.active .faq-card-icon {
    transform: rotate(45deg);
    color: #e85d04;
}
.faq-card-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-card-inner {
    padding: 0 30px 24px;
}
.faq-card-inner p {
    color: #64748b;
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
}
@media (max-width: 768px) {
    .faq-card-header {
        padding: 20px;
        font-size: 1rem;
    }
    .faq-card-inner {
        padding: 0 20px 20px;
    }
}
.reviews-section {
    background: #f8fafc !important;
    position: relative;
    padding: 100px 0 !important;
}
.reviews-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgb(15 23 42 / 0.05), transparent);
}
.reviews-marquee-wrap {
    position: relative;
    overflow: hidden;
    padding: 40px 0;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 15%, #000 85%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, #000 15%, #000 85%, transparent 100%);
}
.reviews-marquee {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: reviewsScroll 60s linear infinite;
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.reviews-marquee:hover {
    animation-play-state: paused;
}
@keyframes reviewsScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
html[dir="rtl"] .reviews-marquee {
    animation-name: reviewsScrollRtl;
}
@keyframes reviewsScrollRtl {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(50%);
    }
}
.review-card {
    background: #fff;
    border: 1px solid rgb(15 23 42 / 0.08);
    border-radius: 24px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 350px;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 4px 20px rgb(0 0 0 / 0.03);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}
.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgb(15 23 42 / 0.08);
    border-color: rgb(232 93 4 / 0.2);
}
.review-card__quote {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 4rem;
    line-height: 1;
    color: #e85d04;
    opacity: 0.1;
    font-family: serif;
}
html[dir="rtl"] .review-card__quote {
    right: auto;
    left: 25px;
}
.review-stars {
    color: #fbbf24;
    font-size: 0.85rem;
    display: flex;
    gap: 3px;
}
.review-text {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.8;
    margin: 0;
    flex: 1;
    font-style: italic;
}
.review-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}
.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgb(15 23 42 / 0.15);
}
.review-author strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #0f172a;
}
.review-author span {
    font-size: 0.75rem;
    color: #94a3b8;
}
@media (prefers-reduced-motion: reduce) {
    .reviews-marquee {
        animation: none;
    }
}
.offers-section,
.featured-section,
.why-choose-section,
.reviews-section,
.faq-index-section {
    content-visibility: auto;
    contain-intrinsic-size: 1px 500px;
}
img {
    font-display: swap;
}
.car-card__img-wrap img {
    aspect-ratio: 400/260;
    object-fit: cover;
}
.why-card-image img {
    aspect-ratio: auto;
}
.ad-slot {
    position: relative;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border: 1px dashed #d1d5db;
    border-radius: 8px;
    overflow: hidden;
    margin: 0 auto;
}
.ad-slot__label {
    position: absolute;
    top: 4px;
    inset-inline-start: 8px;
    font-size: 5px;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    pointer-events: none;
    z-index: 1;
}
.car-card__image-ad {
    position: absolute;
    top: 12px;
    inset-inline-end: 12px;
    width: 140px;
    height: 42px;
    overflow: hidden;
    border-radius: 14px;
    background: rgb(15 23 42 / 0.72);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}
.car-card__image-ad ins {
    display: block;
    width: 100%;
    height: 100%;
}
@media (max-width: 768px) {
    .car-card__image-ad {
        width: 120px;
        height: 36px;
        top: 10px;
        inset-inline-end: 10px;
    }
}
.ad-slot--leaderboard {
    width: 100%;
    max-width: 970px;
    min-height: 90px;
}
@media (max-width: 768px) {
    .ad-slot--leaderboard {
        min-height: 50px;
    }
}
.ad-slot--rectangle {
    width: 300px;
    min-height: 250px;
}
.ad-slot--banner {
    width: 928px;
    min-height: 90px;
}
.ad-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px 5%;
    background: #fff;
}
.ad-section--between {
    background: #f8fafc;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}
.ad-carousel-wrap {
    width: 100%;
    overflow: hidden;
    background: #fff;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    padding: 14px 0;
    position: relative;
}
.ad-carousel-wrap::before,
.ad-carousel-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 2;
    pointer-events: none;
}
.ad-carousel-wrap::before {
    left: 0;
    background: linear-gradient(to right, #fff, transparent);
}
.ad-carousel-wrap::after {
    right: 0;
    background: linear-gradient(to left, #fff, transparent);
}
.ad-carousel-track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: adCarouselScroll 30s linear infinite;
}
.ad-carousel-track:hover {
    animation-play-state: paused;
}
@keyframes adCarouselScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
html[dir="rtl"] .ad-carousel-track {
    animation-name: adCarouselScrollRtl;
}
@keyframes adCarouselScrollRtl {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(50%);
    }
}
.ad-carousel-item {
    flex-shrink: 0;
    width: 300px;
    height: 100px;
    border-radius: 10px;
    background: #f1f5f9;
    border: 1px dashed #d1d5db;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: #9ca3af;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    overflow: hidden;
    position: relative;
}
.ad-carousel-item ins {
    width: 100%;
    height: 100%;
}
@media (prefers-reduced-motion: reduce) {
    .ad-carousel-track {
        animation: none;
    }
}


/* ============================================================
   ALCARZZ PREMIUM HEADER v1  (2026-07-18) — header restyle only, non-destructive
   ============================================================ */
:root{
  --hdrx-accent:#e85d04;
  --hdrx-accent-deep:#c74a02;
  --hdrx-ink:#0e1420;
  --hdrx-ink-soft:#5a6373;
  --hdrx-line:rgba(14,20,32,.09);
}
/* --- Bar: refined glass + breathing space --- */
header{
  padding:0 clamp(20px,4.5vw,60px) !important;
  min-height:74px;
  gap:24px;
  background:rgba(255,255,255,.72) !important;
  -webkit-backdrop-filter:saturate(180%) blur(20px);
  backdrop-filter:saturate(180%) blur(20px);
  border-bottom:1px solid var(--hdrx-line);
  box-shadow:none !important;
  transition:min-height .25s ease, background .25s ease, box-shadow .25s ease, border-color .25s ease;
}
header.is-stuck{
  min-height:64px;
  background:rgba(255,255,255,.85) !important;
  box-shadow:0 10px 30px -14px rgba(14,20,32,.22) !important;
}
.hdrx-sentinel{position:absolute;top:0;left:0;width:1px;height:1px;pointer-events:none;opacity:0;}
/* --- Logo --- */
.logo{margin-inline-end:clamp(18px,3vw,44px) !important;}
.logo img{max-height:46px !important;transition:max-height .25s ease,opacity .2s ease;}
header.is-stuck .logo img{max-height:42px !important;}
.logo a:hover img{opacity:.85;}
/* --- Desktop nav: typography, hover + active underline --- */
@media (min-width:769px){
  #mainNav{gap:clamp(16px,1.9vw,32px) !important;}
  nav#mainNav > a,
  .nav-dropdown__trigger{
    position:relative;
    color:var(--hdrx-ink-soft) !important;
    font-weight:500 !important;
    font-size:13.5px !important;
    letter-spacing:.02em;
    line-height:1;
    white-space:nowrap;
    padding:9px 1px !important;
    background:none;border:none;cursor:pointer;
    transition:color .2s ease;
  }
  nav#mainNav > a::after,
  .nav-dropdown__trigger::after{
    content:"";position:absolute;left:0;right:0;bottom:2px;height:2px;border-radius:2px;
    background:var(--hdrx-accent);transform:scaleX(0);transform-origin:center;
    transition:transform .2s cubic-bezier(.4,0,.2,1);
  }
  nav#mainNav > a:hover,
  .nav-dropdown__trigger:hover{color:var(--hdrx-ink) !important;}
  nav#mainNav > a:hover::after,
  .nav-dropdown:hover .nav-dropdown__trigger::after{transform:scaleX(1);}
  nav#mainNav > a.active{color:var(--hdrx-ink) !important;font-weight:600 !important;}
  nav#mainNav > a.active::after{transform:scaleX(1);}
}
/* --- Premium language segmented control --- */
.lang-switch{display:inline-flex;align-items:center;}
.lang-switch__native{position:absolute !important;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0 0 0 0);border:0;}
.lang-switch__control{
  direction:ltr;position:relative;display:inline-flex;align-items:center;gap:0;padding:3px;
  border:1px solid var(--hdrx-line);border-radius:999px;background:rgba(14,20,32,.045);
  cursor:pointer;font-family:inherit;line-height:1;
  transition:border-color .2s ease,background .2s ease;
}
.lang-switch__control:hover{border-color:rgba(232,93,4,.45);background:rgba(232,93,4,.05);}
.lang-switch__opt{
  position:relative;z-index:1;min-width:30px;text-align:center;padding:6px 12px;
  font-size:12px;font-weight:600;letter-spacing:.03em;color:var(--hdrx-ink-soft);
  border-radius:999px;transition:color .2s ease;
}
.lang-switch__opt[data-lang="ar"]{font-size:15px;padding:4px 12px;}
.lang-switch__thumb{
  position:absolute;z-index:0;top:3px;bottom:3px;left:3px;width:calc(50% - 3px);
  border-radius:999px;background:#fff;box-shadow:0 1px 4px rgba(14,20,32,.16);
  transition:transform .22s cubic-bezier(.4,0,.2,1);
}
html[lang="en"] .lang-switch__opt[data-lang="en"]{color:var(--hdrx-accent);}
html[lang="ar"] .lang-switch__opt[data-lang="ar"]{color:var(--hdrx-accent);}
html[lang="ar"] .lang-switch__thumb{transform:translateX(100%);}
/* --- Hamburger refine (non-breaking) --- */
.nav-toggle span{background:var(--hdrx-ink);height:2px;border-radius:2px;transition:all .2s ease;}
/* --- Brands mega menu: subtle premium polish --- */
.nav-dropdown__menu{border-radius:16px !important;border:1px solid var(--hdrx-line) !important;box-shadow:0 24px 60px -24px rgba(14,20,32,.35) !important;}
/* --- Mobile: compact right cluster --- */
@media (max-width:768px){
  header{gap:12px;min-height:64px;}
  .lang-switch__opt{padding:5px 10px;min-width:26px;}
}
/* --- End ALCARZZ PREMIUM HEADER v1 --- */

/* ALCARZZ HEADER FIX langBtn hide */
#langBtn.lang-switch__native{display:none !important;position:absolute !important;width:1px;height:1px;padding:0 !important;border:0 !important;margin:0;overflow:hidden;}
