:root {
    --oncu-navy: #07042b;
    --oncu-orange: #ff6b00;
    --oncu-orange-dark: #e95e00;
    --oncu-border: #e6e8ef;
    --oncu-text: #07042b;
    --oncu-muted: #667085;
    --oncu-white: #ffffff;
    --oncu-bg: #f7f8fb;
}

* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: "Inter", Arial, Helvetica, sans-serif;
    background: var(--oncu-bg);
    color: var(--oncu-text);
}

body.oncu-drawer-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select {
    font-family: inherit;
}

.oncu-header {
    width: 100%;
    background: var(--oncu-white);
    border-bottom: 1px solid var(--oncu-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.oncu-topbar {
    width: 100%;
    height: 34px;
    background: #f7f8fb;
    border-bottom: 1px solid #e6e9f0;
}

.oncu-topbar-container {
    width: 100%;
    max-width: 1760px;
    height: 34px;
    margin: 0 auto;
    padding: 0 46px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.oncu-top-links {
    display: flex;
    align-items: center;
    gap: 0;
    white-space: nowrap;
    padding-left: 8px;
}

.oncu-top-links a {
    position: relative;
    height: 34px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    color: #606879;
    font-size: 12px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.oncu-top-links a:first-child {
    padding-left: 0;
}

.oncu-top-links a:not(:last-child)::before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 1px;
    height: 12px;
    background: #dfe3eb;
    transform: translateY(-50%);
}

.oncu-top-links a::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 0;
    height: 2px;
    border-radius: 20px 20px 0 0;
    background: var(--oncu-orange);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.22s ease;
}

.oncu-top-links a:first-child::after {
    left: 0;
}

.oncu-top-links a:hover {
    color: var(--oncu-navy);
}

.oncu-top-links a:hover::after {
    transform: scaleX(1);
}

.oncu-top-right {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #697386;
    white-space: nowrap;
}

.oncu-top-text {
    font-size: 12px;
    font-weight: 600;
    color: #697386;
}

.oncu-social-links {
    display: flex;
    align-items: center;
    gap: 6px;
}

.oncu-social-links a {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    background: #f6f7fa;
    border: 1px solid #eceff5;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.oncu-social-links a:hover {
    background: var(--oncu-orange);
    color: #ffffff;
    border-color: var(--oncu-orange);
    transform: translateY(-1px);
}

.oncu-social-links svg {
    width: 13px;
    height: 13px;
    fill: currentColor;
}

.oncu-header-main {
    width: 100%;
    background: var(--oncu-white);
}

.oncu-header-container {
    width: 100%;
    max-width: 1760px;
    height: 84px;
    margin: 0 auto;
    padding: 0 46px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.oncu-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.oncu-logo img {
    width: 224px;
    height: auto;
    display: block;
}

.oncu-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-left: 4px;
    white-space: nowrap;
    min-width: 0;
}

.oncu-nav a {
    position: relative;
    height: 42px;
    padding: 0 2px;
    display: inline-flex;
    align-items: center;
    color: #050519;
    font-size: 15px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.oncu-nav a::after {
    content: "";
    position: absolute;
    left: 2px;
    right: 2px;
    bottom: 5px;
    height: 2px;
    border-radius: 20px;
    background: var(--oncu-orange);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.22s ease;
}

.oncu-nav a:hover {
    color: var(--oncu-orange);
}

.oncu-nav a:hover::after {
    transform: scaleX(1);
}

.oncu-header-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    min-width: 0;
}

.oncu-corporate-btn {
    height: 42px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: var(--oncu-orange);
    color: var(--oncu-white);
    font-size: 14px;
    font-weight: 700;
    transition: background 0.2s ease;
}

.oncu-corporate-btn:hover {
    background: var(--oncu-orange-dark);
}

.oncu-phone-group {
    height: 42px;
    display: inline-flex;
    align-items: center;
    border: 1px solid #d9dde8;
    border-radius: 9px;
    background: var(--oncu-white);
    overflow: hidden;
}

.oncu-phone-badge {
    height: 100%;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border-right: 1px solid #d9dde8;
    color: var(--oncu-navy);
    font-size: 14px;
    font-weight: 700;
}

.oncu-phone-link {
    height: 100%;
    padding: 0 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--oncu-navy);
    transition: background 0.2s ease, color 0.2s ease;
}

.oncu-phone-link:hover {
    background: #fff7f1;
    color: var(--oncu-orange-dark);
}

.oncu-phone-link svg {
    width: 17px;
    height: 17px;
    fill: var(--oncu-orange);
    flex: 0 0 auto;
}

.oncu-phone-link strong {
    font-size: 14px;
    font-weight: 700;
    color: inherit;
}

.oncu-login-btn {
    height: 42px;
    border: 1px solid #d9dde8;
    background: var(--oncu-white);
    color: #050519;
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 14px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.oncu-login-btn:hover {
    border-color: rgba(255, 107, 0, 0.38);
    background: #fff7f1;
    color: var(--oncu-orange);
}

.oncu-login-btn svg {
    width: 18px;
    height: 18px;
    fill: var(--oncu-orange);
    flex: 0 0 auto;
}

.oncu-mobile-call-btn {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid #d9dde8;
    border-radius: 9px;
    background: #ffffff;
    color: var(--oncu-orange);
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.oncu-mobile-call-btn:hover {
    border-color: rgba(255, 107, 0, 0.38);
    background: #fff7f1;
    color: var(--oncu-orange-dark);
}

.oncu-mobile-call-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.oncu-menu-btn,
.oncu-mobile-menu-btn {
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding: 0;
    flex: 0 0 auto;
}

.oncu-mobile-menu-btn {
    display: none;
}

.oncu-menu-btn span,
.oncu-mobile-menu-btn span {
    width: 24px;
    height: 3px;
    display: block;
    background: #050519;
    border-radius: 20px;
    transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.oncu-menu-btn:hover span,
.oncu-mobile-menu-btn:hover span {
    background: var(--oncu-orange);
}

.oncu-menu-btn.is-active span:nth-child(1),
.oncu-mobile-menu-btn.is-active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.oncu-menu-btn.is-active span:nth-child(2),
.oncu-mobile-menu-btn.is-active span:nth-child(2) {
    opacity: 0;
}

.oncu-menu-btn.is-active span:nth-child(3),
.oncu-mobile-menu-btn.is-active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.oncu-drawer-overlay {
    position: fixed;
    inset: 0;
    z-index: 1090;
    background: rgba(7, 4, 43, 0.45);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.24s ease, visibility 0.24s ease;
}

.oncu-drawer-overlay.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.oncu-info-drawer,
.oncu-mobile-drawer {
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 1110;
    width: min(420px, calc(100vw - 28px));
    background: #ffffff;
    color: #07042b;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.28s ease, opacity 0.28s ease, visibility 0.28s ease;
}

.oncu-info-drawer {
    right: 0;
    border-radius: 24px 0 0 24px;
    transform: translateX(100%);
    display: flex;
    flex-direction: column;
}

.oncu-mobile-drawer {
    left: 0;
    border-radius: 0 24px 24px 0;
    transform: translateX(-100%);
    display: flex;
    flex-direction: column;
}

.oncu-info-drawer.is-open,
.oncu-mobile-drawer.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
}

.oncu-info-drawer-head,
.oncu-mobile-drawer-head {
    min-height: 92px;
    padding: 20px 22px;
    border-bottom: 1px solid #edf0f6;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.oncu-info-drawer-logo,
.oncu-mobile-drawer-logo {
    width: 178px;
    min-height: 58px;
    border-radius: 15px;
    background: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
}

.oncu-info-drawer-logo img,
.oncu-mobile-drawer-logo img {
    width: 164px;
    height: auto;
    display: block;
}

.oncu-drawer-close {
    width: 42px;
    height: 42px;
    border: 1px solid #e2e7ef;
    border-radius: 999px;
    background: #ffffff;
    color: #07042b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.oncu-drawer-close:hover {
    background: var(--oncu-orange);
    border-color: var(--oncu-orange);
    color: #ffffff;
}

.oncu-drawer-close svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.oncu-info-drawer-body {
    padding: 28px 24px 24px;
    flex: 1;
    overflow: hidden;
}

.oncu-drawer-kicker {
    display: inline-flex;
    color: var(--oncu-orange);
    font-size: 11px;
    line-height: 1;
    font-weight: 780;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.oncu-info-drawer-body h3 {
    margin: 14px 0 0;
    color: #07042b;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 740;
    letter-spacing: -0.75px;
}

.oncu-info-drawer-body p {
    margin: 13px 0 0;
    color: #667085;
    font-size: 14px;
    line-height: 1.65;
    font-weight: 450;
}

.oncu-drawer-contact-list {
    margin-top: 26px;
    display: grid;
    gap: 12px;
}

.oncu-drawer-contact-item {
    min-height: 74px;
    padding: 14px;
    border: 1px solid #e4e8f1;
    border-radius: 16px;
    background: #ffffff;
    display: flex;
    align-items: center;
    gap: 13px;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.oncu-drawer-contact-item:hover {
    border-color: rgba(255, 107, 0, 0.38);
    background: #fffaf6;
}

.oncu-drawer-contact-item > span {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: #fff2e9;
    color: var(--oncu-orange);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.oncu-drawer-contact-item svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.oncu-drawer-contact-item small {
    display: block;
    margin-bottom: 6px;
    color: #8790a2;
    font-size: 11.5px;
    line-height: 1;
    font-weight: 600;
}

.oncu-drawer-contact-item strong {
    display: block;
    color: #111629;
    font-size: 15px;
    line-height: 1.25;
    font-weight: 720;
    word-break: break-word;
}

.oncu-drawer-social {
    margin-top: 26px;
    display: flex;
    align-items: center;
    gap: 9px;
}

.oncu-drawer-social a {
    width: 42px;
    height: 42px;
    border: 1px solid #e4e8f1;
    border-radius: 999px;
    background: #ffffff;
    color: #07042b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.oncu-drawer-social a:hover {
    background: var(--oncu-orange);
    border-color: var(--oncu-orange);
    color: #ffffff;
}

.oncu-drawer-social svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.oncu-mobile-menu-list {
    padding: 18px 18px 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 107, 0, 0.42) #f3f5f9;
}

.oncu-mobile-menu-list::-webkit-scrollbar {
    width: 6px;
}

.oncu-mobile-menu-list::-webkit-scrollbar-track {
    background: #f3f5f9;
    border-radius: 999px;
}

.oncu-mobile-menu-list::-webkit-scrollbar-thumb {
    background: rgba(255, 107, 0, 0.42);
    border-radius: 999px;
}

.oncu-mobile-menu-list a {
    min-height: 48px;
    padding: 0 16px;
    border: 1px solid #e7ebf2;
    border-radius: 14px;
    background: #ffffff;
    color: #111629;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 650;
}

.oncu-mobile-menu-list a::after {
    content: "›";
    color: var(--oncu-orange);
    font-size: 20px;
    line-height: 1;
}

.oncu-mobile-drawer-contact {
    margin-top: auto;
    padding: 18px;
    border-top: 1px solid #edf0f6;
    background: #fbfcff;
}

.oncu-mobile-drawer-contact span {
    display: block;
    color: #8790a2;
    font-size: 11.5px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.oncu-mobile-drawer-contact a {
    margin-top: 8px;
    min-height: 48px;
    border-radius: 14px;
    background: var(--oncu-orange);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 780;
}

main {
    background: #ffffff;
    padding-bottom: 0;
}

.oncu-hero-blue {
    width: 100%;
    padding: 34px 46px 116px;
    background: #ffffff;
}

.oncu-hero-shell {
    position: relative;
    width: 100%;
    max-width: 1760px;
    min-height: 470px;
    margin: 0 auto;
    padding: 44px 74px 118px;
    border-radius: 30px;
    overflow: visible;
    isolation: isolate;
    background: #08051f;
}

.oncu-hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
    border-radius: inherit;
    overflow: hidden;
    background: #08051f;
}

.oncu-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.035);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transition: opacity 1.1s ease, transform 4s ease;
}

.oncu-hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.oncu-hero-shell::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: inherit;
    background:
            linear-gradient(90deg, rgba(7, 4, 43, 0.82) 0%, rgba(7, 4, 43, 0.58) 42%, rgba(7, 4, 43, 0.18) 100%),
            linear-gradient(180deg, rgba(7, 4, 43, 0.05) 0%, rgba(7, 4, 43, 0.34) 100%);
    pointer-events: none;
}

.oncu-hero-content-new {
    position: relative;
    z-index: 3;
    max-width: 650px;
}

.oncu-hero-content-new h1 {
    margin: 0;
    color: #ffffff;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 780;
    letter-spacing: -0.7px;
}

.oncu-hero-content-new p {
    margin: 12px 0 0;
    max-width: 620px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 16px;
    line-height: 1.58;
    font-weight: 500;
}

.oncu-service-tabs {
    position: relative;
    z-index: 4;
    margin-top: 36px;
    display: flex;
    align-items: flex-end;
    gap: 14px;
}

.oncu-service-tab {
    position: relative;
    width: 118px;
    height: 82px;
    border: 0;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 650;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.oncu-service-tab span {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.oncu-service-tab svg {
    width: 27px;
    height: 27px;
    fill: currentColor;
    display: block;
}

.oncu-service-tab.is-active {
    background: #ffffff;
    color: var(--oncu-orange);
}

.oncu-service-tab.is-active::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 22px;
    height: 22px;
    background: #ffffff;
    border-radius: 0 0 7px 0;
    transform: translateX(-50%) rotate(45deg);
}

.oncu-service-tab:not(.is-active):hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
}

.oncu-search-panel {
    position: absolute;
    left: 50%;
    bottom: -68px;
    transform: translateX(-50%);
    z-index: 20;
    width: calc(100% - 80px);
    max-width: 1660px;
    margin: 0;
    background: #ffffff;
    border-radius: 22px;
    padding: 28px 34px 24px;
    box-shadow: 0 24px 58px rgba(7, 4, 43, 0.16);
}

.oncu-search-grid {
    display: grid;
    grid-template-columns: minmax(230px, 1.75fr) 1fr 0.83fr 1fr 0.83fr 1.05fr;
    gap: 12px;
    align-items: stretch;
}

.oncu-search-grid.is-dropoff-active {
    grid-template-columns: minmax(210px, 1.28fr) minmax(210px, 1.28fr) 0.93fr 0.74fr 0.93fr 0.74fr 0.95fr;
}

.oncu-location-field,
.oncu-search-field {
    min-width: 0;
    height: 70px;
    border: 1px solid #d7dce9;
    border-radius: 14px;
    background: #ffffff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.oncu-location-field:hover,
.oncu-search-field:hover {
    border-color: rgba(255, 107, 0, 0.34);
    box-shadow: 0 8px 22px rgba(255, 107, 0, 0.06);
}

.oncu-location-field {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 18px;
}

.oncu-location-field > span {
    display: block;
    color: #101426;
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.oncu-dropoff-location-field {
    display: none;
}

.oncu-search-grid.is-dropoff-active .oncu-dropoff-location-field {
    display: flex;
}

.oncu-search-field {
    position: relative;
    display: grid;
    grid-template-columns: 21px 1fr;
    grid-template-rows: 1fr 1fr;
    column-gap: 9px;
    align-items: center;
    padding: 13px 14px;
    cursor: pointer;
    text-align: left;
}

.oncu-search-field svg {
    grid-row: 1 / 3;
    width: 19px;
    height: 19px;
    fill: #111827;
}

.oncu-search-field span {
    align-self: end;
    color: #8a90a8;
    font-size: 12px;
    line-height: 1;
    font-weight: 540;
    white-space: nowrap;
}

.oncu-search-field strong {
    align-self: start;
    margin-top: 6px;
    color: #171b2a;
    font-size: 14px;
    line-height: 1.12;
    font-weight: 730;
}

.oncu-search-submit {
    height: 70px;
    border: 0;
    border-radius: 14px;
    background: var(--oncu-orange);
    color: #ffffff;
    font-size: 15.5px;
    font-weight: 780;
    letter-spacing: -0.1px;
    cursor: pointer;
    box-shadow: 0 14px 28px rgba(255, 107, 0, 0.22);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.oncu-search-submit:hover {
    background: var(--oncu-orange-dark);
    transform: translateY(-1px);
    box-shadow: 0 18px 34px rgba(255, 107, 0, 0.3);
}

.oncu-search-options {
    margin-top: 18px;
    display: flex;
    align-items: center;
    gap: 26px;
    flex-wrap: wrap;
}

.oncu-check-option {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #101426;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.oncu-check-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.oncu-check-option span {
    width: 23px;
    height: 23px;
    border: 2px solid #c2c6d8;
    border-radius: 7px;
    background: #ffffff;
    flex: 0 0 auto;
}

.oncu-check-option input:checked + span {
    border-color: var(--oncu-orange);
    background: var(--oncu-orange);
    box-shadow: inset 0 0 0 5px #ffffff;
}

.oncu-hero-decor {
    display: none;
}

.select2-container {
    width: 100% !important;
    z-index: 9999;
}

.select2-container--default .select2-selection--single {
    height: 30px;
    border: 0;
    background: transparent;
    outline: 0;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    padding-left: 0;
    padding-right: 24px;
    color: #171b2a;
    font-size: 14px;
    line-height: 30px;
    font-weight: 720;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #8a90a8;
    font-weight: 500;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 30px;
    right: 0;
}

.select2-dropdown {
    border: 1px solid #e0e4ef;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(7, 4, 43, 0.14);
    z-index: 99999;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    height: 39px;
    border: 1px solid #e1e5ef;
    border-radius: 10px;
    outline: 0;
    padding: 0 12px;
    font-size: 13.5px;
}

.select2-results__option {
    padding: 10px 14px;
    font-size: 13.5px;
    font-weight: 580;
    color: #111827;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background: var(--oncu-orange);
    color: #ffffff;
}

.oncu-smart-picker {
    position: fixed;
    width: 310px;
    background: #ffffff;
    border: 1px solid #e1e5ef;
    border-radius: 14px;
    box-shadow: 0 20px 48px rgba(7, 4, 43, 0.18);
    z-index: 999999;
    display: none;
    overflow: hidden;
}

.oncu-smart-picker.is-open {
    display: block;
}

.oncu-calendar-head {
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7f8fb;
    border-bottom: 1px solid #edf0f6;
    color: #111827;
    font-size: 15px;
    font-weight: 750;
}

.oncu-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0;
    padding: 10px 10px 14px;
}

.oncu-calendar-day-name {
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666b78;
    font-size: 13px;
    font-weight: 700;
}

.oncu-calendar-day {
    height: 36px;
    border: 0;
    border-radius: 8px;
    background: #ffffff;
    color: #111827;
    font-size: 14px;
    font-weight: 650;
    cursor: pointer;
}

.oncu-calendar-day:hover {
    background: #fff3eb;
    color: var(--oncu-orange);
}

.oncu-calendar-day.is-selected {
    background: var(--oncu-orange);
    color: #ffffff;
}

.oncu-time-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 14px;
}

.oncu-time-option {
    height: 38px;
    border: 0;
    border-radius: 10px;
    background: #f7f8fb;
    color: #111827;
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
}

.oncu-time-option:hover,
.oncu-time-option.is-selected {
    background: var(--oncu-orange);
    color: #ffffff;
}

.oncu-popular-cars {
    position: relative;
    width: 100%;
    background:
            radial-gradient(circle at 8% 4%, rgba(255, 107, 0, 0.045), transparent 28%),
            linear-gradient(180deg, #ffffff 0%, #ffffff 58%, #fbfcff 100%);
    padding: 32px 46px 40px;
}

.oncu-popular-cars::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: min(1760px, calc(100% - 92px));
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(7, 4, 43, 0.08), transparent);
    transform: translateX(-50%);
}

.oncu-popular-container {
    position: relative;
    width: 100%;
    max-width: 1760px;
    margin: 0 auto;
}

.oncu-popular-head {
    margin-bottom: 28px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
}

.oncu-popular-title {
    position: relative;
    padding-left: 18px;
}

.oncu-popular-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 3px;
    height: calc(100% - 6px);
    border-radius: 999px;
    background: var(--oncu-orange);
}

.oncu-popular-title span {
    display: inline-flex;
    margin-bottom: 9px;
    color: var(--oncu-orange);
    font-size: 11px;
    line-height: 1;
    font-weight: 760;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.oncu-popular-title h2 {
    margin: 0;
    color: #07042b;
    font-size: 30px;
    line-height: 1.15;
    font-weight: 760;
    letter-spacing: -0.85px;
}

.oncu-all-cars-btn {
    height: 43px;
    padding: 0 17px 0 19px;
    border: 1px solid #dfe5ef;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    color: #07042b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-size: 13.5px;
    font-weight: 680;
    white-space: nowrap;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.oncu-all-cars-btn:hover {
    border-color: rgba(255, 107, 0, 0.44);
    background: #fff7f1;
    color: var(--oncu-orange);
}

.oncu-all-cars-btn svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
}

.oncu-car-slider-wrap {
    position: relative;
}

.oncu-car-slider {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 72px) / 4);
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 1px 1px 4px;
    scrollbar-width: none;
}

.oncu-car-slider::-webkit-scrollbar {
    display: none;
}

.oncu-car-card {
    position: relative;
    scroll-snap-align: start;
    min-width: 0;
    min-height: 366px;
    border: 1px solid #dfe5ef;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.92);
    padding: 22px;
    display: flex;
    flex-direction: column;
    box-shadow: none;
    overflow: hidden;
    transition: border-color 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

.oncu-car-card::before {
    content: "";
    position: absolute;
    left: 22px;
    right: 22px;
    top: 0;
    height: 2px;
    border-radius: 0 0 999px 999px;
    background: transparent;
    transition: background 0.22s ease;
}

.oncu-car-card:hover {
    border-color: rgba(255, 107, 0, 0.58);
    background: #ffffff;
    transform: translateY(-2px);
}

.oncu-car-card:hover::before {
    background: var(--oncu-orange);
}

.oncu-car-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

.oncu-car-card-top h3 {
    margin: 0;
    color: #111629;
    font-size: 15px;
    line-height: 1.28;
    font-weight: 710;
    letter-spacing: -0.28px;
    text-transform: uppercase;
}

.oncu-car-card-top p {
    margin: 7px 0 0;
    color: #727b8d;
    font-size: 13.5px;
    line-height: 1.36;
    font-weight: 450;
}

.oncu-car-card-top p span {
    position: relative;
    margin-left: 8px;
    padding-left: 11px;
    color: #222938;
    font-weight: 620;
}

.oncu-car-card-top p span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 1px;
    height: 12px;
    background: #d7dde8;
    transform: translateY(-50%);
}

.oncu-car-tags {
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 7px;
    flex-wrap: wrap;
}

.oncu-car-tags span {
    height: 30px;
    padding: 0 11px;
    border-radius: 999px;
    background: #f4f6fa;
    color: #3e4656;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    line-height: 1;
    font-weight: 620;
}

.oncu-car-image {
    height: 154px;
    margin: 18px 0 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.oncu-car-image img {
    width: 100%;
    max-width: 318px;
    max-height: 150px;
    display: block;
    object-fit: contain;
    filter: saturate(1.02) contrast(1.01);
}

.oncu-car-card-bottom {
    margin-top: auto;
    padding-top: 17px;
    border-top: 1px solid #edf0f5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.oncu-car-price {
    min-width: 0;
}

.oncu-car-price span {
    display: block;
    margin-bottom: 7px;
    color: #8790a2;
    font-size: 11.5px;
    line-height: 1;
    font-weight: 560;
}

.oncu-car-price strong {
    display: block;
    color: #111629;
    font-size: 20px;
    line-height: 1;
    font-weight: 760;
    letter-spacing: -0.52px;
    white-space: nowrap;
}

.oncu-car-detail-btn {
    height: 39px;
    padding: 0 15px;
    border: 1px solid rgba(255, 107, 0, 0.4);
    border-radius: 999px;
    background: #ffffff;
    color: var(--oncu-orange);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12.6px;
    line-height: 1;
    font-weight: 720;
    white-space: nowrap;
    box-shadow: none;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.oncu-car-detail-btn:hover {
    background: var(--oncu-orange);
    border-color: var(--oncu-orange);
    color: #ffffff;
}

.oncu-car-arrow {
    position: absolute;
    top: 50%;
    z-index: 8;
    width: 44px;
    height: 44px;
    border: 1px solid #dfe5ef;
    border-radius: 999px;
    background: #ffffff;
    color: #111629;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: none;
    transform: translateY(-50%);
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.oncu-car-arrow:hover {
    background: var(--oncu-navy);
    border-color: var(--oncu-navy);
    color: #ffffff;
}

.oncu-car-arrow svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.oncu-car-arrow-prev {
    left: -22px;
}

.oncu-car-arrow-next {
    right: -22px;
}

.oncu-car-dots {
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.oncu-car-dot {
    width: 8px;
    height: 8px;
    border: 0;
    border-radius: 999px;
    background: #d6dce6;
    padding: 0;
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease;
}

.oncu-car-dot.is-active {
    width: 28px;
    background: var(--oncu-orange);
}

.oncu-about-summary {
    position: relative;
    width: 100%;
    background: linear-gradient(180deg, #fbfcff 0%, #ffffff 100%);
    padding: 0 46px 42px;
}

.oncu-about-container {
    width: 100%;
    max-width: 1760px;
    margin: 0 auto;
}

.oncu-about-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.22fr) minmax(360px, 0.78fr);
    gap: 36px;
    border: 1px solid #e1e6ef;
    border-radius: 26px;
    background:
            radial-gradient(circle at 7% 12%, rgba(255, 107, 0, 0.055), transparent 30%),
            linear-gradient(135deg, #ffffff 0%, #ffffff 58%, #fffaf6 100%);
    padding: 40px 44px;
    overflow: hidden;
}

.oncu-about-card::before {
    content: "";
    position: absolute;
    left: 42px;
    right: 42px;
    top: 0;
    height: 2px;
    border-radius: 0 0 999px 999px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 0, 0.72), transparent);
}

.oncu-about-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
}

.oncu-section-kicker {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--oncu-orange);
    font-size: 10.8px;
    line-height: 1;
    font-weight: 760;
    letter-spacing: 1.45px;
    text-transform: uppercase;
}

.oncu-about-content h2 {
    margin: 0;
    max-width: 720px;
    color: #07042b;
    font-size: 28px;
    line-height: 1.24;
    font-weight: 680;
    letter-spacing: -0.65px;
}

.oncu-about-content p {
    margin: 18px 0 0;
    max-width: 810px;
    color: #667085;
    font-size: 14.5px;
    line-height: 1.88;
    font-weight: 430;
}

.oncu-about-highlights {
    margin-top: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.oncu-about-highlights span {
    min-height: 34px;
    padding: 0 13px;
    border: 1px solid #e5eaf2;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    color: #343b4c;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12.2px;
    line-height: 1;
    font-weight: 620;
}

.oncu-about-actions {
    margin-top: 26px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.oncu-about-primary-btn,
.oncu-about-phone-btn {
    height: 44px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13.5px;
    line-height: 1;
    font-weight: 720;
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.oncu-about-primary-btn {
    padding: 0 20px;
    border: 1px solid var(--oncu-orange);
    background: var(--oncu-orange);
    color: #ffffff;
}

.oncu-about-primary-btn:hover {
    background: var(--oncu-orange-dark);
    border-color: var(--oncu-orange-dark);
    transform: translateY(-1px);
}

.oncu-about-phone-btn {
    gap: 9px;
    padding: 0 20px;
    border: 1px solid #dfe5ef;
    background: #ffffff;
    color: #07042b;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -0.25px;
}

.oncu-about-phone-btn:hover {
    border-color: rgba(255, 107, 0, 0.42);
    background: #fff7f1;
    color: var(--oncu-orange);
    transform: translateY(-1px);
}

.oncu-about-phone-btn svg {
    width: 17px;
    height: 17px;
    fill: currentColor;
}

.oncu-about-note {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: stretch;
}

.oncu-about-note-inner {
    width: 100%;
    min-height: 100%;
    border: 1px solid rgba(7, 4, 43, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.76);
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.oncu-about-note-top {
    margin-bottom: 24px;
    min-height: 78px;
    padding: 14px 16px;
    border: 1px solid #edf0f6;
    border-radius: 18px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.oncu-about-note-top img {
    width: 156px;
    height: auto;
    display: block;
}

.oncu-about-note-top a {
    color: #07042b;
    font-size: 18px;
    line-height: 1;
    font-weight: 850;
    letter-spacing: -0.55px;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.oncu-about-note-top a:hover {
    color: var(--oncu-orange);
}

.oncu-about-note-inner span {
    width: fit-content;
    height: 31px;
    padding: 0 12px;
    border-radius: 999px;
    background: #fff2e9;
    color: var(--oncu-orange);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    line-height: 1;
    font-weight: 760;
}

.oncu-about-note-inner strong {
    display: block;
    margin-top: 18px;
    color: #07042b;
    font-size: 19px;
    line-height: 1.36;
    font-weight: 660;
    letter-spacing: -0.38px;
}

.oncu-about-note-inner p {
    margin: 12px 0 0;
    color: #697386;
    font-size: 14px;
    line-height: 1.68;
    font-weight: 450;
}

.oncu-counter-grid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid #e1e6ef;
    border-radius: 22px;
    background: #ffffff;
    overflow: hidden;
}

.oncu-counter-item {
    min-height: 116px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid #e8ecf3;
}

.oncu-counter-item:last-child {
    border-right: 0;
}

.oncu-counter-item strong {
    display: flex;
    align-items: flex-start;
    color: #07042b;
    font-size: 34px;
    line-height: 1;
    font-weight: 760;
    letter-spacing: -1px;
}

.oncu-counter-item strong em {
    margin-left: 4px;
    color: var(--oncu-orange);
    font-size: 22px;
    line-height: 1;
    font-style: normal;
    font-weight: 780;
}

.oncu-counter-item p {
    margin: 11px 0 0;
    color: #697386;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 580;
}

.oncu-footer {
    position: relative;
    width: 100%;
    background: #07042b;
    color: #ffffff;
    overflow: hidden;
}

.oncu-footer::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: min(1760px, calc(100% - 92px));
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
    transform: translateX(-50%);
}

.oncu-footer::after {
    content: "";
    position: absolute;
    right: -180px;
    top: -240px;
    width: 520px;
    height: 520px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.16), transparent 62%);
    pointer-events: none;
}

.oncu-footer-container {
    width: 100%;
    max-width: 1760px;
    margin: 0 auto;
}

.oncu-footer-cta {
    position: relative;
    z-index: 2;
    padding: 28px 46px 0;
}

.oncu-footer-cta .oncu-footer-container {
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 26px;
    background:
            linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
            radial-gradient(circle at 86% 18%, rgba(255, 107, 0, 0.22), transparent 32%);
    padding: 30px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.oncu-footer-cta-content span {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--oncu-orange);
    font-size: 11px;
    line-height: 1;
    font-weight: 780;
    letter-spacing: 1.25px;
    text-transform: uppercase;
}

.oncu-footer-cta-content h2 {
    margin: 0;
    max-width: 760px;
    color: #ffffff;
    font-size: 30px;
    line-height: 1.16;
    font-weight: 760;
    letter-spacing: -0.9px;
}

.oncu-footer-cta-content p {
    margin: 11px 0 0;
    max-width: 640px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 14.5px;
    line-height: 1.6;
    font-weight: 430;
}

.oncu-footer-cta-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}

.oncu-footer-call-btn,
.oncu-footer-outline-btn {
    height: 44px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13.5px;
    line-height: 1;
    font-weight: 720;
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.oncu-footer-call-btn {
    gap: 8px;
    padding: 0 19px;
    border: 1px solid var(--oncu-orange);
    background: var(--oncu-orange);
    color: #ffffff;
}

.oncu-footer-call-btn:hover {
    background: var(--oncu-orange-dark);
    border-color: var(--oncu-orange-dark);
    transform: translateY(-1px);
}

.oncu-footer-call-btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.oncu-footer-outline-btn {
    padding: 0 19px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.84);
}

.oncu-footer-outline-btn:hover {
    border-color: rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.09);
    color: #ffffff;
    transform: translateY(-1px);
}

.oncu-footer-main {
    position: relative;
    z-index: 2;
    padding: 42px 46px 42px;
}

.oncu-footer-grid {
    display: grid;
    grid-template-columns: minmax(320px, 1.45fr) minmax(180px, 0.65fr) minmax(230px, 0.8fr) minmax(360px, 1.1fr);
    gap: 46px;
}

.oncu-footer-brand {
    max-width: 470px;
}

.oncu-footer-logo {
    width: 218px;
    min-height: 70px;
    padding: 12px 16px;
    border-radius: 18px;
    background: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.oncu-footer-logo img {
    width: 186px;
    height: auto;
    display: block;
}

.oncu-footer-brand p {
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.63);
    font-size: 14px;
    line-height: 1.78;
    font-weight: 430;
}

.oncu-footer-social {
    margin-top: 22px;
    display: flex;
    align-items: center;
    gap: 9px;
}

.oncu-footer-social a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.045);
    color: rgba(255, 255, 255, 0.74);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.oncu-footer-social a:hover {
    background: var(--oncu-orange);
    border-color: var(--oncu-orange);
    color: #ffffff;
    transform: translateY(-1px);
}

