
:root {
    --black: #050505;
    --black-soft: #0b0b0b;
    --white: #ffffff;
    --gray: #a8a8a8;
    --border-dark: rgba(255, 255, 255, 0.1);
    --sahibinden-yellow: #ffe800;
    --container-width: 1380px;
    --transition: 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    overflow-x: hidden;
    color: var(--white);
    background: var(--black);
    font-family: "DM Sans", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body.mobile-menu-open {
    overflow: hidden;
    touch-action: none;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    padding: 0;
    border: 0;
    color: inherit;
    background: none;
    cursor: pointer;
}

img {
    display: block;
    max-width: 100%;
}

ul {
    list-style: none;
}

svg {
    display: block;
}

.container {
    width: min(calc(100% - 48px), var(--container-width));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1100;
    width: 100%;
    background: #050505;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.16);
}

.topbar {
    position: relative;
    z-index: 1002;
    min-height: 42px;
    border-bottom: 1px solid var(--border-dark);
    background: #030303;
}

.topbar-container {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.topbar-contact {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 22px;
}

.topbar-contact-item {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #b5b5b5;
    font-size: 13px;
    line-height: 1.4;
    transition: color var(--transition);
}

.topbar-contact-item:hover {
    color: var(--white);
}

.topbar-contact-item svg {
    width: 15px;
    height: 15px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.topbar-address {
    max-width: 510px;
}

.topbar-address span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.topbar-social {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 9px;
}

.topbar-social-title {
    margin-right: 4px;
    color: #888888;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.social-link {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-dark);
    color: #b5b5b5;
    transition:
            color var(--transition),
            border-color var(--transition),
            background-color var(--transition);
}

.social-link:hover {
    border-color: var(--white);
    color: var(--black);
    background: var(--white);
}

.social-link svg {
    width: 13px;
    height: 13px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
}

.social-link:nth-of-type(2) svg,
.social-link:nth-of-type(3) svg {
    fill: currentColor;
    stroke: none;
}

.social-link .youtube-play {
    fill: var(--black);
}

.sahibinden-link {
    height: 28px;
    margin-left: 3px;
    display: inline-flex;
    align-items: center;
    overflow: hidden;
    border: 1px solid rgba(255, 232, 0, 0.45);
    background: var(--sahibinden-yellow);
}

.sahibinden-icon {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #111111;
    font-size: 13px;
    font-weight: 700;
}

.sahibinden-text {
    padding: 0 9px 0 3px;
    color: #111111;
    font-size: 11px;
    font-weight: 700;
}

.navbar {
    position: relative;
    z-index: 1000;
    min-height: 88px;
    border-bottom: 1px solid var(--border-dark);
    background: rgba(5, 5, 5, 0.97);
    backdrop-filter: blur(15px);
}

.navbar-container {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
}

.site-logo {
    width: 194px;
    flex: 0 0 auto;
}

.site-logo img {
    width: 100%;
    height: 64px;
    object-fit: contain;
    object-position: left center;
}

.desktop-navigation {
    align-self: stretch;
    margin-left: auto;
}

.navigation-list {
    height: 100%;
    display: flex;
    align-items: stretch;
}

.navigation-item {
    position: relative;
    display: flex;
    align-items: stretch;
}

.navigation-link {
    position: relative;
    min-height: 87px;
    padding: 0 17px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #d0d0d0;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color var(--transition);
}

.navigation-link::after {
    content: "";
    position: absolute;
    right: 17px;
    bottom: -1px;
    left: 17px;
    height: 2px;
    transform: scaleX(0);
    background: var(--white);
    transition: transform var(--transition);
}

.navigation-link:hover,
.navigation-link.active,
.navigation-item.dropdown-open > .navigation-link {
    color: var(--white);
}

.navigation-link:hover::after,
.navigation-link.active::after,
.navigation-item.dropdown-open > .navigation-link::after {
    transform: scaleX(1);
}

.navigation-link svg {
    width: 13px;
    height: 13px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    transition: transform var(--transition);
}

.navigation-item.dropdown-open > .navigation-link svg {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    min-width: 245px;
    padding: 10px 0;
    visibility: hidden;
    opacity: 0;
    transform: translateY(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
    pointer-events: none;
    transition:
            opacity var(--transition),
            visibility var(--transition),
            transform var(--transition);
}

.navigation-item:hover > .dropdown-menu,
.navigation-item:focus-within > .dropdown-menu,
.navigation-item.dropdown-open > .dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-menu a {
    padding: 13px 20px;
    display: block;
    color: #b4b4b4;
    font-size: 13px;
    font-weight: 500;
    transition:
            color var(--transition),
            background-color var(--transition),
            padding-left var(--transition);
}

.dropdown-menu a:hover {
    padding-left: 25px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.04);
}

.navbar-actions {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 18px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 11px;
}

.header-phone-icon {
    width: 41px;
    height: 41px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.header-phone-icon svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
}

.header-phone-content {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.header-phone-content span {
    color: #999999;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.header-phone-content strong {
    font-size: 13px;
    font-weight: 600;
}

.mobile-menu-button {
    width: 44px;
    height: 44px;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.mobile-menu-button span {
    width: 20px;
    height: 1px;
    background: var(--white);
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 1098;
    visibility: hidden;
    opacity: 0;
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(5px);
    transition:
            visibility 0.35s ease,
            opacity 0.35s ease;
}

.mobile-navigation {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1099;
    width: min(390px, 92vw);
    height: 100dvh;
    visibility: hidden;
    overflow-y: auto;
    transform: translateX(100%);
    background: #080808;
    box-shadow: -24px 0 70px rgba(0, 0, 0, 0.56);
    transition:
            visibility 0.42s ease,
            transform 0.42s cubic-bezier(0.76, 0, 0.24, 1);
}

body.mobile-menu-open .mobile-menu-overlay {
    visibility: visible;
    opacity: 1;
}

body.mobile-menu-open .mobile-navigation {
    visibility: visible;
    transform: translateX(0);
}

.mobile-navigation-header {
    position: sticky;
    top: 0;
    z-index: 10;
    min-height: 84px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-dark);
    background: rgba(8, 8, 8, 0.97);
}

.mobile-logo {
    width: 170px;
}

.mobile-logo img {
    width: 100%;
    height: 54px;
    object-fit: contain;
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-dark);
}

.mobile-menu-close svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
}

.mobile-menu-list > li {
    border-bottom: 1px solid var(--border-dark);
}

.mobile-menu-link {
    width: 100%;
    min-height: 58px;
    padding: 0 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #c8c8c8;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.mobile-menu-link.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.04);
}

.mobile-dropdown-trigger svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    transition: transform var(--transition);
}

.mobile-dropdown.open .mobile-dropdown-trigger svg {
    transform: rotate(180deg);
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    background: #0d0d0d;
    transition: max-height 0.35s ease;
}

.mobile-submenu a {
    padding: 14px 22px 14px 39px;
    display: block;
    color: #a0a0a0;
    font-size: 13px;
}

.mobile-navigation-footer {
    padding: 24px 22px 28px;
    border-top: 1px solid var(--border-dark);
}

.mobile-contact-link {
    min-height: 28px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 11px;
    color: #b3b3b3;
    font-size: 12px;
}

.mobile-contact-link svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
}

