:root {
    --red: #c8102e;
    --red-dark: #9d0c24;
    --red-soft: #e31b3d;

    --ink: #17191d;
    --ink-soft: #5f636b;
    --gray: #f5f5f6;
    --gray-dark: #e8e8ea;

    --white: #ffffff;

    --container: 1240px;

    --shadow:
        0 30px 80px rgba(20, 20, 25, .10);

    --radius: 28px;
}


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    background: #fff;
    color: var(--ink);

    overflow-x: hidden;
}


body::selection {
    background: var(--red);
    color: white;
}


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


img {
    max-width: 100%;
}


.container {
    width: min(calc(100% - 48px), var(--container));
    margin: 0 auto;
}


/* HEADER */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    z-index: 999;

    transition:
        background .35s ease,
        box-shadow .35s ease,
        backdrop-filter .35s ease;
}


.site-header.scrolled {
    background: rgba(255,255,255,.92);

    backdrop-filter: blur(20px);

    box-shadow:
        0 12px 40px rgba(0,0,0,.06);
}


.header-inner {
    height: 90px;

    display: flex;
    align-items: center;

    gap: 42px;
}


.brand {
    display: flex;
    align-items: center;

    min-width: 210px;
}


.brand-logo {
    width: 210px;
    max-height: 60px;

    object-fit: contain;
    object-position: left center;
}


.brand-fallback {
    display: none;
    align-items: center;

    font-size: 31px;
    font-weight: 800;
    letter-spacing: -2px;
}


.brand-fallback strong {
    color: var(--red);
}


.brand-fallback span {
    color: #44474d;
}


.desktop-nav {
    display: flex;
    align-items: center;

    gap: 32px;

    margin-left: auto;
}


.desktop-nav a {
    position: relative;

    font-size: 14px;
    font-weight: 600;

    color: rgba(255,255,255,.85);

    transition: color .25s ease;
}


.site-header.scrolled .desktop-nav a {
    color: #3d4045;
}


.desktop-nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -9px;

    width: 0;
    height: 2px;

    background: var(--red);

    transition: width .25s ease;
}


.desktop-nav a:hover::after {
    width: 100%;
}


.header-cta {
    padding: 13px 20px;

    background: var(--red);

    color: white;

    font-size: 14px;
    font-weight: 700;

    border-radius: 999px;

    box-shadow:
        0 12px 30px rgba(200,16,46,.25);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


.header-cta:hover {
    transform: translateY(-2px);

    box-shadow:
        0 18px 36px rgba(200,16,46,.35);
}


.mobile-menu-button,
.mobile-menu {
    display: none;
}


/* HERO */

.hero {
    min-height: 100vh;

    position: relative;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(
            125deg,
            #111216 0%,
            #1b1d22 45%,
            #262930 100%
        );
}


.hero-background {
    position: absolute;
    inset: 0;

    background-image:
        url("/static/uploads/yilmaz3.png");

    background-size: cover;
    background-position: center;

    opacity: .30;

    transform: scale(1.06);

    animation:
        heroZoom 18s ease-in-out infinite alternate;
}


.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(10,10,13,.95) 0%,
            rgba(10,10,13,.76) 44%,
            rgba(10,10,13,.22) 100%
        );
}


.hero::after {
    content: "";

    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(255,255,255,.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.035) 1px,
            transparent 1px
        );

    background-size: 80px 80px;

    mask-image:
        linear-gradient(
            to bottom,
            rgba(0,0,0,.45),
            transparent 75%
        );

    pointer-events: none;
}


.hero-light {
    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    filter: blur(100px);

    pointer-events: none;
}


.hero-light-one {
    background: rgba(200,16,46,.18);

    left: -150px;
    bottom: -160px;
}


.hero-light-two {
    background: rgba(255,255,255,.07);

    right: -130px;
    top: 0;
}


.hero-container {
    position: relative;
    z-index: 3;

    display: grid;
    grid-template-columns:
        minmax(0,1.08fr)
        minmax(380px,.92fr);

    align-items: center;

    gap: 65px;

    padding-top: 130px;
    padding-bottom: 90px;
}