.oncu-footer-social svg {
    width: 17px;
    height: 17px;
    fill: currentColor;
}

.oncu-footer-menu h3,
.oncu-footer-info h3 {
    position: relative;
    margin: 0 0 20px;
    padding-bottom: 13px;
    color: #ffffff;
    font-size: 14px;
    line-height: 1;
    font-weight: 720;
    letter-spacing: -0.15px;
}

.oncu-footer-menu h3::after,
.oncu-footer-info h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 28px;
    height: 2px;
    border-radius: 999px;
    background: var(--oncu-orange);
}

.oncu-footer-menu nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.oncu-footer-menu nav a {
    width: fit-content;
    color: rgba(255, 255, 255, 0.62);
    font-size: 13.5px;
    line-height: 1.25;
    font-weight: 430;
    transition: color 0.2s ease, transform 0.2s ease;
}

.oncu-footer-menu nav a:hover {
    color: var(--oncu-orange);
    transform: translateX(3px);
}

.oncu-footer-info-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.oncu-footer-info-item {
    min-width: 0;
    min-height: 58px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.085);
    display: flex;
    align-items: center;
    gap: 13px;
    color: #ffffff;
}

.oncu-footer-info-item:first-child {
    padding-top: 0;
}

.oncu-footer-info-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.oncu-footer-info-item > span {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: rgba(255, 107, 0, 0.12);
    color: var(--oncu-orange);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.oncu-footer-info-item svg {
    width: 17px;
    height: 17px;
    fill: currentColor;
}

.oncu-footer-info-item div {
    min-width: 0;
}

.oncu-footer-info-item small {
    display: block;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.44);
    font-size: 11.2px;
    line-height: 1;
    font-weight: 560;
}