.mobile-social-links {
    margin-top: 20px;
    padding-top: 18px;
    display: flex;
    gap: 9px;
    border-top: 1px solid var(--border-dark);
}

.mobile-social-links a {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-dark);
}

.mobile-social-links svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
}

.mobile-social-links a:nth-child(2) svg,
.mobile-social-links a:nth-child(3) svg {
    fill: currentColor;
    stroke: none;
}

.mobile-sahibinden {
    color: #111111;
    background: var(--sahibinden-yellow);
    font-size: 14px;
    font-weight: 700;
}

.hero {
    position: relative;
    min-height: calc(100vh - 130px);
    overflow: hidden;
    background: var(--black);
}

.hero-slider,
.hero-slide,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-slider {
    z-index: 0;
}

.hero-slide {
    visibility: hidden;
    opacity: 0;
    background-position: center;
    background-size: cover;
    transform: scale(1.045);
    transition:
            opacity 1.25s ease,
            visibility 1.25s ease,
            transform 5.8s ease;
}

.hero-slide.active {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
}

.hero-slide.has-hero-image {
    background-image: none !important;
}

.hero-slide-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    z-index: 1;
    background:
            linear-gradient(
                    90deg,
                    rgba(0, 0, 0, 0.76),
                    rgba(0, 0, 0, 0.18)
            ),
            linear-gradient(
                    180deg,
                    rgba(0, 0, 0, 0.05),
                    rgba(0, 0, 0, 0.54)
            );
}

.hero-container {
    position: relative;
    z-index: 2;
    min-height: calc(100vh - 130px);
    padding-bottom: 100px;
    display: flex;
    align-items: center;
}