.hero-content {
    max-width: 730px;
}


.eyebrow {
    display: inline-flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 30px;

    color: rgba(255,255,255,.70);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2.2px;
    text-transform: uppercase;
}


.eyebrow span {
    width: 34px;
    height: 2px;

    background: var(--red);
}


.hero h1 {
    color: white;

    font-size:
        clamp(52px, 6vw, 88px);

    line-height: .97;

    letter-spacing: -4.5px;

    max-width: 780px;
}


.hero h1 span {
    color: var(--red-soft);
}


.hero-description {
    margin-top: 30px;

    max-width: 640px;

    font-size: 18px;
    line-height: 1.8;

    color: rgba(255,255,255,.68);
}


.hero-actions {
    display: flex;
    flex-wrap: wrap;

    align-items: center;

    gap: 14px;

    margin-top: 38px;
}


.button {
    min-height: 56px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 20px;

    padding: 0 25px;

    border-radius: 999px;

    font-size: 14px;
    font-weight: 750;

    transition:
        transform .25s ease,
        background .25s ease,
        color .25s ease;
}


.button:hover {
    transform: translateY(-3px);
}


.button-primary {
    background: var(--red);

    color: white;

    box-shadow:
        0 15px 40px rgba(200,16,46,.30);
}


.button-primary span {
    font-size: 20px;
}


.button-ghost {
    color: white;

    border:
        1px solid rgba(255,255,255,.22);

    background:
        rgba(255,255,255,.05);

    backdrop-filter: blur(10px);
}


.button-ghost:hover {
    background:
        rgba(255,255,255,.12);
}


.hero-features {
    display: flex;

    gap: 36px;

    margin-top: 55px;
}


.hero-features div {
    display: flex;
    flex-direction: column;

    gap: 5px;
}


.hero-features strong {
    color: white;

    font-size: 19px;
}


.hero-features span {
    color: rgba(255,255,255,.45);

    font-size: 12px;
}


.hero-visual {
    position: relative;
}


.hero-image-card {
    height: 590px;

    position: relative;

    border-radius: 34px;

    border:
        1px solid rgba(255,255,255,.16);

    background:
        rgba(255,255,255,.06);

    backdrop-filter: blur(12px);

    overflow: hidden;

    box-shadow:
        0 50px 120px rgba(0,0,0,.35);

    transform:
        perspective(1200px)
        rotateY(-4deg)
        rotateX(2deg);
}


.hero-image {
    position: absolute;

    inset: 12px;

    border-radius: 25px;

    background:
        linear-gradient(
            145deg,
            rgba(200,16,46,.13),
            rgba(15,16,20,.15)
        ),
        url("/static/uploads/yilmaz3.png");

    background-size: cover;
    background-position: center;

    overflow: hidden;
}


.hero-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(12,13,16,.88),
            transparent 60%
        );
}


.floating-card {
    position: absolute;

    z-index: 4;

    display: flex;
    align-items: center;

    background:
        rgba(255,255,255,.93);

    backdrop-filter: blur(20px);

    color: var(--ink);

    box-shadow:
        0 20px 60px rgba(0,0,0,.20);
}


.floating-card-top {
    top: 35px;
    left: -30px;

    gap: 13px;

    padding: 15px 18px;

    border-radius: 18px;
}


.floating-card-top div {
    display: flex;
    flex-direction: column;

    gap: 2px;
}


.floating-card-top strong {
    font-size: 13px;
}


.floating-card-top small {
    font-size: 10px;

    color: #777b82;
}


.status-dot {
    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: #23ae64;

    box-shadow:
        0 0 0 7px rgba(35,174,100,.12);
}


.floating-card-bottom {
    right: 28px;
    bottom: 30px;

    flex-direction: column;
    align-items: flex-start;

    padding: 20px 24px;

    border-radius: 20px;
}


.floating-card-bottom strong {
    color: var(--red);

    font-size: 22px;
}


.floating-card-bottom span {
    margin-top: 3px;

    font-size: 12px;

    color: #666970;
}