.oncu-footer-info-item strong {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13.5px;
    line-height: 1.28;
    font-weight: 600;
    word-break: break-word;
}

a.oncu-footer-info-item:hover strong {
    color: var(--oncu-orange);
}

.oncu-footer-bottom {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.085);
    padding: 16px 46px;
}

.oncu-footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.oncu-footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.48);
    font-size: 12.8px;
    line-height: 1.4;
    font-weight: 430;
}

.oncu-footer-legal {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.oncu-footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12.8px;
    line-height: 1.4;
    font-weight: 450;
    transition: color 0.2s ease;
}

.oncu-footer-legal a:hover {
    color: var(--oncu-orange);
}

.oncu-whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 160;
    width: 58px;
    height: 58px;
    border-radius: 999px;
    background: #25d366;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 18px 38px rgba(37, 211, 102, 0.32);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.oncu-whatsapp-float:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 44px rgba(37, 211, 102, 0.42);
}

.oncu-whatsapp-float svg {
    width: 31px;
    height: 31px;
    fill: currentColor;
}

@media (max-width: 1600px) {
    .oncu-topbar-container,
    .oncu-header-container {
        padding-left: 38px;
        padding-right: 38px;
    }

    .oncu-header-container {
        height: 82px;
        gap: 22px;
    }

    .oncu-logo img {
        width: 210px;
    }

    .oncu-nav {
        gap: 18px;
    }

    .oncu-nav a {
        font-size: 14px;
    }

    .oncu-corporate-btn,
    .oncu-phone-group,
    .oncu-login-btn {
        height: 40px;
    }

    .oncu-corporate-btn {
        padding: 0 15px;
        font-size: 13px;
    }

    .oncu-phone-badge {
        padding: 0 10px;
        font-size: 13px;
    }

    .oncu-phone-link {
        padding: 0 10px;
    }

    .oncu-phone-link strong {
        font-size: 13px;
    }

    .oncu-login-btn {
        padding: 0 12px;
        font-size: 13px;
    }
}