.hero-content {
    width: min(620px, 62%);
    transform: translateY(-5px);
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.hero-eyebrow::before {
    content: "";
    width: 44px;
    height: 1px;
    background: var(--white);
}

.hero-content h1 {
    max-width: 570px;
    margin-top: 15px;
    font-size: clamp(31px, 2.7vw, 43px);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.hero-content h1 span {
    font-weight: 600;
}

.hero-content p {
    max-width: 600px;
    margin-top: 17px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 1.65;
}

.hero-actions {
    margin-top: 22px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-button {
    min-height: 46px;
    padding: 0 21px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border: 1px solid transparent;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-button-primary {
    color: #111111;
    background: var(--white);
}

.hero-button-secondary {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(0, 0, 0, 0.18);
}

.hero-button svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
}

.hero-info {
    position: absolute;
    right: 0;
    bottom: 30px;
    left: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.hero-info-item {
    min-height: 78px;
    padding: 16px 30px;
    display: flex;
    gap: 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.13);
    background: rgba(0, 0, 0, 0.13);
}

.hero-info-item:last-child {
    border-right: 0;
}

.hero-info-item > span {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    font-weight: 600;
}

.hero-info-item div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-info-item strong {
    font-size: 17px;
}

.hero-info-item small {
    color: rgba(255, 255, 255, 0.74);
    font-size: 13px;
}

.hero-scroll {
    position: absolute;
    top: 50%;
    right: 27px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 11px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    transform: translateY(-50%) rotate(90deg);
}

.hero-scroll svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    transform: rotate(-90deg);
}

.featured-vehicles {
    padding: 38px 0 58px;
    overflow: hidden;
    color: #151515;
    background: #f8f8f7;
}

.featured-heading,
.latest-vehicles-heading,
.latest-blog-heading {
    margin-bottom: 24px;
    padding-bottom: 18px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 34px;
}

.featured-heading {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.featured-heading-content {
    max-width: 800px;
}

.featured-eyebrow,
.latest-blog-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #6f6f6f;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.featured-eyebrow::before,
.latest-blog-eyebrow::before {
    content: "";
    width: 27px;
    height: 1px;
    background: #151515;
}

.featured-heading h2,
.latest-blog-heading h2 {
    margin-top: 9px;
    font-size: clamp(30px, 2.4vw, 39px);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.featured-heading p,
.latest-blog-heading p {
    margin-top: 12px;
    color: #666666;
    font-size: 13px;
    line-height: 1.65;
}

.featured-heading p {
    position: relative;
    padding-left: 18px;
}

.featured-heading p::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 1px;
    width: 7px;
    height: 7px;
    background: #171717;
    transform: translateY(-50%) rotate(45deg);
}

.featured-heading-actions,
.latest-vehicles-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.featured-all-link,
.featured-arrow {
    min-height: 44px;
    border: 1px solid #d9d9d9;
    background: var(--white);
}

.featured-all-link {
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.featured-all-link svg,
.featured-arrow svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
}

.featured-arrows {
    display: flex;
}

.featured-arrow {
    width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.featured-arrow + .featured-arrow {
    margin-left: -1px;
}

.featured-slider,
.latest-vehicles-slider {
    width: 100%;
    overflow: hidden;
}

.featured-track,
.latest-vehicles-track {
    display: flex;
    gap: 18px;
    transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.vehicle-card {
    min-width: calc((100% - 54px) / 4);
    overflow: hidden;
    border: 1px solid #e6e6e6;
    background: var(--white);
    transition:
            border-color var(--transition),
            transform var(--transition);
}

.vehicle-card:hover {
    border-color: #d2d2d2;
    transform: translateY(-3px);
}

.vehicle-card-image {
    position: relative;
    height: 220px;
    display: block;
    overflow: hidden;
}

.vehicle-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.vehicle-card:hover .vehicle-card-image img {
    transform: scale(1.05);
}

.vehicle-price {
    position: absolute;
    right: 0;
    bottom: 0;
    min-height: 39px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    color: var(--white);
    background: #111111;
    font-size: 13px;
    font-weight: 700;
}

.vehicle-status {
    position: absolute;
    top: 13px;
    left: 13px;
    min-height: 27px;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    color: #111111;
    background: var(--white);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
}

.vehicle-card-content {
    padding: 21px;
}

.vehicle-brand {
    color: #808080;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.vehicle-card h3 {
    margin-top: 7px;
    font-size: 23px;
    font-weight: 500;
}

.vehicle-representative {
    margin-top: 17px;
    padding-bottom: 15px;
    display: flex;
    gap: 6px;
    border-bottom: 1px solid #ebebeb;
    font-size: 12px;
}

.vehicle-representative span {
    color: #858585;
}

.vehicle-features {
    margin-top: 17px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 13px 12px;
}

.vehicle-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #505050;
    font-size: 11px;
    font-weight: 600;
}

.vehicle-feature svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: #171717;
}

.vehicle-detail-link {
    min-height: 43px;
    margin-top: 20px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #dddddd;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.vehicle-detail-link svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
}

.latest-vehicles {
    padding: 52px 0 58px;
    overflow: hidden;
    color: #ffffff;
    background: #0a0a0a;
}

.latest-vehicles-heading {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.latest-vehicles-heading-content {
    max-width: 800px;
}

.latest-vehicles-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.latest-vehicles-eyebrow::before {
    content: "";
    width: 28px;
    height: 1px;
    background: rgba(255, 255, 255, 0.7);
}

.latest-vehicles-heading h2 {
    margin-top: 9px;
    color: #ffffff;
    font-size: clamp(30px, 2.5vw, 39px);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.latest-vehicles-heading p {
    margin-top: 11px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    line-height: 1.65;
}

.latest-vehicles-all {
    min-height: 44px;
    padding: 0 17px;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition:
            color var(--transition),
            border-color var(--transition),
            background-color var(--transition);
}

.latest-vehicles-all:hover {
    border-color: #ffffff;
    color: #111111;
    background: #ffffff;
}

.latest-vehicles-all svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
}

.latest-vehicles-arrows {
    display: flex;
}

.latest-vehicles-arrow {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transition:
            color var(--transition),
            border-color var(--transition),
            background-color var(--transition);
}

.latest-vehicles-arrow + .latest-vehicles-arrow {
    margin-left: -1px;
}

.latest-vehicles-arrow:hover {
    border-color: #ffffff;
    color: #111111;
    background: #ffffff;
}

.latest-vehicles-arrow svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
}

.latest-vehicle-card {
    min-width: calc((100% - 54px) / 4);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #101010;
    transition:
            border-color var(--transition),
            transform var(--transition);
}

.latest-vehicle-card:hover {
    border-color: rgba(255, 255, 255, 0.27);
    transform: translateY(-3px);
}

.latest-vehicle-image {
    position: relative;
    height: 210px;
    display: block;
    overflow: hidden;
    background: #161616;
}

.latest-vehicle-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
            linear-gradient(
                    180deg,
                    rgba(0, 0, 0, 0.03) 40%,
                    rgba(0, 0, 0, 0.5) 100%
            );
}

.latest-vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.latest-vehicle-card:hover .latest-vehicle-image img {
    transform: scale(1.05);
}

.latest-vehicle-badge {
    position: absolute;
    top: 13px;
    left: 13px;
    z-index: 2;
    min-height: 27px;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    color: #111111;
    background: rgba(255, 255, 255, 0.94);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.latest-vehicle-price {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 2;
    min-height: 38px;
    padding: 0 13px;
    display: inline-flex;
    align-items: center;
    color: #111111;
    background: #ffffff;
    font-size: 13px;
    font-weight: 700;
}

.latest-vehicle-content {
    padding: 20px;
}

.latest-vehicle-brand {
    color: rgba(255, 255, 255, 0.5);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.latest-vehicle-content h3 {
    margin-top: 7px;
    color: #ffffff;
    font-size: 21px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.latest-vehicle-features {
    margin-top: 16px;
    padding: 14px 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.latest-vehicle-features span {
    position: relative;
    padding-left: 11px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 11px;
    font-weight: 500;
}

.latest-vehicle-features span::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) rotate(45deg);
}

.latest-vehicle-link {
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.latest-vehicle-link svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    transition: transform var(--transition);
}

.latest-vehicle-link:hover svg {
    transform: translateX(4px);
}

.about-section {
    padding: 52px 0 0;
    color: #ffffff;
    background: #090909;
}

.about-section-container {
    display: grid;
    grid-template-columns:
        minmax(0, 0.88fr)
        minmax(480px, 1.12fr);
    align-items: center;
    gap: 54px;
}

.about-section-content {
    max-width: 560px;
}

.about-section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.about-section-eyebrow::before {
    content: "";
    width: 30px;
    height: 1px;
    background: rgba(255, 255, 255, 0.62);
}

.about-section-content h2 {
    margin-top: 11px;
    color: #ffffff;
    font-size: 39px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.045em;
}

.about-section-content h3 {
    max-width: 510px;
    margin-top: 19px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 22px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: -0.025em;
}

.about-section-content p {
    max-width: 530px;
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.64);
    font-size: 14px;
    line-height: 1.72;
}

.about-section-link {
    min-height: 44px;
    margin-top: 23px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    transition:
            color var(--transition),
            border-color var(--transition),
            background-color var(--transition);
}

.about-section-link:hover {
    border-color: #ffffff;
    color: #111111;
    background: #ffffff;
}

.about-section-link svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
}

.about-section-visual {
    position: relative;
    height: 350px;
    overflow: hidden;
    background: #151515;
}

.about-section-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter:
            brightness(0.8)
            contrast(1.05);
    transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-section-visual:hover img {
    transform: scale(1.035);
}

.about-section-overlay {
    position: absolute;
    inset: 0;
    background:
            linear-gradient(
                    90deg,
                    rgba(0, 0, 0, 0.15),
                    transparent
            ),
            linear-gradient(
                    180deg,
                    transparent 40%,
                    rgba(0, 0, 0, 0.72)
            );
}

.about-section-label {
    position: absolute;
    right: 26px;
    bottom: 23px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.about-section-label span {
    color: rgba(255, 255, 255, 0.62);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.about-section-label strong {
    color: #ffffff;
    font-size: 19px;
    font-weight: 500;
}

.about-section-features {
    margin-top: 38px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.about-section-feature {
    min-height: 92px;
    padding: 20px 26px;
    display: grid;
    grid-template-columns: 31px 1fr;
    align-items: start;
    gap: 13px;
    border-right: 1px solid rgba(255, 255, 255, 0.09);
}

.about-section-feature:first-child {
    padding-left: 0;
}

.about-section-feature:last-child {
    padding-right: 0;
    border-right: 0;
}

.about-section-feature > span {
    color: rgba(255, 255, 255, 0.34);
    font-size: 11px;
    font-weight: 700;
}

.about-section-feature div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.about-section-feature strong {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.35;
}

.about-section-feature small {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    line-height: 1.5;
}

.latest-blog {
    padding: 56px 0 60px;
    color: #171717;
    background:
            linear-gradient(
                    180deg,
                    #f7f7f6 0%,
                    #ffffff 100%
            );
}

.latest-blog-heading {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.latest-blog-heading-content {
    max-width: 740px;
}

.latest-blog-all {
    min-height: 44px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    border: 1px solid #d7d7d7;
    color: #171717;
    background: #ffffff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition:
            color var(--transition),
            border-color var(--transition),
            background-color var(--transition);
}

.latest-blog-all:hover {
    border-color: #111111;
    color: #ffffff;
    background: #111111;
}

.latest-blog-all svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
}

.latest-blog-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.blog-card {
    overflow: hidden;
    border: 1px solid #e5e5e5;
    background: #ffffff;
    transition:
            border-color var(--transition),
            transform var(--transition);
}

.blog-card:hover {
    border-color: #cfcfcf;
    transform: translateY(-3px);
}

.blog-card-image {
    position: relative;
    height: 215px;
    display: block;
    overflow: hidden;
    background: #dddddd;
}

.blog-card-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
            linear-gradient(
                    180deg,
                    rgba(0, 0, 0, 0.02) 40%,
                    rgba(0, 0, 0, 0.45) 100%
            );
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.045);
}

.blog-card-category {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    min-height: 28px;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    color: #111111;
    background: rgba(255, 255, 255, 0.94);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.blog-card-content {
    padding: 21px;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: #838383;
    font-size: 10px;
    font-weight: 600;
}

.blog-card h3 {
    margin-top: 13px;
    color: #171717;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: -0.025em;
}

.blog-card h3 a {
    transition: color var(--transition);
}

.blog-card h3 a:hover {
    color: #555555;
}

.blog-card-content > p {
    margin-top: 11px;
    color: #666666;
    font-size: 12px;
    line-height: 1.65;
}

.blog-card-link {
    margin-top: 18px;
    padding-top: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #e8e8e8;
    color: #202020;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.blog-card-link svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    transition: transform var(--transition);
}

.blog-card-link:hover svg {
    transform: translateX(4px);
}

.sales-banner-section {
    padding: 0 0 24px;
    color: #ffffff;
    background: #ffffff;
}

.sales-banner-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.sales-banner {
    position: relative;
    min-height: 255px;
    overflow: hidden;
    background: #111111;
}

.sales-banner-background {
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    transform: scale(1.01);
    transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.sales-banner:hover .sales-banner-background {
    transform: scale(1.045);
}

.sales-banner-sell .sales-banner-background {
    background-image: url("https://images.unsplash.com/photo-1504215680853-026ed2a45def?auto=format&fit=crop&w=1500&q=90");
}

.sales-banner-consignment .sales-banner-background {
    background-image: url("https://images.unsplash.com/photo-1542282088-fe8426682b8f?auto=format&fit=crop&w=1500&q=90");
}

.sales-banner-overlay {
    position: absolute;
    inset: 0;
    background:
            linear-gradient(
                    90deg,
                    rgba(0, 0, 0, 0.84) 0%,
                    rgba(0, 0, 0, 0.6) 48%,
                    rgba(0, 0, 0, 0.18) 100%
            ),
            linear-gradient(
                    180deg,
                    rgba(0, 0, 0, 0.08) 30%,
                    rgba(0, 0, 0, 0.55) 100%
            );
}

.sales-banner-content {
    position: relative;
    z-index: 2;
    min-height: 255px;
    padding: 27px 30px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

.sales-banner-number {
    position: absolute;
    top: 18px;
    right: 21px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.sales-banner-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.sales-banner-eyebrow::before {
    content: "";
    width: 29px;
    height: 1px;
    background: rgba(255, 255, 255, 0.65);
}

.sales-banner h2 {
    max-width: 470px;
    margin-top: 10px;
    color: #ffffff;
    font-size: clamp(26px, 2.1vw, 34px);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.sales-banner h2 span {
    display: block;
    color: rgba(255, 255, 255, 0.72);
}

.sales-banner p {
    max-width: 430px;
    margin-top: 11px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 12px;
    line-height: 1.6;
}

.sales-banner-button {
    min-height: 41px;
    margin-top: 17px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border: 1px solid rgba(255, 255, 255, 0.33);
    color: #ffffff;
    background: rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(8px);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    transition:
            color var(--transition),
            border-color var(--transition),
            background-color var(--transition);
}

.sales-banner-button:hover {
    border-color: #ffffff;
    color: #111111;
    background: #ffffff;
}

.sales-banner-button svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    transition: transform var(--transition);
}

.sales-banner-button:hover svg {
    transform: translateX(4px);
}

.contact-showcase {
    position: relative;
    overflow: hidden;
    padding: 54px 0;
    color: #ffffff;
    background:
            linear-gradient(
                    135deg,
                    #070707 0%,
                    #0e0e0e 55%,
                    #080808 100%
            );
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.contact-showcase::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -160px;
    width: 430px;
    height: 430px;
    border: 1px solid rgba(255, 255, 255, 0.035);
    border-radius: 50%;
}

.contact-showcase-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(520px, 1.1fr);
    align-items: center;
    gap: 60px;
}

.contact-showcase-intro {
    max-width: 590px;
}

.contact-showcase-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.contact-showcase-eyebrow::before {
    content: "";
    width: 31px;
    height: 1px;
    background: rgba(255, 255, 255, 0.68);
}

.contact-showcase-intro h2 {
    max-width: 570px;
    margin-top: 14px;
    color: #ffffff;
    font-size: clamp(35px, 3vw, 46px);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.048em;
}

.contact-showcase-intro h2 span {
    display: block;
    color: rgba(255, 255, 255, 0.5);
}

.contact-showcase-intro p {
    max-width: 550px;
    margin-top: 17px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    line-height: 1.72;
}

.contact-showcase-actions {
    margin-top: 24px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 11px;
}

.contact-showcase-primary,
.contact-showcase-secondary {
    min-height: 45px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    transition:
            color var(--transition),
            border-color var(--transition),
            background-color var(--transition);
}

.contact-showcase-primary {
    border: 1px solid #ffffff;
    color: #111111;
    background: #ffffff;
}

.contact-showcase-primary:hover {
    color: #ffffff;
    background: transparent;
}

.contact-showcase-secondary {
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #ffffff;
}

.contact-showcase-secondary:hover {
    border-color: #ffffff;
}

.contact-showcase-primary svg,
.contact-showcase-secondary svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
}

.contact-showcase-details {
    display: grid;
    grid-template-columns: 1fr;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-showcase-item {
    min-height: 96px;
    padding: 17px 22px;
    display: grid;
    grid-template-columns: 44px 1fr;
    align-items: center;
    gap: 17px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    transition: background-color var(--transition);
}

.contact-showcase-item:hover {
    background: rgba(255, 255, 255, 0.035);
}

.contact-showcase-icon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #ffffff;
}

.contact-showcase-icon svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
}

.contact-showcase-text {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-showcase-text small {
    color: rgba(255, 255, 255, 0.45);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.contact-showcase-text strong {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.35;
}

.contact-showcase-text > span {
    color: rgba(255, 255, 255, 0.55);
    font-size: 11px;
    line-height: 1.5;
}

.site-footer {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background: #050505;
}

.site-footer::before {
    content: "";
    position: absolute;
    top: -250px;
    left: -220px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(255, 255, 255, 0.025);
    border-radius: 50%;
}

.footer-main {
    position: relative;
    z-index: 2;
    padding: 56px 0 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns:
        minmax(300px, 1.25fr)
        minmax(150px, 0.65fr)
        minmax(175px, 0.8fr)
        minmax(280px, 1fr);
    align-items: start;
    gap: 52px;
}

.footer-brand {
    max-width: 410px;
}

.footer-logo {
    width: 205px;
    display: inline-block;
}

.footer-logo img {
    width: 100%;
    height: 68px;
    object-fit: contain;
    object-position: left center;
}

.footer-brand > p {
    max-width: 400px;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 13px;
    line-height: 1.72;
}

.footer-social {
    margin-top: 23px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.76);
    transition:
            color var(--transition),
            border-color var(--transition),
            background-color var(--transition),
            transform var(--transition);
}

.footer-social a:hover {
    border-color: #ffffff;
    color: #111111;
    background: #ffffff;
    transform: translateY(-2px);
}

.footer-social svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
}

.footer-social a:nth-child(2) svg,
.footer-social a:nth-child(3) svg {
    fill: currentColor;
    stroke: none;
}

.footer-sahibinden {
    border-color: rgba(255, 232, 0, 0.5) !important;
    color: #111111 !important;
    background: var(--sahibinden-yellow) !important;
    font-size: 14px;
    font-weight: 700;
}

.footer-column h3,
.footer-contact h3 {
    position: relative;
    padding-bottom: 15px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
}

.footer-column h3::after,
.footer-contact h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 29px;
    height: 1px;
    background: rgba(255, 255, 255, 0.62);
}

.footer-column ul {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column a {
    position: relative;
    padding-left: 13px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 12px;
    line-height: 1.5;
    transition:
            color var(--transition),
            padding-left var(--transition);
}

.footer-column a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-50%) rotate(45deg);
}

.footer-column a:hover {
    padding-left: 17px;
    color: #ffffff;
}

.footer-contact {
    min-width: 0;
}

.footer-contact-item {
    margin-top: 17px;
    display: grid;
    grid-template-columns: 40px 1fr;
    align-items: start;
    gap: 13px;
}

.footer-contact-icon {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.82);
}

.footer-contact-icon svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
}