.scroll-indicator {
    position: absolute;

    z-index: 4;

    bottom: 25px;
    left: 50%;

    width: 26px;
    height: 43px;

    transform: translateX(-50%);

    border:
        1px solid rgba(255,255,255,.28);

    border-radius: 30px;
}


.scroll-indicator span {
    position: absolute;

    width: 4px;
    height: 8px;

    left: 50%;
    top: 9px;

    transform: translateX(-50%);

    background: white;

    border-radius: 5px;

    animation:
        scrollDot 2s infinite;
}


/* TRUST */

.trust-strip {
    background: white;

    border-bottom:
        1px solid #ededee;
}


.trust-grid {
    display: grid;

    grid-template-columns:
        repeat(3,1fr);
}


.trust-item {
    display: flex;

    gap: 20px;

    min-height: 150px;

    align-items: center;

    padding:
        30px 42px;

    border-right:
        1px solid #ededee;
}


.trust-item:first-child {
    padding-left: 0;
}


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


.trust-number {
    color: var(--red);

    font-weight: 800;

    font-size: 12px;

    letter-spacing: 2px;
}


.trust-item strong {
    display: block;

    margin-bottom: 7px;

    font-size: 16px;
}


.trust-item p {
    color: #777b82;

    font-size: 13px;
    line-height: 1.6;
}


/* GENERIC */

.section {
    padding:
        125px 0;
}


.section-kicker {
    display: inline-block;

    margin-bottom: 18px;

    color: var(--red);

    font-size: 12px;
    font-weight: 850;

    letter-spacing: 2.3px;
}


.section-heading,
.fleet-header {
    display: grid;

    grid-template-columns:
        1.3fr .7fr;

    align-items: end;

    gap: 70px;

    margin-bottom: 62px;
}


.section-heading h2,
.fleet-header h2,
.about-content h2,
.contact-content h2 {
    font-size:
        clamp(38px, 4vw, 62px);

    line-height: 1.04;

    letter-spacing: -3px;
}


.section-heading h2 span,
.fleet-header h2 span,
.about-content h2 span,
.contact-content h2 span {
    color: var(--red);
}


.section-heading > p,
.fleet-header > p {
    color: var(--ink-soft);

    font-size: 16px;

    line-height: 1.8;
}


/* SERVICES */

.services-section {
    background:
        #f7f7f8;
}


.services-grid {
    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 18px;
}


.service-card {
    min-height: 390px;

    position: relative;

    display: flex;
    flex-direction: column;

    padding: 34px;

    background: white;

    border:
        1px solid #ededee;

    border-radius: 26px;

    overflow: hidden;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}


.service-card::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    top: -100px;
    right: -80px;

    border-radius: 50%;

    background:
        rgba(200,16,46,.07);

    transition:
        transform .45s ease;
}


.service-card:hover {
    transform: translateY(-10px);

    box-shadow:
        var(--shadow);

    border-color:
        rgba(200,16,46,.18);
}


.service-card:hover::before {
    transform: scale(1.6);
}


.service-card.featured {
    background:
        var(--ink);

    color: white;

    transform:
        translateY(-20px);
}


.service-card.featured p {
    color:
        rgba(255,255,255,.58);
}


.service-card.featured a {
    color: white;
}


.service-number {
    position: absolute;

    right: 28px;
    top: 25px;

    color: #b9bbc0;

    font-size: 11px;
    font-weight: 700;
}


.service-icon {
    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    border-radius: 18px;

    background:
        rgba(200,16,46,.08);

    color: var(--red);

    margin-bottom: 55px;
}


.service-icon span {
    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: currentColor;

    box-shadow:
        0 0 0 8px rgba(200,16,46,.08);
}


.service-card h3 {
    font-size: 24px;

    letter-spacing: -1px;
}


.service-card p {
    margin-top: 15px;

    color: #767a81;

    line-height: 1.75;

    font-size: 14px;
}


.service-card a {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-top: auto;

    padding-top: 28px;

    color: var(--red);

    font-size: 13px;
    font-weight: 750;
}


/* ABOUT */

.about-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 100px;

    align-items: center;
}


.about-visual {
    min-height: 620px;

    position: relative;
}