@media (max-width: 1500px) {
    .oncu-hero-blue {
        padding-bottom: 112px;
    }

    .oncu-hero-shell {
        min-height: 450px;
        padding-left: 58px;
        padding-right: 58px;
        padding-bottom: 112px;
    }

    .oncu-search-panel {
        width: calc(100% - 50px);
        max-width: none;
        bottom: -64px;
        padding-left: 26px;
        padding-right: 26px;
    }

    .oncu-search-grid.is-dropoff-active {
        grid-template-columns: minmax(190px, 1.2fr) minmax(190px, 1.2fr) 0.9fr 0.72fr 0.9fr 0.72fr 0.88fr;
    }

    .oncu-search-field strong {
        font-size: 13.5px;
    }

    .oncu-search-submit {
        font-size: 14.5px;
    }

    .oncu-car-slider {
        grid-auto-columns: calc((100% - 60px) / 4);
        gap: 20px;
    }

    .oncu-car-card {
        min-height: 354px;
        padding: 20px;
    }

    .oncu-car-card::before {
        left: 20px;
        right: 20px;
    }

    .oncu-car-card-top h3 {
        font-size: 14px;
    }

    .oncu-car-image img {
        max-width: 292px;
    }

    .oncu-car-price strong {
        font-size: 18px;
    }

    .oncu-car-detail-btn {
        padding: 0 13px;
        font-size: 12px;
    }

    .oncu-about-content h2 {
        font-size: 28px;
    }

    .oncu-about-note-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .oncu-about-note-top a {
        font-size: 17px;
    }
}