.footer-contact-item > span:last-child {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-contact-item small {
    color: rgba(255, 255, 255, 0.42);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.footer-contact-item strong {
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.45;
    word-break: break-word;
}

.footer-contact-item > span:last-child > span {
    color: rgba(255, 255, 255, 0.52);
    font-size: 11px;
    line-height: 1.5;
}

.footer-bottom {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #030303;
}

.footer-bottom-container {
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.45);
    font-size: 11px;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 22px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.45);
    font-size: 10px;
    transition: color var(--transition);
}

.footer-bottom-links a:hover {
    color: #ffffff;
}

.fixed-whatsapp {
    position: fixed;
    right: 25px;
    bottom: 86px;
    z-index: 1200;
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    gap: 13px;
    filter: drop-shadow(0 12px 25px rgba(0, 0, 0, 0.25));
}

.fixed-whatsapp-text {
    min-height: 51px;
    padding: 9px 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 2px;
    visibility: hidden;
    opacity: 0;
    transform: translateX(8px);
    color: #ffffff;
    background: #111111;
    transition:
            visibility var(--transition),
            opacity var(--transition),
            transform var(--transition);
}

.fixed-whatsapp:hover .fixed-whatsapp-text {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
}

.fixed-whatsapp-text small {
    color: rgba(255, 255, 255, 0.58);
    font-size: 9px;
}