.about-image {
    position: absolute;

    inset: 0 45px 0 0;

    border-radius:
        32px;

    background:
        linear-gradient(
            rgba(15,16,20,.1),
            rgba(15,16,20,.3)
        ),
        url("/static/uploads/yilmaz3.png");

    background-size: cover;
    background-position: center;

    box-shadow:
        var(--shadow);
}


.about-badge {
    position: absolute;

    right: 0;
    bottom: 45px;

    width: 160px;
    height: 160px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    background:
        var(--red);

    color: white;

    border-radius: 50%;

    box-shadow:
        0 20px 50px rgba(200,16,46,.28);

    animation:
        floatBadge 4s ease-in-out infinite;
}


.about-badge strong {
    font-size: 25px;
    letter-spacing: -1px;
}


.about-badge span {
    font-size: 13px;

    opacity: .8;
}


.about-content {
    max-width: 570px;
}


.about-content .large-text {
    margin-top: 30px;

    color: var(--ink);

    font-size: 20px;

    line-height: 1.65;

    font-weight: 600;
}


.about-content > p:not(.large-text) {
    margin-top: 18px;

    color: var(--ink-soft);

    font-size: 15px;

    line-height: 1.85;
}


.about-points {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 17px;

    margin-top: 35px;
}


.about-points div {
    display: flex;

    align-items: center;

    gap: 11px;

    font-size: 13px;

    font-weight: 650;
}


.about-points span {
    width: 26px;
    height: 26px;

    display: grid;
    place-items: center;

    flex: 0 0 26px;

    border-radius: 50%;

    background:
        rgba(200,16,46,.08);

    color: var(--red);

    font-size: 11px;
}


/* STATS */

.stats-section {
    background:
        var(--red);

    color: white;
}


.stats-grid {
    min-height: 240px;

    display: grid;

    grid-template-columns:
        repeat(4,1fr);
}


.stat {
    display: flex;
    flex-wrap: wrap;

    align-content: center;

    padding: 35px;

    border-right:
        1px solid rgba(255,255,255,.16);
}


.stat:first-child {
    padding-left: 0;
}


.stat:last-child {
    border-right: 0;
}


.stat strong {
    font-size:
        clamp(46px, 5vw, 74px);

    line-height: 1;

    letter-spacing: -4px;
}


.stat > span {
    margin-left: 7px;

    align-self: flex-start;

    margin-top: 9px;

    font-size: 15px;
    font-weight: 700;
}


.stat p {
    width: 100%;

    margin-top: 13px;

    color:
        rgba(255,255,255,.68);

    font-size: 12px;
}


/* FLEET */

.fleet-section {
    background:
        #f7f7f8;
}


.fleet-showcase {
    min-height: 580px;

    display: grid;

    grid-template-columns:
        1.25fr .75fr;

    border-radius:
        34px;

    overflow: hidden;

    background:
        var(--ink);

    box-shadow:
        var(--shadow);
}


.fleet-image {
    min-height: 540px;

    background:
        linear-gradient(
            to right,
            rgba(20,21,24,.05),
            rgba(20,21,24,.72)
        ),
        url("/static/img/fleet-main.jpg");

    background-size: cover;
    background-position: center;
}


.fleet-content {
    display: flex;
    flex-direction: column;

    justify-content: center;

    padding:
        65px 55px;

    color: white;
}


.fleet-label {
    color:
        rgba(255,255,255,.43);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2px;
}


.fleet-content h3 {
    margin-top: 18px;

    font-size: 40px;

    line-height: 1.08;

    letter-spacing: -2px;
}


.fleet-content p {
    margin-top: 20px;

    color:
        rgba(255,255,255,.56);

    line-height: 1.8;

    font-size: 14px;
}


.fleet-tags {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin-top: 35px;
}


.fleet-tags span {
    padding:
        10px 13px;

    border:
        1px solid rgba(255,255,255,.14);

    border-radius: 999px;

    color:
        rgba(255,255,255,.76);

    font-size: 11px;
}


/* CONTACT */

.contact-section {
    position: relative;

    overflow: hidden;

    padding:
        110px 0;

    background:
        #17191d;

    color: white;
}