@media (max-width: 1360px) {
    .oncu-topbar-container,
    .oncu-header-container {
        padding-left: 28px;
        padding-right: 28px;
    }

    .oncu-header-container {
        gap: 16px;
    }

    .oncu-logo img {
        width: 198px;
    }

    .oncu-nav {
        gap: 14px;
    }

    .oncu-nav a {
        font-size: 13px;
    }

    .oncu-header-actions {
        gap: 8px;
    }

    .oncu-corporate-btn {
        padding: 0 11px;
        font-size: 12px;
    }

    .oncu-phone-badge {
        padding: 0 8px;
        font-size: 12px;
    }

    .oncu-phone-link {
        gap: 6px;
        padding: 0 8px;
    }

    .oncu-phone-link strong {
        font-size: 12px;
    }

    .oncu-login-btn {
        padding: 0 9px;
        font-size: 12px;
    }

    .oncu-search-grid,
    .oncu-search-grid.is-dropoff-active {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .oncu-location-field,
    .oncu-search-grid.is-dropoff-active .oncu-location-field {
        grid-column: span 1;
    }

    .oncu-search-submit {
        grid-column: span 1;
    }
}

@media (max-width: 1180px) {
    .oncu-nav {
        display: none;
    }

    .oncu-header-container {
        height: 76px;
    }

    .oncu-logo img {
        width: 190px;
    }

    .oncu-hero-blue {
        padding-bottom: 96px;
    }

    .oncu-hero-shell {
        min-height: 430px;
        padding-bottom: 108px;
    }

    .oncu-search-panel {
        width: calc(100% - 40px);
        bottom: -58px;
    }

    .oncu-search-grid,
    .oncu-search-grid.is-dropoff-active {
        grid-template-columns: 1fr 1fr;
    }

    .oncu-location-field,
    .oncu-search-submit,
    .oncu-search-grid.is-dropoff-active .oncu-location-field,
    .oncu-search-grid.is-dropoff-active .oncu-search-submit {
        grid-column: span 2;
    }

    .oncu-popular-cars {
        padding-left: 28px;
        padding-right: 28px;
    }

    .oncu-popular-cars::before {
        width: calc(100% - 56px);
    }

    .oncu-car-slider {
        grid-auto-columns: calc((100% - 22px) / 2);
        gap: 22px;
    }

    .oncu-car-arrow-prev {
        left: -15px;
    }

    .oncu-car-arrow-next {
        right: -15px;
    }

    .oncu-about-summary {
        padding-left: 28px;
        padding-right: 28px;
    }

    .oncu-about-card {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 34px;
    }

    .oncu-about-note-inner {
        min-height: 210px;
    }

    .oncu-about-note-top {
        flex-direction: row;
        align-items: center;
    }

    .oncu-counter-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .oncu-counter-item:nth-child(2) {
        border-right: 0;
    }

    .oncu-counter-item:nth-child(1),
    .oncu-counter-item:nth-child(2) {
        border-bottom: 1px solid #e8ecf3;
    }

    .oncu-footer::before {
        width: calc(100% - 56px);
    }

    .oncu-footer-cta,
    .oncu-footer-main,
    .oncu-footer-bottom {
        padding-left: 28px;
        padding-right: 28px;
    }

    .oncu-footer-cta .oncu-footer-container {
        align-items: flex-start;
        flex-direction: column;
    }

    .oncu-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 38px 34px;
    }
}