.fixed-whatsapp-text strong {
    font-size: 12px;
    font-weight: 600;
}

.fixed-whatsapp-icon {
    position: relative;
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    background: #25d366;
    transition: transform var(--transition);
}

.fixed-whatsapp:hover .fixed-whatsapp-icon {
    transform: scale(1.06);
}

.fixed-whatsapp-icon::before {
    content: "";
    position: absolute;
    inset: -6px;
    border: 1px solid rgba(37, 211, 102, 0.35);
    border-radius: 50%;
    animation: whatsappPulse 2s infinite;
}

.fixed-whatsapp-icon svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

@keyframes whatsappPulse {
    0% {
        opacity: 0.8;
        transform: scale(0.9);
    }

    70%,
    100% {
        opacity: 0;
        transform: scale(1.25);
    }
}

@media (max-width: 1280px) {
    .topbar-address {
        display: none;
    }

    .navigation-link {
        padding: 0 12px;
        font-size: 12px;
    }

    .header-phone-content {
        display: none;
    }
}

@media (max-width: 1100px) {
    .about-section-container,
    .contact-showcase-container {
        grid-template-columns: 1fr;
    }

    .about-section-container {
        gap: 36px;
    }

    .contact-showcase-container {
        gap: 36px;
    }

    .about-section-content,
    .contact-showcase-intro {
        max-width: 720px;
    }

    .latest-blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 44px 55px;
    }
}

@media (max-width: 1024px) {
    .container {
        width: min(calc(100% - 36px), var(--container-width));
    }

    .desktop-navigation {
        display: none;
    }

    .mobile-menu-button {
        display: flex;
    }

    .header-phone-content {
        display: flex;
    }

    .hero-scroll {
        display: none;
    }

    .featured-heading,
    .latest-vehicles-heading {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 19px;
    }

    .featured-heading-actions,
    .latest-vehicles-actions {
        width: 100%;
        justify-content: space-between;
    }

    .vehicle-card,
    .latest-vehicle-card {
        min-width: calc((100% - 18px) / 2);
    }

    .sales-banner-grid {
        grid-template-columns: 1fr;
    }

    .sales-banner,
    .sales-banner-content {
        min-height: 240px;
    }
}