.contact-glow {
    position: absolute;

    width: 550px;
    height: 550px;

    left: -180px;
    bottom: -300px;

    border-radius: 50%;

    background:
        rgba(200,16,46,.23);

    filter: blur(100px);
}


.contact-grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        1fr .8fr;

    gap: 120px;

    align-items: center;
}


.section-kicker.light {
    color:
        rgba(255,255,255,.45);
}


.contact-content h2 {
    max-width: 600px;
}


.contact-content p {
    margin-top: 24px;

    max-width: 580px;

    color:
        rgba(255,255,255,.55);

    line-height: 1.8;
}


.contact-actions {
    display: flex;

    flex-direction: column;

    gap: 12px;
}


.contact-card {
    min-height: 100px;

    position: relative;

    display: flex;
    flex-direction: column;

    justify-content: center;

    padding:
        22px 60px 22px 26px;

    border:
        1px solid rgba(255,255,255,.12);

    border-radius: 20px;

    background:
        rgba(255,255,255,.04);

    transition:
        background .25s ease,
        transform .25s ease;
}


.contact-card:hover {
    background:
        rgba(255,255,255,.09);

    transform:
        translateX(-5px);
}


.contact-card small {
    color:
        rgba(255,255,255,.43);

    margin-bottom: 6px;
}


.contact-card strong {
    font-size: 16px;
}


.contact-card > span {
    position: absolute;

    right: 25px;
    top: 50%;

    transform:
        translateY(-50%);

    font-size: 21px;

    color: var(--red-soft);
}


/* FOOTER */

.footer {
    padding:
        40px 0;

    background:
        #101114;

    color: white;

    border-top:
        1px solid rgba(255,255,255,.07);
}


.footer-inner {
    display: flex;

    justify-content: space-between;
    align-items: center;

    gap: 30px;
}


.footer-brand {
    font-size: 23px;

    font-weight: 800;

    letter-spacing: -1.4px;
}


.footer-brand strong {
    color: var(--red-soft);
}


.footer-brand span {
    color: #c5c6c9;
}


.footer p,
.footer-copy {
    margin-top: 8px;

    color:
        rgba(255,255,255,.35);

    font-size: 11px;
}


/* REVEAL */

.reveal {
    opacity: 0;

    transform:
        translateY(35px);

    transition:
        opacity .8s cubic-bezier(.2,.65,.3,1),
        transform .8s cubic-bezier(.2,.65,.3,1);
}


.reveal.visible {
    opacity: 1;

    transform:
        translateY(0);
}


.reveal-delay {
    transition-delay:
        .14s;
}


/* ANIMATIONS */

@keyframes heroZoom {

    from {
        transform:
            scale(1.06);
    }

    to {
        transform:
            scale(1.13);
    }

}


@keyframes scrollDot {

    0% {
        opacity: 0;

        transform:
            translate(-50%,0);
    }

    30% {
        opacity: 1;
    }

    100% {
        opacity: 0;

        transform:
            translate(-50%,15px);
    }

}


@keyframes floatBadge {

    0%,
    100% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(-12px);
    }

}


/* RESPONSIVE */

@media (max-width: 1050px) {

    .desktop-nav,
    .header-cta {
        display: none;
    }


    .mobile-menu-button {
        margin-left: auto;

        width: 44px;
        height: 44px;

        display: flex;

        flex-direction: column;

        align-items: center;
        justify-content: center;

        gap: 5px;

        border: 0;

        border-radius: 50%;

        background:
            rgba(255,255,255,.10);

        cursor: pointer;
    }


    .site-header.scrolled
    .mobile-menu-button {
        background: #f2f2f3;
    }


    .mobile-menu-button span {
        width: 18px;
        height: 2px;

        background: white;
    }


    .site-header.scrolled
    .mobile-menu-button span {
        background: var(--ink);
    }


    .mobile-menu {
        position: absolute;

        top: 82px;
        left: 24px;
        right: 24px;

        display: none;

        flex-direction: column;

        padding: 15px;

        border-radius: 20px;

        background:
            rgba(255,255,255,.97);

        box-shadow:
            0 20px 60px rgba(0,0,0,.16);
    }


    .mobile-menu.open {
        display: flex;
    }


    .mobile-menu a {
        padding: 14px;

        color: var(--ink);

        font-size: 14px;
        font-weight: 650;
    }


    .hero-container {
        grid-template-columns: 1fr;

        padding-top: 160px;
    }


    .hero-content {
        max-width: 850px;
    }


    .hero-visual {
        max-width: 650px;

        width: 100%;

        margin: 20px auto 0;
    }


    .section-heading,
    .fleet-header {
        grid-template-columns: 1fr;

        gap: 25px;
    }


    .services-grid {
        grid-template-columns: 1fr 1fr;
    }


    .service-card.featured {
        transform: none;
    }


    .about-grid {
        grid-template-columns: 1fr;

        gap: 70px;
    }


    .contact-grid {
        grid-template-columns: 1fr;

        gap: 55px;
    }

}