@media (max-width: 900px) {
    .oncu-topbar {
        height: auto;
    }

    .oncu-topbar-container {
        height: auto;
        min-height: 34px;
        padding: 7px 18px;
        flex-wrap: wrap;
    }

    .oncu-top-links {
        flex-wrap: wrap;
        padding-left: 0;
    }

    .oncu-top-links a {
        height: 24px;
        padding: 0 10px;
        font-size: 11px;
    }

    .oncu-top-links a:first-child {
        padding-left: 0;
    }

    .oncu-top-links a:not(:last-child)::before {
        height: 10px;
    }

    .oncu-top-links a::after {
        left: 10px;
        right: 10px;
    }

    .oncu-top-links a:first-child::after {
        left: 0;
    }

    .oncu-top-right {
        margin-left: auto;
    }

    .oncu-top-text {
        font-size: 11px;
    }

    .oncu-header-container {
        height: 72px;
        padding: 0 18px;
        gap: 12px;
    }

    .oncu-mobile-menu-btn {
        display: inline-flex;
        order: 1;
    }

    .oncu-logo {
        order: 2;
    }

    .oncu-logo img {
        width: 172px;
    }

    .oncu-header-actions {
        order: 3;
    }

    .oncu-corporate-btn,
    .oncu-phone-group {
        display: none;
    }

    .oncu-mobile-call-btn {
        display: inline-flex;
        width: 42px;
        height: 42px;
        flex: 0 0 auto;
    }

    .oncu-login-btn span {
        font-size: 14px;
    }

    .oncu-info-drawer,
    .oncu-mobile-drawer {
        width: min(390px, calc(100vw - 22px));
    }

    .oncu-hero-blue {
        padding: 18px 18px 54px;
    }

    .oncu-hero-shell {
        min-height: auto;
        padding: 30px 20px 0;
        border-radius: 22px;
    }

    .oncu-hero-content-new h1 {
        font-size: 24px;
    }

    .oncu-hero-content-new p {
        font-size: 13.5px;
    }

    .oncu-service-tabs {
        margin-top: 26px;
        gap: 10px;
        overflow-x: auto;
        padding-bottom: 6px;
    }

    .oncu-service-tabs::-webkit-scrollbar {
        display: none;
    }

    .oncu-service-tab {
        min-width: 96px;
        height: 72px;
        font-size: 12px;
    }

    .oncu-search-panel {
        position: relative;
        left: auto;
        bottom: auto;
        transform: none;
        width: 100%;
        margin: 24px auto -34px;
        padding: 16px;
    }

    .oncu-search-grid,
    .oncu-search-grid.is-dropoff-active {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .oncu-location-field,
    .oncu-search-submit,
    .oncu-search-grid.is-dropoff-active .oncu-location-field,
    .oncu-search-grid.is-dropoff-active .oncu-search-submit {
        grid-column: auto;
    }

    .oncu-location-field,
    .oncu-search-field,
    .oncu-search-submit {
        height: 70px;
    }

    .oncu-smart-picker {
        width: calc(100vw - 32px);
        left: 16px !important;
    }

    .oncu-popular-cars {
        padding: 42px 18px 36px;
    }

    .oncu-popular-cars::before {
        width: calc(100% - 36px);
    }

    .oncu-popular-head {
        margin-bottom: 24px;
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
    }

    .oncu-popular-title h2 {
        font-size: 25px;
    }

    .oncu-all-cars-btn {
        height: 40px;
        font-size: 13px;
    }

    .oncu-car-slider {
        grid-auto-columns: 100%;
        gap: 16px;
    }

    .oncu-car-card {
        min-height: 352px;
        padding: 18px;
        border-radius: 16px;
    }

    .oncu-car-card::before {
        left: 18px;
        right: 18px;
    }

    .oncu-car-image {
        height: 148px;
    }

    .oncu-car-card-bottom {
        align-items: stretch;
        flex-direction: column;
        gap: 14px;
    }

    .oncu-car-detail-btn {
        width: 100%;
    }

    .oncu-car-arrow {
        width: 42px;
        height: 42px;
    }

    .oncu-car-arrow-prev {
        left: -8px;
    }

    .oncu-car-arrow-next {
        right: -8px;
    }

    .oncu-about-summary {
        padding: 0 18px 36px;
    }

    .oncu-about-card {
        border-radius: 22px;
        padding: 28px 22px;
    }

    .oncu-about-card::before {
        left: 22px;
        right: 22px;
    }

    .oncu-about-content h2 {
        font-size: 23px;
        line-height: 1.25;
        letter-spacing: -0.48px;
    }

    .oncu-about-content p {
        font-size: 13.8px;
        line-height: 1.82;
    }

    .oncu-about-note-inner {
        min-height: auto;
        padding: 22px;
        border-radius: 18px;
    }

    .oncu-about-note-top {
        min-height: auto;
        margin-bottom: 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .oncu-about-note-top img {
        width: 148px;
    }

    .oncu-about-note-top a {
        font-size: 18px;
    }

    .oncu-about-note-inner strong {
        font-size: 19px;
    }

    .oncu-counter-grid {
        margin-top: 18px;
        border-radius: 18px;
        grid-template-columns: repeat(2, 1fr);
    }

    .oncu-counter-item {
        min-height: 108px;
        padding: 22px 18px;
    }

    .oncu-counter-item strong {
        font-size: 28px;
    }

    .oncu-counter-item strong em {
        font-size: 18px;
    }

    .oncu-counter-item p {
        font-size: 13px;
    }

    .oncu-footer::before {
        width: calc(100% - 36px);
    }

    .oncu-footer-cta {
        padding: 28px 18px 0;
    }

    .oncu-footer-cta .oncu-footer-container {
        border-radius: 22px;
        padding: 26px 22px;
    }

    .oncu-footer-cta-content h2 {
        font-size: 24px;
        letter-spacing: -0.65px;
    }

    .oncu-footer-cta-actions {
        width: 100%;
        align-items: stretch;
        flex-direction: column;
    }

    .oncu-footer-call-btn,
    .oncu-footer-outline-btn {
        width: 100%;
    }

    .oncu-footer-main {
        padding: 38px 18px 38px;
    }

    .oncu-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 34px 22px;
    }

    .oncu-footer-brand,
    .oncu-footer-info {
        grid-column: 1 / -1;
    }

    .oncu-footer-brand {
        max-width: none;
    }

    .oncu-footer-logo {
        width: 202px;
        min-height: 66px;
    }

    .oncu-footer-logo img {
        width: 172px;
    }

    .oncu-footer-bottom {
        padding: 16px 18px;
    }

    .oncu-footer-bottom-inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .oncu-whatsapp-float {
        right: 16px;
        bottom: 16px;
        width: 54px;
        height: 54px;
    }

    .oncu-whatsapp-float svg {
        width: 29px;
        height: 29px;
    }
}

@media (max-width: 560px) {
    .oncu-topbar-container {
        justify-content: center;
        gap: 6px;
    }

    .oncu-top-links {
        width: 100%;
        justify-content: center;
    }

    .oncu-top-links a:first-child {
        padding-left: 10px;
    }

    .oncu-top-links a:first-child::after {
        left: 10px;
    }

    .oncu-top-right {
        width: 100%;
        justify-content: center;
        margin-left: 0;
    }

    .oncu-logo img {
        width: 148px;
    }

    .oncu-login-btn span {
        display: none;
    }

    .oncu-login-btn,
    .oncu-mobile-call-btn {
        width: 40px;
        height: 40px;
        padding: 0;
    }

    .oncu-menu-btn,
    .oncu-mobile-menu-btn {
        width: 38px;
        height: 38px;
    }

    .oncu-info-drawer,
    .oncu-mobile-drawer {
        width: min(360px, calc(100vw - 18px));
        border-radius: 0;
    }

    .oncu-info-drawer {
        border-radius: 20px 0 0 20px;
    }

    .oncu-mobile-drawer {
        border-radius: 0 20px 20px 0;
    }

    .oncu-info-drawer-head,
    .oncu-mobile-drawer-head {
        min-height: 82px;
        padding: 16px 18px;
    }

    .oncu-info-drawer-body {
        padding: 22px 18px 18px;
    }

    .oncu-info-drawer-body h3 {
        font-size: 21px;
    }

    .oncu-hero-blue {
        padding-left: 12px;
        padding-right: 12px;
    }

    .oncu-hero-shell {
        padding: 26px 14px 0;
        border-radius: 18px;
    }

    .oncu-hero-content-new h1 {
        font-size: 22px;
    }

    .oncu-hero-content-new p {
        font-size: 13px;
    }

    .oncu-popular-cars {
        padding-left: 12px;
        padding-right: 12px;
    }

    .oncu-popular-cars::before {
        width: calc(100% - 24px);
    }

    .oncu-popular-title {
        padding-left: 15px;
    }

    .oncu-car-slider {
        grid-auto-columns: 100%;
    }

    .oncu-car-tags span {
        height: 29px;
        font-size: 12px;
    }

    .oncu-about-summary {
        padding-left: 12px;
        padding-right: 12px;
    }

    .oncu-about-highlights {
        align-items: stretch;
        flex-direction: column;
    }

    .oncu-about-highlights span {
        width: 100%;
    }

    .oncu-about-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .oncu-about-primary-btn,
    .oncu-about-phone-btn {
        width: 100%;
    }

    .oncu-counter-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .oncu-counter-item {
        border-right: 1px solid #e8ecf3;
        border-bottom: 1px solid #e8ecf3;
    }

    .oncu-counter-item:nth-child(2),
    .oncu-counter-item:nth-child(4) {
        border-right: 0;
    }

    .oncu-counter-item:nth-child(3),
    .oncu-counter-item:nth-child(4) {
        border-bottom: 0;
    }

    .oncu-counter-item strong {
        font-size: 25px;
    }

    .oncu-counter-item p {
        font-size: 12.5px;
    }

    .oncu-footer::before {
        width: calc(100% - 24px);
    }

    .oncu-footer-cta,
    .oncu-footer-main,
    .oncu-footer-bottom {
        padding-left: 12px;
        padding-right: 12px;
    }

    .oncu-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 32px 18px;
    }

    .oncu-footer-brand,
    .oncu-footer-info {
        grid-column: 1 / -1;
    }

    .oncu-footer-logo {
        width: 190px;
        min-height: 62px;
    }

    .oncu-footer-logo img {
        width: 160px;
    }

    .oncu-footer-legal {
        gap: 12px;
    }
}
body {
    padding-top: 118px;
}

.oncu-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(7, 4, 43, 0.06);
}

.oncu-header-main {
    background: #ffffff;
}

@media (max-width: 1600px) {
    body {
        padding-top: 116px;
    }
}

@media (max-width: 1180px) {
    body {
        padding-top: 110px;
    }
}

@media (max-width: 900px) {
    body {
        padding-top: 106px;
    }

    .oncu-header {
        box-shadow: 0 8px 22px rgba(7, 4, 43, 0.07);
    }
}

@media (max-width: 560px) {
    body {
        padding-top: 132px;
    }
}