@media (max-width: 768px) {
    .container {
        width: calc(100% - 28px);
    }

    .topbar-email,
    .topbar-address,
    .topbar-social-title,
    .sahibinden-text {
        display: none;
    }

    .header-phone {
        display: none;
    }

    .site-logo {
        width: 150px;
    }

    .hero {
        min-height: auto;
    }

    .hero-container {
        min-height: auto;
        padding: 46px 0 0;
        display: block;
    }

    .hero-content {
        width: 100%;
        min-height: 455px;
        transform: none;
    }

    .hero-content h1 {
        font-size: 35px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .hero-info {
        position: relative;
        bottom: auto;
        grid-template-columns: 1fr;
    }

    .hero-info-item {
        min-height: 74px;
        border-right: 0;
        border-bottom: 1px solid var(--border-dark);
    }

    .featured-vehicles,
    .latest-vehicles,
    .latest-blog {
        padding: 46px 0 52px;
    }

    .featured-heading,
    .latest-vehicles-heading,
    .latest-blog-heading {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 18px;
    }

    .featured-heading p {
        padding-left: 16px;
    }

    .featured-heading-actions,
    .latest-vehicles-actions {
        width: 100%;
    }

    .vehicle-card,
    .latest-vehicle-card {
        min-width: calc(100% - 18px);
    }

    .latest-vehicle-image {
        height: 235px;
    }

    .about-section {
        padding-top: 44px;
    }

    .about-section-content h2 {
        font-size: 34px;
    }

    .about-section-content h3 {
        font-size: 20px;
    }

    .about-section-visual {
        height: 290px;
    }

    .about-section-features {
        margin-top: 32px;
        grid-template-columns: 1fr;
    }

    .about-section-feature {
        min-height: 82px;
        padding: 17px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .about-section-feature:last-child {
        border-bottom: 0;
    }

    .latest-blog-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .blog-card-image {
        height: 240px;
    }

    .sales-banner-section {
        padding-bottom: 18px;
    }

    .sales-banner,
    .sales-banner-content {
        min-height: 245px;
    }

    .sales-banner-content {
        padding: 26px 24px;
    }

    .sales-banner h2 {
        font-size: 29px;
    }

    .contact-showcase {
        padding: 45px 0;
    }

    .contact-showcase-intro h2 {
        font-size: 35px;
    }

    .contact-showcase-intro p {
        font-size: 13px;
    }

    .contact-showcase-item {
        min-height: 90px;
        padding: 16px 0;
        border-right: 0;
    }

    .footer-main {
        padding: 48px 0 42px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-bottom-container {
        min-height: auto;
        padding: 18px 0;
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .footer-bottom-links {
        gap: 10px 18px;
    }

    .fixed-whatsapp {
        right: 16px;
        bottom: 78px;
    }

    .fixed-whatsapp-text {
        display: none;
    }

    .fixed-whatsapp-icon {
        width: 54px;
        height: 54px;
        flex-basis: 54px;
    }
}

@media (max-width: 480px) {
    .container {
        width: calc(100% - 24px);
    }

    .site-logo {
        width: 138px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .featured-heading h2,
    .latest-vehicles-heading h2,
    .latest-blog-heading h2 {
        font-size: 30px;
    }

    .featured-all-link,
    .latest-vehicles-all,
    .latest-blog-all {
        padding: 0 12px;
        font-size: 9px;
    }

    .featured-arrow,
    .latest-vehicles-arrow {
        width: 40px;
        height: 40px;
    }

    .vehicle-card-image,
    .latest-vehicle-image {
        height: 220px;
    }

    .about-section {
        padding-top: 40px;
    }

    .about-section-content h2 {
        font-size: 31px;
    }

    .about-section-content h3 {
        font-size: 19px;
    }

    .about-section-content p {
        font-size: 13px;
    }

    .about-section-visual {
        height: 250px;
    }

    .blog-card-image {
        height: 215px;
    }

    .blog-card-content {
        padding: 19px;
    }

    .sales-banner h2 {
        font-size: 28px;
    }

    .sales-banner p {
        font-size: 11px;
    }

    .contact-showcase {
        padding: 40px 0;
    }

    .contact-showcase-intro h2 {
        font-size: 31px;
    }

    .contact-showcase-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .contact-showcase-primary,
    .contact-showcase-secondary {
        width: 100%;
    }

    .contact-showcase-item {
        grid-template-columns: 40px 1fr;
        gap: 13px;
    }

    .contact-showcase-icon {
        width: 40px;
        height: 40px;
    }

    .contact-showcase-text strong {
        font-size: 14px;
    }

    .footer-logo {
        width: 180px;
    }

    .footer-brand > p {
        font-size: 12px;
    }

    .fixed-whatsapp-icon {
        width: 52px;
        height: 52px;
        flex-basis: 52px;
    }

    .fixed-whatsapp-icon svg {
        width: 25px;
        height: 25px;
    }
}

/* Genel okunabilirlik iyileştirmesi */
body {
    font-size: 15px;
}

.topbar-contact-item {
    font-size: 13.5px;
}

.navigation-link {
    font-size: 13.5px;
}

.dropdown-menu a {
    font-size: 13.5px;
}

.hero-content h1 {
    font-size: clamp(34px, 3vw, 48px);
}

.hero-content p {
    font-size: 16.5px;
    line-height: 1.7;
}

.hero-button {
    font-size: 11.5px;
}

.hero-info-item strong {
    font-size: 17px;
}

.hero-info-item small {
    font-size: 13.5px;
}

.featured-heading h2,
.latest-vehicles-heading h2,
.latest-blog-heading h2 {
    font-size: clamp(32px, 2.6vw, 42px);
}

.featured-heading p,
.latest-vehicles-heading p,
.latest-blog-heading p {
    font-size: 14px;
    line-height: 1.7;
}

.vehicle-card-content h3,
.latest-vehicle-content h3 {
    font-size: 20px;
}

.vehicle-feature span,
.latest-vehicle-features span {
    font-size: 12.5px;
}

.vehicle-detail-link,
.latest-vehicle-link,
.featured-all-link,
.latest-vehicles-all,
.latest-blog-all {
    font-size: 11.5px;
}

.about-section-content h2 {
    font-size: clamp(34px, 2.8vw, 44px);
}

.about-section-content h3 {
    font-size: 23px;
    line-height: 1.32;
}

.about-section-content p {
    font-size: 15px;
    line-height: 1.74;
}

.blog-card-content h3 {
    font-size: 21px;
}

.blog-card-content p {
    font-size: 14px;
    line-height: 1.68;
}

.sales-banner h2 {
    font-size: clamp(32px, 2.8vw, 44px);
}

.sales-banner p {
    font-size: 13px;
    line-height: 1.68;
}

.contact-showcase-intro h2 {
    font-size: clamp(36px, 3vw, 48px);
}

.contact-showcase-intro p {
    font-size: 15px;
    line-height: 1.74;
}

.contact-showcase-text strong {
    font-size: 17px;
}

.contact-showcase-text > span {
    font-size: 12px;
}

.footer-brand > p {
    font-size: 14px;
    line-height: 1.74;
}

.footer-column h3,
.footer-contact h3 {
    font-size: 16px;
}

.footer-column a {
    font-size: 13px;
}

.footer-contact-item strong {
    font-size: 14px;
}

.footer-contact-item > span:last-child > span {
    font-size: 12px;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 15.5px;
    }

    .featured-heading h2,
    .latest-vehicles-heading h2,
    .latest-blog-heading h2 {
        font-size: 32px;
    }

    .about-section-content h2 {
        font-size: 34px;
    }

    .about-section-content h3 {
        font-size: 21px;
    }

    .contact-showcase-intro h2 {
        font-size: 35px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 33px;
    }

    .featured-heading h2,
    .latest-vehicles-heading h2,
    .latest-blog-heading h2 {
        font-size: 30px;
    }

    .about-section-content h2 {
        font-size: 31px;
    }

    .sales-banner h2 {
        font-size: 29px;
    }

    .contact-showcase-intro h2 {
        font-size: 31px;
    }
}
.about-section-container {
    grid-template-columns: minmax(0, 0.92fr) minmax(560px, 1.08fr);
    gap: 54px;
}

.about-section-content {
    max-width: 760px;
}

.about-section-content p {
    max-width: 720px;
}

@media (max-width: 1100px) {
    .about-section-container {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .about-section-content,
    .about-section-content p {
        max-width: 100%;
    }
}
.about-section-container {
    grid-template-columns: minmax(0, 0.92fr) minmax(560px, 1.08fr);
    gap: 54px;
}

.about-section-content {
    max-width: 760px;
}

.about-section-content p {
    max-width: 720px;
}

@media (max-width: 1100px) {
    .about-section-container {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .about-section-content,
    .about-section-content p {
        max-width: 100%;
    }
}
.about-section-container {
    grid-template-columns: minmax(0, 1.12fr) minmax(500px, 0.88fr);
    gap: 48px;
}

.about-section-content {
    max-width: 920px;
}

.about-section-content p {
    max-width: 900px;
}

@media (max-width: 1100px) {
    .about-section-container {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .about-section-content,
    .about-section-content p {
        max-width: 100%;
    }
}
.page-show-hero{
    position:relative;
    padding:64px 0 42px;
    overflow:hidden;
    color:#ffffff;
    background:
        linear-gradient(135deg, rgba(5,8,13,.94), rgba(12,16,24,.9)),
        url("https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?auto=format&fit=crop&w=1800&q=88") center/cover no-repeat;
}

.page-show-hero::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    height:1px;
    background:rgba(255,255,255,.12);
}

.page-show-hero-container{
    position:relative;
    z-index:1;
}

.page-show-breadcrumb{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:34px;
    color:rgba(255,255,255,.58);
    font-size:13px;
    font-weight:700;
}

.page-show-breadcrumb a{
    color:rgba(255,255,255,.72);
    text-decoration:none;
    transition:color .18s ease;
}

.page-show-breadcrumb a:hover{
    color:#ffffff;
}

.page-show-breadcrumb strong{
    color:#ffffff;
    font-weight:800;
}

.page-show-heading{
    max-width:820px;
}

.page-show-heading > span{
    display:inline-flex;
    align-items:center;
    gap:10px;
    margin-bottom:16px;
    color:#d91f2a;
    font-size:12px;
    font-weight:900;
    letter-spacing:.14em;
    text-transform:uppercase;
}

.page-show-heading > span::before{
    content:"";
    width:38px;
    height:1px;
    background:#d91f2a;
}

.page-show-heading h1{
    margin:0;
    color:#ffffff;
    font-size:clamp(38px,4vw,62px);
    font-weight:800;
    line-height:1.05;
    letter-spacing:0;
}

.page-show-heading p{
    max-width:620px;
    margin:18px 0 0;
    color:rgba(255,255,255,.72);
    font-size:16px;
    line-height:1.75;
    font-weight:500;
}

.page-show-section{
    padding:58px 0 72px;
    background:#050608;
    color:#ffffff;
}

.page-show-container{
    display:grid;
    grid-template-columns:minmax(0,1fr) 360px;
    gap:34px;
    align-items:start;
}

.page-show-content{
    min-width:0;
    padding:36px;
    border:1px solid rgba(255,255,255,.1);
    background:rgba(255,255,255,.035);
}

.page-show-content-inner{
    max-width:920px;
    color:rgba(255,255,255,.76);
    font-size:16px;
    line-height:1.85;
    font-weight:500;
}

.page-show-content-inner h1,
.page-show-content-inner h2,
.page-show-content-inner h3,
.page-show-content-inner h4{
    margin:0 0 18px;
    color:#ffffff;
    font-weight:800;
    line-height:1.24;
    letter-spacing:0;
}

.page-show-content-inner h2{
    font-size:30px;
}

.page-show-content-inner h3{
    font-size:24px;
}

.page-show-content-inner p{
    margin:0 0 18px;
}

.page-show-content-inner p:last-child{
    margin-bottom:0;
}

.page-show-content-inner ul,
.page-show-content-inner ol{
    margin:0 0 20px;
    padding-left:22px;
}

.page-show-content-inner li{
    margin-bottom:8px;
}

.page-show-content-inner a{
    color:#ffffff;
    font-weight:800;
    text-decoration:underline;
    text-decoration-color:#d91f2a;
    text-underline-offset:4px;
}

.page-show-content-inner strong{
    color:#ffffff;
    font-weight:800;
}

.page-show-sidebar{
    position:sticky;
    top:104px;
    display:grid;
    gap:16px;
}

.page-show-card{
    padding:26px;
    border:1px solid rgba(255,255,255,.1);
    background:#ffffff;
    color:#101522;
}

.page-show-card-icon{
    width:48px;
    height:48px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:18px;
    color:#d91f2a;
    background:#fff1f2;
}

.page-show-card-icon svg{
    width:22px;
    height:22px;
    fill:none;
    stroke:currentColor;
    stroke-width:1.9;
    stroke-linecap:round;
    stroke-linejoin:round;
}

.page-show-card h2,
.page-show-card h3{
    margin:0;
    color:#101522;
    font-size:24px;
    font-weight:850;
    line-height:1.2;
}

.page-show-card p{
    margin:12px 0 20px;
    color:#64748b;
    font-size:14px;
    line-height:1.7;
    font-weight:600;
}

.page-show-primary-link{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:48px;
    padding:0 18px;
    margin-bottom:10px;
    color:#ffffff;
    background:#d91f2a;
    font-size:14px;
    font-weight:900;
    text-decoration:none;
    transition:background .18s ease, transform .18s ease;
}

.page-show-primary-link:hover{
    color:#ffffff;
    background:#b91c1c;
    transform:translateY(-1px);
}

.page-show-secondary-link,
.page-show-card-dark a{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:#101522;
    font-size:12px;
    font-weight:900;
    letter-spacing:.08em;
    text-transform:uppercase;
    text-decoration:none;
}

.page-show-secondary-link svg,
.page-show-card-dark a svg{
    width:18px;
    height:18px;
    fill:none;
    stroke:currentColor;
    stroke-width:2;
    stroke-linecap:round;
    stroke-linejoin:round;
}

.page-show-card-dark{
    color:#ffffff;
    background:#111827;
}

.page-show-card-dark h3{
    color:#ffffff;
}

.page-show-card-dark p{
    color:rgba(255,255,255,.68);
}

.page-show-card-dark a{
    color:#ffffff;
}

@media(max-width:1100px){
    .page-show-container{
        grid-template-columns:1fr;
    }

    .page-show-sidebar{
        position:static;
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
}

@media(max-width:768px){
    .page-show-hero{
        padding:44px 0 34px;
    }

    .page-show-breadcrumb{
        margin-bottom:24px;
        font-size:12px;
        flex-wrap:wrap;
    }

    .page-show-heading p{
        font-size:14.5px;
    }

    .page-show-section{
        padding:34px 0 48px;
    }

    .page-show-content{
        padding:24px;
    }

    .page-show-content-inner{
        font-size:14.5px;
        line-height:1.78;
    }

    .page-show-sidebar{
        grid-template-columns:1fr;
    }
}
.error-page {
    position: relative;
    min-height: calc(100vh - 130px);
    overflow: hidden;
    color: #ffffff;
    background: #050505;
}

.error-page-background {
    position: absolute;
    inset: 0;
    background:
        url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=2200&q=88")
        center/cover no-repeat;
    opacity: 0.42;
    transform: scale(1.03);
}

.error-page-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.42)),
        linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.86));
}

.error-page-container {
    position: relative;
    z-index: 1;
    min-height: calc(100vh - 130px);
    padding: 78px 0;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.65fr);
    gap: 54px;
    align-items: center;
}

.error-page-content {
    max-width: 760px;
}

.error-page-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.error-page-eyebrow::before {
    content: "";
    width: 44px;
    height: 1px;
    background: #ffffff;
}

.error-page-content h1 {
    margin: 18px 0 0;
    color: #ffffff;
    font-size: clamp(96px, 12vw, 190px);
    font-weight: 800;
    line-height: 0.85;
    letter-spacing: -0.08em;
}

.error-page-content h2 {
    max-width: 620px;
    margin: 26px 0 0;
    color: #ffffff;
    font-size: clamp(30px, 3.2vw, 50px);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.error-page-content p {
    max-width: 640px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 15.5px;
    line-height: 1.75;
}

.error-page-actions {
    margin-top: 30px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.error-page-button {
    min-height: 48px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    border: 1px solid transparent;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.error-page-button svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.error-page-button:hover {
    transform: translateY(-2px);
}

.error-page-button-primary {
    color: #111111;
    background: #ffffff;
}

.error-page-button-secondary {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.32);
    background: rgba(255, 255, 255, 0.06);
}

.error-page-links {
    display: grid;
    gap: 14px;
}

.error-page-link-card {
    min-height: 108px;
    padding: 22px 24px;
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 4px 16px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(14px);
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.error-page-link-card:hover {
    transform: translateX(6px);
    border-color: rgba(255, 255, 255, 0.38);
    background: rgba(255, 255, 255, 0.12);
}

.error-page-link-card span {
    grid-row: span 2;
    color: rgba(255, 255, 255, 0.38);
    font-size: 14px;
    font-weight: 800;
}

.error-page-link-card strong {
    color: #ffffff;
    font-size: 17px;
    font-weight: 800;
}

.error-page-link-card small {
    color: rgba(255, 255, 255, 0.66);
    font-size: 13px;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .error-page-container {
        grid-template-columns: 1fr;
        gap: 34px;
        align-items: start;
    }

    .error-page-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .error-page {
        min-height: auto;
    }

    .error-page-container {
        min-height: auto;
        padding: 58px 0;
    }

    .error-page-content h1 {
        font-size: 104px;
    }

    .error-page-content h2 {
        font-size: 31px;
    }

    .error-page-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .error-page-container {
        padding: 46px 0;
    }

    .error-page-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .error-page-button {
        width: 100%;
    }

    .error-page-link-card {
        min-height: 96px;
        padding: 19px;
    }
}
.cookie-consent {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1600;
    width: min(520px, calc(100% - 44px));
    opacity: 0;
    transform: translateY(16px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.cookie-consent.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.cookie-consent-card {
    padding: 22px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: end;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(10, 10, 10, 0.96);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(16px);
}

.cookie-consent-eyebrow {
    display: inline-flex;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.cookie-consent h2 {
    margin: 0;
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.25;
}

.cookie-consent p {
    margin: 9px 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 12.5px;
    line-height: 1.65;
}

.cookie-consent-link {
    display: inline-flex;
    margin-top: 10px;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.cookie-consent-actions {
    display: flex;
    gap: 8px;
    flex-wrap: nowrap;
}

.cookie-consent-btn {
    min-height: 42px;
    padding: 0 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.cookie-consent-btn.is-primary {
    color: #101010;
    background: #ffffff;
}

.cookie-consent-btn.is-secondary {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.06);
}

.cookie-consent-btn:hover {
    transform: translateY(-1px);
}

@media (max-width: 640px) {
    .cookie-consent {
        right: 14px;
        bottom: 14px;
        width: calc(100% - 28px);
    }

    .cookie-consent-card {
        grid-template-columns: 1fr;
        padding: 18px;
    }

    .cookie-consent-actions {
        width: 100%;
    }

    .cookie-consent-btn {
        flex: 1;
    }
}