@media (max-width: 760px) {

    .container {
        width:
            min(calc(100% - 32px), var(--container));
    }


    .header-inner {
        height: 76px;
    }


    .brand-logo {
        width: 175px;
    }


    .brand-fallback {
        font-size: 27px;
    }


    .hero {
        min-height: auto;
    }


    .hero-container {
        padding-top: 135px;
        padding-bottom: 80px;
    }


    .hero h1 {
        font-size:
            clamp(45px, 13vw, 65px);

        letter-spacing: -3px;
    }


    .hero-description {
        font-size: 16px;

        line-height: 1.7;
    }


    .hero-actions {
        align-items: stretch;

        flex-direction: column;
    }


    .button {
        width: 100%;
    }


    .hero-features {
        gap: 20px;

        justify-content:
            space-between;
    }


    .hero-features strong {
        font-size: 16px;
    }


    .hero-image-card {
        height: 460px;

        transform: none;
    }


    .floating-card-top {
        left: 18px;
    }


    .trust-grid {
        grid-template-columns: 1fr;
    }


    .trust-item,
    .trust-item:first-child {
        padding:
            27px 0;

        border-right: 0;

        border-bottom:
            1px solid #ededee;
    }


    .section {
        padding:
            85px 0;
    }


    .services-grid {
        grid-template-columns: 1fr;
    }


    .service-card {
        min-height: 330px;
    }


    .about-visual {
        min-height: 460px;
    }


    .about-image {
        right: 20px;
    }


    .about-badge {
        width: 125px;
        height: 125px;

        bottom: 30px;
    }


    .about-badge strong {
        font-size: 19px;
    }


    .about-points {
        grid-template-columns: 1fr;
    }


    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }


    .stat,
    .stat:first-child {
        padding: 35px 20px;

        border-bottom:
            1px solid rgba(255,255,255,.15);
    }


    .fleet-showcase {
        grid-template-columns: 1fr;
    }


    .fleet-image {
        min-height: 350px;
    }


    .fleet-content {
        padding:
            42px 28px;
    }


    .fleet-content h3 {
        font-size: 32px;
    }


    .contact-section {
        padding:
            80px 0;
    }


    .footer-inner {
        flex-direction: column;

        align-items: flex-start;
    }

}


/* FLEET PHOTO V2 */

.fleet-photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.vehicle-photo-card {
    position: relative;
    min-height: 570px;

    overflow: hidden;

    border-radius: 28px;

    background: #17191d;

    box-shadow:
        0 25px 70px rgba(20,20,25,.12);

    transition:
        transform .4s cubic-bezier(.2,.65,.3,1),
        box-shadow .4s ease;
}

.vehicle-photo-card:hover {
    transform: translateY(-10px);

    box-shadow:
        0 38px 90px rgba(20,20,25,.20);
}

.vehicle-photo {
    position: absolute;
    inset: 0;

    background-size: cover;
    background-position: center;

    transform: scale(1.01);

    transition:
        transform 1s cubic-bezier(.2,.65,.3,1);
}

.vehicle-photo-card:hover .vehicle-photo {
    transform: scale(1.07);
}

.vehicle-photo::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(10,11,14,.96) 0%,
            rgba(10,11,14,.58) 38%,
            rgba(10,11,14,.06) 75%
        );
}

.vehicle-photo-one {
    background-image:
        url("/static/uploads/yilmaz3.png");
}

.vehicle-photo-two {
    background-image:
        url("/static/uploads/yilmaz3.png");
}

.vehicle-photo-three {
    background-image:
        url("/static/uploads/yilmaz3.png");
}

.vehicle-photo-content {
    position: absolute;

    z-index: 2;

    left: 0;
    right: 0;
    bottom: 0;

    padding: 34px;

    color: white;
}

.vehicle-photo-content > span {
    display: inline-block;

    margin-bottom: 13px;

    color: rgba(255,255,255,.48);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 2px;
}

.vehicle-photo-content h3 {
    font-size: 29px;

    line-height: 1.05;

    letter-spacing: -1.4px;
}

.vehicle-photo-content p {
    margin-top: 14px;

    max-width: 340px;

    color: rgba(255,255,255,.58);

    font-size: 13px;

    line-height: 1.7;
}


@media (max-width: 1000px) {

    .fleet-photo-grid {
        grid-template-columns: 1fr 1fr;
    }

    .vehicle-photo-card:last-child {
        grid-column: 1 / -1;
    }

}


@media (max-width: 700px) {

    .fleet-photo-grid {
        grid-template-columns: 1fr;
    }

    .vehicle-photo-card,
    .vehicle-photo-card:last-child {
        grid-column: auto;

        min-height: 460px;
    }

}


/* REAL MULTI PAGE HOME */

.home-only-hero {
    min-height: 100vh;
    padding-bottom: 115px;
}

.home-navigation {
    position: absolute;

    z-index: 10;

    left: 50%;
    bottom: 22px;

    width: min(calc(100% - 48px), 1240px);

    transform: translateX(-50%);

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    background: rgba(19,20,24,.78);

    border: 1px solid rgba(255,255,255,.12);

    border-radius: 22px;

    backdrop-filter: blur(22px);

    overflow: hidden;
}

.home-navigation a {
    position: relative;

    min-height: 84px;

    display: flex;
    align-items: center;

    gap: 12px;

    padding: 20px 24px;

    color: white;

    border-right:
        1px solid rgba(255,255,255,.10);

    transition:
        background .3s ease,
        padding-left .3s ease;
}

.home-navigation a:last-child {
    border-right: 0;
}

.home-navigation a:hover {
    background: rgba(200,16,46,.85);

    padding-left: 29px;
}

.home-navigation small {
    color: rgba(255,255,255,.38);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1px;
}

.home-navigation strong {
    font-size: 14px;
}

.home-navigation a > span {
    margin-left: auto;

    font-size: 19px;
}


@media (max-width: 850px) {

    .home-only-hero {
        padding-bottom: 250px;
    }

    .home-navigation {
        grid-template-columns: 1fr 1fr;
    }

    .home-navigation a:nth-child(2) {
        border-right: 0;
    }

    .home-navigation a:nth-child(-n+2) {
        border-bottom:
            1px solid rgba(255,255,255,.10);
    }

}


@media (max-width: 560px) {

    .home-only-hero {
        padding-bottom: 370px;
    }

    .home-navigation {
        width: calc(100% - 32px);

        grid-template-columns: 1fr;
    }

    .home-navigation a {
        min-height: 70px;

        border-right: 0;

        border-bottom:
            1px solid rgba(255,255,255,.10);
    }

    .home-navigation a:last-child {
        border-bottom: 0;
    }

}


/* HOME CENTER ALIGNMENT V4 */

.home-only-hero .hero-container {
    width: min(calc(100% - 48px), 1180px);

    grid-template-columns:
        minmax(0, 1fr)
        minmax(430px, 1fr);

    justify-content: center;
    justify-items: center;

    gap: 70px;
}

.home-only-hero .hero-content {
    width: 100%;
    max-width: 610px;

    margin: 0 auto;

    text-align: center;
}

.home-only-hero .eyebrow {
    justify-content: center;
}

.home-only-hero .hero-description {
    margin-left: auto;
    margin-right: auto;
}

.home-only-hero .hero-actions {
    justify-content: center;
}

.home-only-hero .hero-features {
    justify-content: center;
}

.home-only-hero .hero-features > div {
    min-width: 110px;
    align-items: center;

    text-align: center;
}

.home-only-hero .hero-visual {
    width: 100%;
    max-width: 545px;

    margin: 0 auto;
}

@media (max-width: 1050px) {

    .home-only-hero .hero-container {
        grid-template-columns: 1fr;
    }

    .home-only-hero .hero-content {
        max-width: 720px;
    }

    .home-only-hero .hero-visual {
        max-width: 590px;
    }

}


/* NAVBAR REAL LOGO FIX */

.brand {
    min-width: 235px;
}

.brand-logo {
    display: block;
    width: 235px;
    height: auto;
    max-height: 58px;
    object-fit: contain;
    object-position: left center;
}

@media (max-width: 760px) {

    .brand {
        min-width: 190px;
    }

    .brand-logo {
        width: 190px;
        max-height: 50px;
    }

}


/* YILMAZ TURIZM NAVBAR LOGO FINAL SIZE */

.site-header .brand {
    min-width: 285px;
    overflow: visible;
}

.site-header .brand-logo {
    display: block !important;

    width: auto !important;
    height: 54px !important;

    max-width: none !important;
    max-height: none !important;

    object-fit: contain;
    object-position: left center;
}

@media (max-width: 1050px) {

    .site-header .brand {
        min-width: 235px;
    }

    .site-header .brand-logo {
        height: 48px !important;
    }

}

@media (max-width: 760px) {

    .site-header .brand {
        min-width: 205px;
    }

    .site-header .brand-logo {
        height: 43px !important;
    }

}


/* ACTIVE NAVIGATION */

.desktop-nav a.active {
    color: #ffffff;
}

.site-header.scrolled .desktop-nav a.active {
    color: #17191d;
}

.desktop-nav a.active::after {
    width: 100%;
}

.desktop-nav a.active::after {
    box-shadow:
        0 2px 8px rgba(200, 16, 46, .35);
}


/* YILMAZ TURIZM REAL IMAGES */

.hero-background {
    background-image:
        url("/static/uploads/yilmaz3.png") !important;
}

.hero-image {
    background-image:
        linear-gradient(
            145deg,
            rgba(200,16,46,.13),
            rgba(15,16,20,.15)
        ),
        url("/static/uploads/yilmaz3.png") !important;

    background-size: cover;
    background-position: center;
}


/* About image if used in homepage/components */

.about-image {
    background-image:
        linear-gradient(
            rgba(15,16,20,.10),
            rgba(15,16,20,.30)
        ),
        url("/static/uploads/yilmaz5.png") !important;
}


/* Old fleet card classes - real images only */

.vehicle-photo-one {
    background-image:
        url("/static/uploads/yilmaz4.png") !important;
}

.vehicle-photo-two {
    background-image:
        url("/static/uploads/yilmaz2.png") !important;
}

.vehicle-photo-three {
    background-image:
        url("/static/uploads/yilmaz1.png") !important;
}


/* REAL YILMAZ TURIZM HERO - PLACEHOLDER YOK */

.home-only-hero .hero-background {
    background-image:
        url("/static/uploads/yilmaz3.png") !important;

    background-size: cover !important;
    background-position: center !important;
}

.home-only-hero .hero-image {
    background-image:
        linear-gradient(
            145deg,
            rgba(200, 16, 46, .08),
            rgba(15, 16, 20, .12)
        ),
        url("/static/uploads/yilmaz3.png") !important;

    background-size: cover !important;
    background-position: center !important;
}


/* REAL VEHICLE IMAGE SOURCE - FINAL */

.home-only-hero .hero-background {
    background-image: url("/static/uploads/yilmaz3.png") !important;
    background-size: cover !important;
    background-position: center !important;
}

.home-only-hero .hero-image {
    background:
        linear-gradient(
            145deg,
            rgba(200, 16, 46, .08),
            rgba(15, 16, 20, .16)
        ),
        url("/static/uploads/yilmaz3.png") !important;

    background-size: cover !important;
    background-position: center !important;
}
