@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap");

:root {
    --red: #ed0014;
    --dark-red: #b9000f;
    --black: #080808;
    --white: #ffffff;
    --light-gray: #f6f6f6;
    --border: #e9e9e9;
    --text: #191919;
    --muted: #8b8b8b;
    --header-height: 88px;
    --brand-red: #e30613;
    --brand-dark-red: #a9000b;
    --brand-black: #101010;
    --brand-white: #ffffff;
    --brand-gray: #737373;
    --brand-light-gray: #f6f6f6;
    --brand-border: #e9e9e9;
    --corporate-header-height: 86px;
    --menu-red: #d90516;
    --menu-dark-red: #9f000c;
    --menu-black: #151515;
    --menu-white: #ffffff;
    --menu-gray: #747474;
    --menu-light-gray: #f6f6f6;
    --menu-border: #e9e9e9;
    --font-main: "Plus Jakarta Sans", Arial, sans-serif;
}



* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    background: var(--black);
    color: var(--text);
    font-family: var(--font-main);
    font-weight: 500;
}

    body.menu-open {
        overflow: hidden;
    }

a {
    color: inherit;
    text-decoration: none;
}

button {
    color: inherit;
    font: inherit;
}

img {
    display: block;
    max-width: 100%;
}








/* Ortak tipografi; bileşenlerin ölçü ve satır aralıkları korunur. */
h1, h2 { font-family: var(--font-main); font-weight: 800; }
h3, h4, h5, h6 { font-family: var(--font-main); font-weight: 700; }
p { font-weight: 500; }
strong, b { font-weight: 600; }
input, select, textarea { font-family: var(--font-main); font-weight: 500; }
.rota-about-point strong { font-weight: 700; }

/* Header */

.corporate-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    width: 100%;
    height: var(--corporate-header-height);
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--menu-border);
    box-shadow: 0 4px 22px rgba(0, 0, 0, 0.07);
    backdrop-filter: blur(13px);
}

.corporate-header-container {
    position: static;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(1450px, calc(100% - 44px));
    height: 100%;
    margin: 0 auto;
}

/* Logo */

.corporate-logo {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

    .corporate-logo img {
        display: block;
        width: 205px;
        max-height: 70px;
        object-fit: contain;
    }

/* Ana menü */

.corporate-navigation {
    height: 100%;
    margin-left: 35px;
}

.corporate-menu {
    display: flex;
    align-items: center;
    gap: 5px;
    height: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

    .corporate-menu > li {
        display: flex;
        align-items: center;
        height: 100%;
    }

.corporate-menu-link {
    display: flex;
    align-items: center;
    gap: 7px;
    height: 47px;
    padding: 0 15px;
    border: 0;
    border-radius: 7px;
    background: transparent;
    color: #252525;
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease;
}

    .corporate-menu-link:hover {
        background: #f7f7f7;
        color: var(--menu-red);
    }

/* Hizmetlerimiz oku */

.corporate-chevron {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(217, 5, 22, 0.07);
    color: var(--menu-red);
    transition: color 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

    .corporate-chevron svg {
        width: 12px;
        height: 12px;
        fill: none;
        stroke: currentColor;
        stroke-width: 2.2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

/* İletişim */

.corporate-contact-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    margin-left: 7px;
    padding: 0 20px;
    border: 2px solid var(--menu-red);
    border-radius: 7px;
    background: var(--menu-red);
    color: #ffffff;
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

    .corporate-contact-link:hover {
        background: #ffffff;
        color: var(--menu-red);
        transform: translateY(-2px);
    }

/* Mega menü dış yapı */

.corporate-mega-item,
.corporate-mega-wrapper {
    position: static;
}

.corporate-mega-wrapper {
    display: flex;
    align-items: center;
    height: 100%;
}

.corporate-mega-menu {
    position: absolute;
    top: calc(100% - 4px);
    right: 22px;
    left: 22px;
    z-index: 10000;
    visibility: hidden;
    overflow: hidden;
    max-width: 1406px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid var(--menu-border);
    border-top: 3px solid var(--menu-red);
    border-radius: 11px;
    box-shadow: 0 25px 65px rgba(0, 0, 0, 0.16);
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

/* Masaüstünde hover ile aç */

@media (min-width: 901px) {
    .corporate-mega-wrapper:hover > .corporate-mega-menu,
    .corporate-mega-wrapper:focus-within > .corporate-mega-menu {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .corporate-mega-wrapper:hover > .corporate-mega-button
    .corporate-chevron,
    .corporate-mega-wrapper:focus-within > .corporate-mega-button
    .corporate-chevron {
        background: var(--menu-red);
        color: #ffffff;
        transform: rotate(180deg);
    }
}

/* Mega menü üst şerit */

.corporate-mega-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 21px 26px;
    background: linear-gradient( 110deg, #121212 0%, #1b1b1b 72%, #280003 100% );
    color: #ffffff;
}

    .corporate-mega-top > div > span {
        display: block;
        margin-bottom: 4px;
        color: #e85b65;
        font-size: 9px;
        font-weight: 800;
        letter-spacing: 1.6px;
        text-transform: uppercase;
    }

    .corporate-mega-top h2 {
        margin: 0 0 4px;
        color: #ffffff;
        font-family: var(--font-main);
        font-size: 21px;
        font-weight: 800;
    }

    .corporate-mega-top p {
        margin: 0;
        color: #bcbcbc;
        font-size: 11px;
    }

    .corporate-mega-top > a {
        display: inline-flex;
        align-items: center;
        gap: 11px;
        flex: 0 0 auto;
        min-height: 40px;
        padding: 0 15px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 7px;
        background: rgba(255, 255, 255, 0.07);
        color: #ffffff;
        font-size: 11px;
        font-weight: 800;
        text-decoration: none;
        transition: background 0.2s ease;
    }

        .corporate-mega-top > a:hover {
            background: var(--menu-red);
        }

/* Mega menü sütunları */

.corporate-mega-columns {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 20px;
}

.corporate-mega-column {
    min-width: 0;
    padding: 3px 20px 7px;
    border-right: 1px solid var(--menu-border);
}

    .corporate-mega-column:first-child {
        padding-left: 5px;
    }

    .corporate-mega-column:last-child {
        padding-right: 5px;
        border-right: 0;
    }

/* Açılır menü ikonları */

.corporate-column-heading {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 11px;
    padding-bottom: 11px;
    border-bottom: 1px solid var(--menu-border);
}

.corporate-column-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    border-radius: 9px;
    background: #fff1f2;
    color: var(--menu-red);
}

    .corporate-column-icon svg {
        width: 21px;
        height: 21px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.7;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.corporate-column-heading > div > span {
    display: block;
    margin-bottom: 2px;
    color: #999999;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.corporate-column-heading h3 {
    margin: 0;
    color: #202020;
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 700;
}

/* Hizmet listeleri */

.corporate-service-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3px 7px;
    max-height: 275px;
    margin: 0;
    padding: 0 5px 0 0;
    overflow-y: auto;
    list-style: none;
}

    .corporate-service-list a {
        position: relative;
        display: flex;
        align-items: center;
        min-height: 33px;
        padding: 6px 7px 6px 18px;
        border-radius: 6px;
        color: #555555;
        font-size: 9.5px;
        font-weight: 600;
        line-height: 1.35;
        text-decoration: none;
        transition: color 0.18s ease, background 0.18s ease, transform 0.18s ease;
    }

        .corporate-service-list a::before {
            position: absolute;
            left: 7px;
            width: 4px;
            height: 4px;
            background: #d5d5d5;
            border-radius: 50%;
            content: "";
        }

        .corporate-service-list a:hover {
            background: #fff2f3;
            color: var(--menu-red);
            transform: translateX(2px);
        }

            .corporate-service-list a:hover::before {
                background: var(--menu-red);
            }

/* Mobil butonu */

.corporate-mobile-button {
    display: none;
    width: 42px;
    height: 42px;
    padding: 9px;
    border: 1px solid var(--menu-border);
    border-radius: 7px;
    background: #ffffff;
    cursor: pointer;
}

    .corporate-mobile-button span {
        display: block;
        width: 100%;
        height: 2px;
        margin: 5px 0;
        background: #151515;
        transition: opacity 0.22s ease, transform 0.22s ease;
    }

    .corporate-mobile-button.is-open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .corporate-mobile-button.is-open span:nth-child(2) {
        opacity: 0;
    }

    .corporate-mobile-button.is-open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

/* Tablet ve mobil */

@media (max-width: 900px) {
    :root {
        --corporate-header-height: 74px;
    }

    .corporate-header-container {
        width: calc(100% - 24px);
    }

    .corporate-logo img {
        width: 160px;
        max-height: 58px;
    }

    .corporate-mobile-button {
        display: block;
    }

    .corporate-navigation {
        position: fixed;
        top: var(--corporate-header-height);
        right: 0;
        bottom: 0;
        left: 0;
        visibility: hidden;
        height: calc(100vh - var(--corporate-header-height));
        margin: 0;
        overflow-y: auto;
        background: #ffffff;
        opacity: 0;
        transform: translateX(100%);
        transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
    }

        .corporate-navigation.is-open {
            visibility: visible;
            opacity: 1;
            transform: translateX(0);
        }

    .corporate-menu {
        display: block;
        height: auto;
        padding: 10px 15px 35px;
    }

        .corporate-menu > li {
            display: block;
            height: auto;
            border-bottom: 1px solid var(--menu-border);
        }

    .corporate-menu-link {
        justify-content: flex-start;
        width: 100%;
        height: 54px;
        padding: 0 8px;
        font-size: 14px;
    }

    .corporate-chevron {
        margin-left: auto;
    }

    .corporate-contact-link {
        min-height: 48px;
        margin: 14px 0;
    }

    .corporate-mega-wrapper {
        display: block;
        height: auto;
    }

    .corporate-mega-menu {
        display: none;
        position: static;
        visibility: visible;
        width: 100%;
        max-width: none;
        margin-bottom: 13px;
        border-radius: 9px;
        box-shadow: none;
        opacity: 1;
        transform: none;
        pointer-events: auto;
    }

    .corporate-mega-wrapper.is-open > .corporate-mega-menu {
        display: block;
    }

    .corporate-mega-wrapper.is-open > .corporate-mega-button
    .corporate-chevron {
        background: var(--menu-red);
        color: #ffffff;
        transform: rotate(180deg);
    }

    .corporate-mega-top {
        display: block;
        padding: 18px;
    }

        .corporate-mega-top > a {
            margin-top: 13px;
        }

    .corporate-mega-columns {
        grid-template-columns: 1fr;
        padding: 10px;
    }

    .corporate-mega-column,
    .corporate-mega-column:first-child,
    .corporate-mega-column:last-child {
        padding: 14px 5px;
        border-right: 0;
        border-bottom: 1px solid var(--menu-border);
    }

        .corporate-mega-column:last-child {
            border-bottom: 0;
        }

    .corporate-service-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-height: none;
    }
}

@media (max-width: 550px) {
    .corporate-service-list {
        grid-template-columns: 1fr;
    }

    .corporate-mega-top h2 {
        font-size: 18px;
    }
}
/* ========================================
   SLIDER
======================================== */

.hero-slider {
    position: relative;
    height: calc(100vh - var(--header-height));
    min-height: 610px;
    overflow: hidden;
    background: var(--black);
}

.slide {
    position: absolute;
    inset: 0;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.75s ease, visibility 0.75s ease;
}

    .slide.active {
        visibility: visible;
        opacity: 1;
    }

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.04);
    transition: transform 6s ease;
}

.slide.active .slide-image {
    transform: scale(1);
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(0, 0, 0, 0.97) 0%, rgba(0, 0, 0, 0.82) 34%, rgba(0, 0, 0, 0.36) 68%, rgba(0, 0, 0, 0.15) 100% ), linear-gradient( 0deg, rgba(0, 0, 0, 0.6) 0%, transparent 45% );
}

.slide-content {
    position: absolute;
    top: 50%;
    left: max(58px, calc((100% - 1380px) / 2));
    z-index: 5;
    width: min(660px, calc(100% - 116px));
    color: var(--white);
    transform: translateY(-50%);
}

.slide-label {
    display: inline-block;
    margin-bottom: 17px;
    color: var(--red);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2.8px;
    text-transform: uppercase;
}

.slide h1,
.slide h2 {
    max-width: 670px;
    margin-bottom: 20px;
    color: var(--white);
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -2.4px;
}

    .slide h1 strong,
    .slide h2 strong {
        display: block;
        color: var(--red);
        font-weight: 800;
    }

.slide p {
    max-width: 570px;
    margin-bottom: 29px;
    color: #eeeeee;
    font-size: 17px;
    line-height: 1.65;
}

.slide-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 26px;
    border: 2px solid transparent;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 800;
    transition: color 0.22s ease, background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

    .button:hover {
        transform: translateY(-2px);
    }

.button-primary {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
}

    .button-primary:hover {
        background: var(--dark-red);
        border-color: var(--dark-red);
    }

.button-outline {
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.65);
    color: var(--white);
}

    .button-outline:hover {
        background: var(--white);
        border-color: var(--white);
        color: var(--black);
    }

/* ========================================
   SLIDER KONTROLLERİ
======================================== */

.slider-control {
    position: absolute;
    top: 50%;
    z-index: 10;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.4);
    color: var(--white);
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
    transition: background 0.22s ease, border-color 0.22s ease;
}

    .slider-control:hover {
        background: var(--red);
        border-color: var(--red);
    }

.previous-slide {
    left: 20px;
}

.next-slide {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 27px;
    left: 50%;
    z-index: 10;
    display: flex;
    gap: 8px;
    transform: translateX(-50%);
}

.slider-dot {
    width: 29px;
    height: 4px;
    border: 0;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: width 0.22s ease, background 0.22s ease;
}

    .slider-dot.active {
        width: 47px;
        background: var(--red);
    }

/* ========================================
   KÜÇÜK MASAÜSTÜ
======================================== */

@media (max-width: 1250px) {
    :root {
        --header-height: 80px;
    }

    .header-container {
        width: calc(100% - 28px);
    }

    .logo img {
        width: 170px;
        max-height: 64px;
    }

    .main-navigation {
        margin-left: 13px;
    }

    .menu > li > a,
    .dropdown-button {
        gap: 3px;
        padding: 0 7px;
        font-size: 10px;
    }

        .menu > li > a::after,
        .dropdown-button::after {
            right: 7px;
            left: 7px;
        }

    .dropdown-arrow {
        flex-basis: 21px;
        width: 21px;
        height: 21px;
    }

        .dropdown-arrow svg {
            width: 12px;
            height: 12px;
        }

    .dropdown-menu {
        width: 305px;
    }
}

/* ========================================
   TABLET VE MOBİL MENÜ
======================================== */

@media (max-width: 1050px) {
    :root {
        --header-height: 74px;
    }

    .site-header {
        position: sticky;
        top: 0;
    }

    .header-container {
        width: calc(100% - 25px);
    }

    .logo img {
        width: 160px;
        max-height: 58px;
    }

    .mobile-menu-button {
        display: block;
    }

    .main-navigation {
        position: fixed;
        top: var(--header-height);
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 1200;
        visibility: hidden;
        width: 100%;
        height: calc(100vh - var(--header-height));
        margin: 0;
        overflow-x: hidden;
        overflow-y: auto;
        background: var(--white);
        opacity: 0;
        transform: translateX(100%);
        transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
    }

        .main-navigation.active {
            visibility: visible;
            opacity: 1;
            transform: translateX(0);
        }

    .menu {
        display: block;
        height: auto;
        padding: 8px 16px 40px;
    }

        .menu > li {
            height: auto;
            border-bottom: 1px solid var(--border);
        }

            .menu > li > a,
            .dropdown-button {
                justify-content: space-between;
                width: 100%;
                height: auto;
                min-height: 52px;
                padding: 13px 7px;
                color: var(--text);
                font-size: 13px;
                text-align: left;
            }

                .menu > li > a::after,
                .dropdown-button::after {
                    display: none;
                }

                .dropdown-button .dropdown-arrow {
                    flex-basis: 27px;
                    width: 27px;
                    height: 27px;
                    margin-left: auto;
                }

    /* Masaüstü hover davranışını mobilde iptal eder */

    .has-dropdown:hover > .dropdown-menu {
        display: none;
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
    }

    /* Mobil dropdown kapalı */

    .dropdown-menu,
    .has-dropdown > .dropdown-menu {
        position: static;
        display: none;
        visibility: visible;
        width: 100%;
        max-height: none;
        padding: 6px;
        overflow: visible;
        background: var(--light-gray);
        border: 0;
        border-left: 3px solid var(--red);
        border-radius: 7px;
        box-shadow: none;
        opacity: 1;
        transform: none;
        pointer-events: auto;
    }

    /* Mobil dropdown açık */

    .has-dropdown.open > .dropdown-menu,
    .has-dropdown.open:hover > .dropdown-menu {
        display: block;
        visibility: visible;
        opacity: 1;
        transform: none;
        pointer-events: auto;
    }

    .dropdown-menu::before {
        display: none;
    }

    .dropdown-title {
        margin-bottom: 2px;
        padding: 8px 8px 6px;
        font-size: 9px;
    }

    .dropdown-menu li {
        display: block;
        width: 100%;
    }

    .dropdown-menu a {
        width: 100%;
        min-height: 47px;
        padding: 6px 7px;
    }

    .service-icon {
        flex-basis: 33px;
        width: 33px;
        height: 33px;
    }

        .service-icon svg {
            width: 17px;
            height: 17px;
        }

    .service-text strong {
        font-size: 10.5px;
    }

    .service-text small {
        font-size: 8.5px;
    }

    .slide-content {
        left: 45px;
        width: calc(100% - 90px);
    }

    .slide h1,
    .slide h2 {
        font-size: clamp(38px, 8vw, 58px);
    }
}

/* ========================================
   TELEFON
======================================== */

@media (max-width: 650px) {
    :root {
        --header-height: 68px;
    }

    .header-container {
        width: calc(100% - 20px);
    }

    .logo img {
        width: 145px;
        max-height: 53px;
    }

    .mobile-menu-button {
        width: 40px;
        height: 40px;
        padding: 8px;
    }

    .menu {
        padding: 6px 11px 35px;
    }

        .menu > li > a,
        .dropdown-button {
            min-height: 49px;
            padding: 11px 6px;
            font-size: 12px;
        }

    .dropdown-menu {
        padding: 5px;
    }

        .dropdown-menu a {
            gap: 8px;
            min-height: 45px;
            padding: 5px 6px;
        }

    .service-icon {
        flex-basis: 31px;
        width: 31px;
        height: 31px;
        border-radius: 7px;
    }

        .service-icon svg {
            width: 16px;
            height: 16px;
        }

    .service-text strong {
        font-size: 10px;
    }

    .service-text small {
        margin-top: 1px;
        font-size: 8px;
    }

    .link-arrow {
        font-size: 14px;
    }

    .hero-slider {
        height: calc(100vh - var(--header-height));
        min-height: 620px;
    }

    .slide-image {
        object-position: 63% center;
    }

    .slide-overlay {
        background: rgba(0, 0, 0, 0.73);
    }

    .slide-content {
        top: 48%;
        left: 22px;
        width: calc(100% - 44px);
    }

    .slide-label {
        margin-bottom: 13px;
        font-size: 10px;
        letter-spacing: 1.8px;
    }

    .slide h1,
    .slide h2 {
        margin-bottom: 16px;
        font-size: 36px;
        letter-spacing: -1.4px;
    }

    .slide p {
        margin-bottom: 22px;
        font-size: 13.5px;
        line-height: 1.6;
    }

    .slide-buttons {
        gap: 8px;
    }

    .button {
        width: 100%;
        min-height: 48px;
        padding: 0 20px;
        font-size: 12px;
    }

    .slider-control {
        display: none;
    }

    .slider-dots {
        bottom: 20px;
    }

    .slider-dot {
        width: 25px;
    }

        .slider-dot.active {
            width: 40px;
        }
}

/* ========================================
   FİNAL MENÜ VE SLIDER DÜZELTMELERİ
======================================== */

/*
 * Sticky menünün çalışmasını engellememesi için
 * body üzerinde overflow-x hidden yerine clip kullanıyoruz.
 */
html,
body {
    width: 100%;
    min-height: 100%;
}

body {
    overflow-x: clip;
}

/*
 * Menü sayfa kaydırıldığında üstte kalır.
 */
.site-header {
    position: sticky;
    top: 0;
    right: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
}

/*
 * Masaüstü menü yazıları büyütüldü.
 */
.menu > li > a,
.dropdown-button {
    font-size: 13px;
    font-weight: 700;
}

/*
 * Dropdown ana başlıkları büyütüldü.
 */
.dropdown-title {
    font-size: 10.5px;
}

/*
 * Dropdown içindeki hizmet ve araç isimleri büyütüldü.
 */
.service-text strong {
    font-size: 12px;
}

.service-text small {
    font-size: 9.5px;
}

/*
 * Slider, menüden sonra ekranın kalan kısmını tamamen kaplar.
 * Böylece menü + slider toplamı bir ekran yüksekliği olur.
 */
.hero-slider {
    width: 100%;
    height: calc(100vh - var(--header-height));
    height: calc(100dvh - var(--header-height));
    min-height: 0;
}

/*
 * Her slayt ve görsel alanın tamamını kaplar.
 */
.slide {
    width: 100%;
    height: 100%;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/*
 * Küçük masaüstü ekranlarda menünün taşmasını önler.
 */
@media (max-width: 1250px) {
    .menu > li > a,
    .dropdown-button {
        padding-right: 7px;
        padding-left: 7px;
        font-size: 11.5px;
    }

    .service-text strong {
        font-size: 11.5px;
    }

    .service-text small {
        font-size: 9px;
    }
}

/*
 * Tablet ve mobil menü yazıları.
 */
@media (max-width: 1050px) {
    .site-header {
        position: sticky;
        top: 0;
        z-index: 9999;
    }

    .menu > li > a,
    .dropdown-button {
        font-size: 14px;
    }

    .dropdown-title {
        font-size: 10px;
    }

    .service-text strong {
        font-size: 11.5px;
    }

    .service-text small {
        font-size: 9px;
    }

    .hero-slider {
        height: calc(100vh - var(--header-height));
        height: calc(100dvh - var(--header-height));
        min-height: 0;
    }
}

/*
 * Telefon görünümü.
 */
@media (max-width: 650px) {
    .menu > li > a,
    .dropdown-button {
        font-size: 13.5px;
    }

    .service-text strong {
        font-size: 11px;
    }

    .service-text small {
        font-size: 8.5px;
    }

    .hero-slider {
        height: calc(100vh - var(--header-height));
        height: calc(100dvh - var(--header-height));
        min-height: 0;
    }

    .slide-image {
        object-position: 62% center;
    }
}
/* Menü başlık yazıları: mevcut responsive değerler */
.menu > li > a,
.dropdown-button {
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.25px;
    line-height: 1;
}
@media (max-width: 1250px) {
    .menu > li > a,
    .dropdown-button {
        font-size: 12.5px;
        letter-spacing: -0.2px;
    }
}
@media (max-width: 1050px) {
    .menu > li > a,
    .dropdown-button {
        font-size: 15px;
        letter-spacing: -0.2px;
        line-height: 1.3;
    }
}
@media (max-width: 650px) {
    .menu > li > a,
    .dropdown-button { font-size: 14.5px; }
}
@media (min-width: 1051px) {
    .menu > li > a,
    .dropdown-button {
        font-size: 16px;
        letter-spacing: -0.25px;
    }
}
/* ========================================
   PREMIUM ARAÇ PROJELENDİRME KARTLARI
======================================== */

.vehicle-projects {
    padding: 90px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%);
}

.vehicle-projects-container {
    width: min(1450px, calc(100% - 44px));
    margin: 0 auto;
}

.vehicle-projects-heading {
    max-width: 800px;
    margin: 0 auto 45px;
    text-align: center;
}

    .vehicle-projects-heading > span {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 11px;
        color: #ed0014;
        font-family: var(--font-main);
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

        .vehicle-projects-heading > span::before,
        .vehicle-projects-heading > span::after {
            width: 28px;
            height: 2px;
            background: #ed0014;
            content: "";
        }

    .vehicle-projects-heading h2 {
        margin-bottom: 14px;
        color: #141414;
        font-family: var(--font-main);
        font-size: clamp(32px, 4vw, 48px);
        font-weight: 800;
        line-height: 1.15;
        letter-spacing: -1.5px;
    }

    .vehicle-projects-heading p {
        color: #6b6b6b;
        font-size: 14px;
        line-height: 1.7;
    }

.vehicle-projects-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.vehicle-card {
    position: relative;
    display: flex;
    overflow: hidden;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-top: 4px solid #ed0014;
    border-radius: 13px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

    .vehicle-card:hover {
        border-color: rgba(237, 0, 20, 0.3);
        border-top-color: #ed0014;
        box-shadow: 0 20px 45px rgba(0, 0, 0, 0.13);
        transform: translateY(-7px);
    }

.vehicle-card-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 270px;
    margin: 11px 11px 0;
    overflow: hidden;
    background: radial-gradient( circle at center, #ffffff 0%, #f4f4f4 72%, #eeeeee 100% );
    border-radius: 9px;
}

    .vehicle-card-image::after {
        position: absolute;
        right: 23%;
        bottom: 24px;
        left: 23%;
        height: 13px;
        background: rgba(0, 0, 0, 0.13);
        border-radius: 50%;
        content: "";
        filter: blur(9px);
    }

    .vehicle-card-image img {
        position: relative;
        z-index: 2;
        width: 91%;
        height: 91%;
        object-fit: contain;
        transition: transform 0.35s ease;
    }

.vehicle-card:hover .vehicle-card-image img {
    transform: scale(1.055);
}

.vehicle-card-number {
    position: absolute;
    top: 13px;
    left: 13px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 37px;
    height: 37px;
    border-radius: 8px;
    background: #111111;
    color: #ffffff;
    font-family: var(--font-main);
    font-size: 11px;
    font-weight: 800;
}

.vehicle-card-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 21px;
}

.vehicle-card-title {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 13px;
}

.vehicle-category {
    display: block;
    margin-bottom: 4px;
    color: #9a9a9a;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.vehicle-card-title h3 {
    color: #171717;
    font-family: var(--font-main);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.6px;
}

.vehicle-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    flex: 0 0 auto;
    padding: 6px 9px;
    border-radius: 20px;
    background: #eaf9ee;
    color: #18863a;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
}

    .vehicle-status::before {
        width: 6px;
        height: 6px;
        background: #20a648;
        border-radius: 50%;
        content: "";
    }

.vehicle-conversion-label {
    display: inline-flex;
    align-self: flex-start;
    align-items: center;
    min-height: 29px;
    margin-bottom: 18px;
    padding: 6px 11px;
    border-radius: 5px;
    background: #fff0f1;
    color: #cf0011;
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: 0.35px;
    text-transform: uppercase;
}

.vehicle-specifications {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    margin-bottom: 17px;
}

.vehicle-specification {
    min-width: 0;
    padding: 10px 8px;
    background: #f7f7f7;
    border: 1px solid #ededed;
    border-radius: 7px;
    text-align: center;
}

    .vehicle-specification span {
        display: block;
        margin-bottom: 4px;
        color: #969696;
        font-size: 8.5px;
        font-weight: 700;
        text-transform: uppercase;
    }

    .vehicle-specification strong {
        display: block;
        overflow: hidden;
        color: #252525;
        font-size: 10.5px;
        font-weight: 800;
        line-height: 1.3;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

.vehicle-detail-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: auto;
    padding: 12px 2px;
    border: 0;
    border-top: 1px solid #eeeeee;
    background: transparent;
    color: #363636;
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;
}

    .vehicle-detail-button:hover {
        color: #ed0014;
    }

.detail-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #fff0f1;
    color: #ed0014;
    transition: color 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

    .detail-arrow svg {
        width: 14px;
        height: 14px;
        fill: none;
        stroke: currentColor;
        stroke-width: 2.2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.vehicle-detail-button.is-open .detail-arrow {
    background: #ed0014;
    color: #ffffff;
    transform: rotate(180deg);
}

.vehicle-detail-content {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    transition: grid-template-rows 0.3s ease, margin 0.3s ease;
}

.vehicle-detail-inner {
    min-height: 0;
    overflow: hidden;
}

.vehicle-detail-content.is-open {
    grid-template-rows: 1fr;
    margin-bottom: 13px;
}

.vehicle-detail-inner ul {
    display: grid;
    gap: 8px;
    padding: 12px;
    background: #fff7f7;
    border: 1px solid rgba(237, 0, 20, 0.2);
    border-radius: 7px;
    list-style: none;
}

.vehicle-detail-inner li {
    position: relative;
    padding-left: 19px;
    color: #606060;
    font-size: 10px;
    line-height: 1.5;
}

    .vehicle-detail-inner li::before {
        position: absolute;
        top: 1px;
        left: 0;
        color: #ed0014;
        content: "✓";
        font-weight: 800;
    }

.vehicle-info-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 47px;
    padding: 0 17px;
    border: 2px solid #ed0014;
    border-radius: 7px;
    background: #ed0014;
    color: #ffffff;
    font-family: var(--font-main);
    font-size: 12px;
    font-weight: 800;
    transition: color 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

    .vehicle-info-button:hover {
        background: #ffffff;
        color: #ed0014;
        transform: translateY(-2px);
    }

@media (max-width: 1050px) {
    .vehicle-projects {
        padding: 65px 0;
    }

    .vehicle-projects-container {
        width: calc(100% - 30px);
    }

    .vehicle-projects-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 19px;
    }
}

@media (max-width: 650px) {
    .vehicle-projects {
        padding: 50px 0;
    }

    .vehicle-projects-container {
        width: calc(100% - 20px);
    }

    .vehicle-projects-heading {
        margin-bottom: 28px;
    }

        .vehicle-projects-heading h2 {
            font-size: 29px;
            letter-spacing: -1px;
        }

        .vehicle-projects-heading p {
            font-size: 12.5px;
        }

    .vehicle-projects-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .vehicle-card-image {
        height: 235px;
    }

    .vehicle-card-content {
        padding: 18px;
    }

    .vehicle-card-title h3 {
        font-size: 22px;
    }
}
/* ========================================
   MEGA MENÜ KESİN HOVER ÇÖZÜMÜ
======================================== */

.corporate-mega-details {
    position: static;
    height: 100%;
}

.corporate-mega-button {
    width: auto;
}

/* Masaüstü */

@media (min-width: 901px) {
    .corporate-mega-details:hover > .corporate-mega-menu,
    .corporate-mega-details:focus-within > .corporate-mega-menu {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .corporate-mega-details:hover > .corporate-mega-button
    .corporate-chevron,
    .corporate-mega-details:focus-within > .corporate-mega-button
    .corporate-chevron {
        background: var(--brand-red);
        color: #ffffff;
        transform: rotate(180deg);
    }
}

/* Mobil */

@media (max-width: 900px) {
    .corporate-mega-button {
        width: 100%;
    }

    .corporate-mega-menu {
        display: none;
        position: static;
        visibility: visible;
        width: 100%;
        max-width: none;
        margin-bottom: 13px;
        opacity: 1;
        transform: none;
        pointer-events: auto;
    }

    .corporate-mega-details.is-open > .corporate-mega-menu {
        display: block;
    }

    .corporate-mega-details.is-open > .corporate-mega-button
    .corporate-chevron {
        background: var(--brand-red);
        color: #ffffff;
        transform: rotate(180deg);
    }
}
/* ========================================
   FOOTER
======================================== */

.site-footer {
    position: relative;
    overflow: hidden;
    background: radial-gradient( circle at top right, rgba(217, 5, 22, 0.15), transparent 30% ), #111111;
    color: #ffffff;
    border-top: 4px solid var(--menu-red, #d90516);
}

    .site-footer::before {
        position: absolute;
        top: 0;
        left: 0;
        width: 38%;
        height: 1px;
        background: linear-gradient( 90deg, var(--menu-red, #d90516), transparent );
        content: "";
    }

.footer-container {
    position: relative;
    z-index: 1;
    width: min(1400px, calc(100% - 44px));
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.35fr 0.75fr 1fr 1fr;
    gap: 50px;
    padding: 64px 0 48px;
}

/* Logo ve açıklama */

.footer-logo {
    display: inline-flex;
    margin-bottom: 20px;
}

    .footer-logo img {
        width: 215px;
        max-height: 82px;
        object-fit: contain;
        filter: brightness(0) invert(1);
    }

.footer-brand p {
    max-width: 340px;
    color: #aaaaaa;
    font-size: 12px;
    line-height: 1.75;
}

/* Sütun başlıkları */

.footer-column h3 {
    position: relative;
    margin-bottom: 22px;
    padding-bottom: 11px;
    color: #ffffff;
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 700;
}

    .footer-column h3::after {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 32px;
        height: 2px;
        background: var(--menu-red, #d90516);
        content: "";
    }

/* Hızlı bağlantılar */

.footer-links {
    display: grid;
    gap: 11px;
    margin: 0;
    padding: 0;
    list-style: none;
}

    .footer-links a {
        position: relative;
        display: inline-flex;
        align-items: center;
        padding-left: 14px;
        color: #adadad;
        font-size: 11.5px;
        font-weight: 600;
        text-decoration: none;
        transition: color 0.2s ease, transform 0.2s ease;
    }

        .footer-links a::before {
            position: absolute;
            left: 0;
            width: 5px;
            height: 5px;
            background: var(--menu-red, #d90516);
            border-radius: 50%;
            content: "";
        }

        .footer-links a:hover {
            color: #ffffff;
            transform: translateX(3px);
        }

/* İletişim bilgileri */

.footer-contact {
    display: grid;
    gap: 17px;
    margin: 0;
    padding: 0;
    list-style: none;
}

    .footer-contact li,
    .footer-address {
        display: flex;
        align-items: flex-start;
        gap: 11px;
    }

.footer-contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(217, 5, 22, 0.35);
    border-radius: 8px;
    background: rgba(217, 5, 22, 0.1);
    color: #ef3342;
}

    .footer-contact-icon svg {
        width: 17px;
        height: 17px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.7;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.footer-contact li div {
    display: flex;
    flex-direction: column;
}

    .footer-contact li div > span {
        margin-bottom: 3px;
        color: #737373;
        font-size: 8.5px;
        font-weight: 800;
        letter-spacing: 0.8px;
        text-transform: uppercase;
    }

.footer-contact a {
    color: #c2c2c2;
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

    .footer-contact a:hover {
        color: #ffffff;
    }

/* Adres */

.footer-address p {
    margin: 0;
    color: #adadad;
    font-size: 11px;
    line-height: 1.65;
}

.footer-map-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 17px;
    margin-left: 45px;
    color: #ef3342;
    font-size: 10.5px;
    font-weight: 800;
    text-decoration: none;
    transition: color 0.2s ease, gap 0.2s ease;
}

    .footer-map-link:hover {
        gap: 13px;
        color: #ffffff;
    }

/* Alt bölüm */

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

    .footer-bottom p {
        margin: 0;
        color: #777777;
        font-size: 10.5px;
    }

.footer-top-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #a9a9a9;
    font-size: 10.5px;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s ease;
}

    .footer-top-link span {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 29px;
        height: 29px;
        border-radius: 50%;
        background: var(--menu-red, #d90516);
        color: #ffffff;
    }

    .footer-top-link:hover {
        color: #ffffff;
    }

/* Tablet */

@media (max-width: 1000px) {
    .footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 38px;
    }
}

/* Telefon */

@media (max-width: 600px) {
    .footer-container {
        width: calc(100% - 28px);
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 48px 0 35px;
    }

    .footer-logo img {
        width: 190px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 17px;
        padding: 22px 0;
    }

    .footer-map-link {
        margin-left: 45px;
    }
}
/* ========================================
   SABİT SOSYAL MEDYA BUTONLARI
======================================== */

.floating-social {
    position: fixed;
    top: 50%;
    right: 0;
    z-index: 9000;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transform: translateY(-50%);
}

.floating-social-link {
    display: flex;
    align-items: center;
    width: 52px;
    height: 50px;
    overflow: hidden;
    background: #151515;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-right: 0;
    border-radius: 9px 0 0 9px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    color: #ffffff;
    text-decoration: none;
    transition: width 0.3s ease, background 0.25s ease, transform 0.25s ease;
}

    .floating-social-link:hover {
        width: 145px;
        transform: translateX(0);
    }

.floating-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 52px;
    width: 52px;
    height: 50px;
}

    .floating-social-icon svg {
        width: 22px;
        height: 22px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.facebook-link .floating-social-icon svg {
    fill: currentColor;
    stroke: none;
}

.floating-social-text {
    padding-right: 17px;
    font-family: var(--font-main);
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

/* Instagram */

.instagram-link:hover {
    background: linear-gradient( 135deg, #833ab4, #e1306c, #f77737 );
}

/* Facebook */

.facebook-link:hover {
    background: #1877f2;
}

/* ========================================
   ALT SABİT İLETİŞİM BUTONLARI
======================================== */

.floating-contact-bar {
    position: fixed;
    bottom: 18px;
    left: 50%;
    z-index: 8999;
    display: flex;
    gap: 10px;
    padding: 7px;
    background: rgba(18, 18, 18, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.27), 0 4px 12px rgba(0, 0, 0, 0.14);
    backdrop-filter: blur(13px);
    transform: translateX(-50%);
}

.floating-contact-button {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 175px;
    min-height: 54px;
    padding: 7px 17px 7px 10px;
    border-radius: 9px;
    color: #ffffff;
    text-decoration: none;
    transition: filter 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

    .floating-contact-button:hover {
        filter: brightness(1.08);
        transform: translateY(-3px);
    }

.call-button {
    background: linear-gradient( 135deg, #a9000d, #e30613 );
    box-shadow: 0 8px 22px rgba(227, 6, 19, 0.25);
}

.whatsapp-button {
    background: linear-gradient( 135deg, #128c4b, #25d366 );
    box-shadow: 0 8px 22px rgba(37, 211, 102, 0.24);
}

.floating-contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
}

    .floating-contact-icon svg {
        width: 20px;
        height: 20px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.floating-contact-content {
    display: flex;
    flex-direction: column;
}

    .floating-contact-content small {
        margin-bottom: 1px;
        color: rgba(255, 255, 255, 0.72);
        font-size: 8px;
        font-weight: 700;
        letter-spacing: 0.8px;
        text-transform: uppercase;
    }

    .floating-contact-content strong {
        color: #ffffff;
        font-family: var(--font-main);
        font-size: 12px;
        font-weight: 800;
        white-space: nowrap;
    }


/* ========================================
   TABLET
======================================== */

@media (max-width: 900px) {
    .floating-social-link {
        width: 47px;
        height: 47px;
    }

        .floating-social-link:hover {
            width: 47px;
        }

    .floating-social-icon {
        flex-basis: 47px;
        width: 47px;
        height: 47px;
    }

    .floating-social-text {
        display: none;
    }
}

/* ========================================
   TELEFON
======================================== */

@media (max-width: 600px) {
    .floating-social {
        top: auto;
        right: 9px;
        bottom: 88px;
        gap: 7px;
        transform: none;
    }

    .floating-social-link {
        width: 43px;
        height: 43px;
        border: 0;
        border-radius: 50%;
    }

        .floating-social-link:hover {
            width: 43px;
        }

    .floating-social-icon {
        flex-basis: 43px;
        width: 43px;
        height: 43px;
    }

        .floating-social-icon svg {
            width: 19px;
            height: 19px;
        }

    .instagram-link {
        background: linear-gradient( 135deg, #833ab4, #e1306c, #f77737 );
    }

    .facebook-link {
        background: #1877f2;
    }

    .floating-contact-bar {
        right: 7px;
        bottom: 7px;
        left: 7px;
        gap: 7px;
        width: auto;
        padding: 6px;
        border-radius: 12px;
        transform: none;
    }

    .floating-contact-button {
        justify-content: center;
        flex: 1;
        min-width: 0;
        min-height: 52px;
        padding: 6px 9px;
    }

    .floating-contact-icon {
        flex-basis: 35px;
        width: 35px;
        height: 35px;
    }

    .floating-contact-content small {
        display: none;
    }

    .floating-contact-content strong {
        font-size: 10.5px;
    }

    body {
        padding-bottom: 82px;
    }
}

/* Çok küçük telefon */

@media (max-width: 380px) {
    .floating-contact-button {
        gap: 6px;
        padding-right: 6px;
        padding-left: 6px;
    }

    .floating-contact-icon {
        flex-basis: 31px;
        width: 31px;
        height: 31px;
    }

        .floating-contact-icon svg {
            width: 17px;
            height: 17px;
        }

    .floating-contact-content strong {
        font-size: 9px;
    }
}

/* ========================================
   SIKÇA SORULAN SORULAR
======================================== */

.faq-section {
    position: relative;
    overflow: hidden;
    padding: 95px 0;
    background: radial-gradient( circle at 5% 10%, rgba(217, 5, 22, 0.07), transparent 30% ), #f7f7f7;
}

    .faq-section::before {
        position: absolute;
        top: -170px;
        right: -170px;
        width: 430px;
        height: 430px;
        border: 1px solid rgba(217, 5, 22, 0.08);
        border-radius: 50%;
        content: "";
    }

.faq-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 70px;
    align-items: start;
    width: min(1300px, calc(100% - 44px));
    margin: 0 auto;
}

/* Sol açıklama */

.faq-introduction {
    position: sticky;
    top: 120px;
}

.faq-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 15px;
    color: #d90516;
    font-family: var(--font-main);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

    .faq-label::before {
        width: 30px;
        height: 2px;
        background: #d90516;
        content: "";
    }

.faq-introduction > h2 {
    max-width: 480px;
    margin: 0 0 18px;
    color: #161616;
    font-family: var(--font-main);
    font-size: clamp(36px, 4vw, 55px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -2px;
}

.faq-introduction > p {
    max-width: 500px;
    margin: 0 0 31px;
    color: #707070;
    font-size: 14px;
    line-height: 1.75;
}

/* İletişim kutusu */

.faq-contact-card {
    display: flex;
    gap: 15px;
    max-width: 480px;
    padding: 20px;
    background: linear-gradient( 135deg, #151515, #252525 );
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 4px solid #d90516;
    border-radius: 11px;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.13);
}

.faq-contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    background: rgba(217, 5, 22, 0.16);
    border-radius: 9px;
    color: #ef3342;
}

    .faq-contact-icon svg {
        width: 21px;
        height: 21px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.faq-contact-card strong {
    display: block;
    margin-bottom: 6px;
    color: #ffffff;
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 800;
}

.faq-contact-card p {
    margin: 0 0 12px;
    color: #a9a9a9;
    font-size: 10.5px;
    line-height: 1.6;
}

.faq-contact-card a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #ef3342;
    font-size: 10.5px;
    font-weight: 800;
    text-decoration: none;
    transition: color 0.2s ease, gap 0.2s ease;
}

    .faq-contact-card a:hover {
        gap: 13px;
        color: #ffffff;
    }

/* Soru listesi */

.faq-list {
    display: grid;
    gap: 11px;
}

.faq-item {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e7e7e7;
    border-radius: 11px;
    box-shadow: 0 7px 22px rgba(0, 0, 0, 0.05);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

    .faq-item:hover,
    .faq-item.is-open {
        border-color: rgba(217, 5, 22, 0.32);
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    }

/* Soru */

.faq-question {
    display: grid;
    grid-template-columns: 39px 1fr 35px;
    gap: 14px;
    align-items: center;
    width: 100%;
    min-height: 78px;
    padding: 14px 18px;
    border: 0;
    background: transparent;
    color: #222222;
    text-align: left;
    cursor: pointer;
}

.faq-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 39px;
    height: 39px;
    background: #f4f4f4;
    border-radius: 8px;
    color: #8a8a8a;
    font-family: var(--font-main);
    font-size: 10px;
    font-weight: 800;
    transition: color 0.22s ease, background 0.22s ease;
}

.faq-question-text {
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
}

.faq-toggle-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: #fff1f2;
    border-radius: 50%;
    color: #d90516;
    transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

    .faq-toggle-icon svg {
        width: 16px;
        height: 16px;
        fill: none;
        stroke: currentColor;
        stroke-width: 2;
        stroke-linecap: round;
    }

.faq-item.is-open .faq-number {
    background: #d90516;
    color: #ffffff;
}

.faq-item.is-open .faq-toggle-icon {
    background: #d90516;
    color: #ffffff;
    transform: rotate(45deg);
}

/* Cevap */

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease;
}

.faq-answer-inner {
    min-height: 0;
    overflow: hidden;
}

    .faq-answer-inner p {
        margin: 0;
        padding: 0 73px 23px;
        color: #666666;
        font-size: 12px;
        line-height: 1.75;
    }

.faq-item.is-open .faq-answer {
    grid-template-rows: 1fr;
}

/* Tablet */

@media (max-width: 950px) {
    .faq-section {
        padding: 70px 0;
    }

    .faq-container {
        grid-template-columns: 1fr;
        gap: 40px;
        width: calc(100% - 30px);
    }

    .faq-introduction {
        position: static;
    }

        .faq-introduction > h2,
        .faq-introduction > p,
        .faq-contact-card {
            max-width: none;
        }
}

/* Telefon */

@media (max-width: 600px) {
    .faq-section {
        padding: 52px 0;
    }

    .faq-container {
        gap: 30px;
        width: calc(100% - 20px);
    }

    .faq-introduction > h2 {
        font-size: 34px;
        letter-spacing: -1.3px;
    }

    .faq-introduction > p {
        font-size: 12.5px;
    }

    .faq-contact-card {
        padding: 16px;
    }

    .faq-question {
        grid-template-columns: 34px 1fr 31px;
        gap: 10px;
        min-height: 70px;
        padding: 12px;
    }

    .faq-number {
        width: 34px;
        height: 34px;
    }

    .faq-question-text {
        font-size: 12px;
    }

    .faq-toggle-icon {
        width: 31px;
        height: 31px;
    }

    .faq-answer-inner p {
        padding: 0 56px 19px;
        font-size: 10.5px;
    }
}
/* =====================================
   ROTA - HAKKIMIZDA
===================================== */

.rota-container {
    width: min(1240px, calc(100% - 50px));
    margin: 0 auto;
}


/* ==============================
   İÇ SAYFA BAŞLIK
============================== */

.rota-page-head {
    height: 215px;
    background: #080808;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    font-family: var(--font-main);
}

.rota-page-head-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(0,0,0,.97) 0%, rgba(0,0,0,.90) 50%, rgba(0,0,0,.55) 100% ), url('/img/hakkimizda-banner.jpg') center 55% / cover no-repeat;
}

.rota-page-head::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,.08);
}

.rota-page-head::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: calc((100% - 1240px) / 2);
    width: 90px;
    height: 3px;
    background: #e30613;
    z-index: 2;
}

.rota-page-head-content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

    .rota-page-head-content > div:first-child > span {
        display: block;
        color: #e30613;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 2.5px;
        margin-bottom: 10px;
    }

.rota-page-head h1 {
    color: #fff;
    margin: 0;
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -1px;
}


/* BREADCRUMB */

.rota-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 5px;
    font-size: 12px;
}

    .rota-breadcrumb a {
        color: #888;
        text-decoration: none;
        transition: .3s;
    }

        .rota-breadcrumb a:hover {
            color: #fff;
        }

    .rota-breadcrumb i {
        color: #e30613;
        font-style: normal;
        font-size: 18px;
    }

    .rota-breadcrumb strong {
        color: #ddd;
        font-weight: 600;
    }


/* ==============================
   HAKKIMIZDA
============================== */

.rota-about {
    background: #fff;
    padding: 85px 0 95px;
    font-family: var(--font-main);
}

    .rota-about *,
    .rota-page-head * {
        box-sizing: border-box;
    }

.rota-about-layout {
    display: grid;
    grid-template-columns: 500px 1fr;
    gap: 80px;
    align-items: center;
}


/* GÖRSEL */

.rota-about-photo {
    position: relative;
}

    .rota-about-photo img {
        display: block;
        width: 100%;
        height: 440px;
        object-fit: cover;
    }

    .rota-about-photo::before {
        content: "";
        position: absolute;
        top: 20px;
        left: -20px;
        width: 100%;
        height: 100%;
        border: 1px solid #dedede;
        z-index: 0;
    }

    .rota-about-photo img {
        position: relative;
        z-index: 2;
    }

.rota-about-photo-line {
    position: absolute;
    z-index: 3;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 4px;
    background: #e30613;
}


/* YAZI */

.rota-section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #e30613;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.2px;
    margin-bottom: 15px;
}

    .rota-section-label::before {
        content: "";
        display: block;
        width: 28px;
        height: 2px;
        background: #e30613;
    }

.rota-about-text h2 {
    color: #111;
    margin: 0 0 18px;
    font-size: 39px;
    line-height: 1.15;
    letter-spacing: -1.3px;
    font-weight: 800;
}

.rota-about-intro {
    color: #292929 !important;
    font-size: 17px !important;
    font-weight: 600;
    line-height: 1.65 !important;
    max-width: 580px;
    margin-bottom: 20px !important;
}

.rota-about-text > p {
    color: #737373;
    font-size: 14px;
    line-height: 1.85;
    margin: 0 0 15px;
    max-width: 650px;
}


/* MADDELER */

.rota-about-points {
    margin-top: 30px;
    border-top: 1px solid #e9e9e9;
}

.rota-about-point {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 15px;
    padding: 16px 0;
    border-bottom: 1px solid #e9e9e9;
}

    .rota-about-point > span {
        color: #e30613;
        font-size: 11px;
        font-weight: 800;
        padding-top: 2px;
    }

    .rota-about-point strong {
        color: #161616;
        display: block;
        font-size: 14px;
        margin-bottom: 4px;
    }

    .rota-about-point p {
        color: #888;
        font-size: 12px;
        margin: 0;
        line-height: 1.5;
    }


/* BUTON */

.rota-about-btn {
    margin-top: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    min-width: 165px;
    height: 48px;
    padding: 0 22px;
    background: #e30613;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    transition: .3s;
}

    .rota-about-btn span {
        font-size: 18px;
        transition: transform .3s;
    }

    .rota-about-btn:hover {
        background: #111;
        color: #fff;
    }

        .rota-about-btn:hover span {
            transform: translateX(4px);
        }


/* ==============================
   RESPONSIVE
============================== */

@media (max-width: 1300px) {

    .rota-page-head::before {
        left: 25px;
    }
}


@media (max-width: 950px) {

    .rota-about-layout {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .rota-about-photo {
        max-width: 600px;
    }
}


@media (max-width: 700px) {

    .rota-container {
        width: calc(100% - 34px);
    }

    .rota-page-head {
        height: 170px;
    }

        .rota-page-head h1 {
            font-size: 31px;
        }

    .rota-breadcrumb {
        display: none;
    }

    .rota-about {
        padding: 60px 0 70px;
    }

    .rota-about-layout {
        gap: 45px;
    }

    .rota-about-photo::before {
        display: none;
    }

    .rota-about-photo img {
        height: 320px;
    }

    .rota-about-text h2 {
        font-size: 31px;
    }

    .rota-about-intro {
        font-size: 15px !important;
    }
}
/* =========================================
   ROTA VIP - İLETİŞİM
========================================= */

.rota-container {
    width: min(1280px, calc(100% - 48px));
    margin: 0 auto;
}


/* PAGE HEAD */

.rota-contact-head {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 215px;
    overflow: hidden;
    background: #101010;
    color: #fff;
}

.rota-contact-head-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(0,0,0,.96) 0%, rgba(0,0,0,.84) 45%, rgba(0,0,0,.45) 100% ), url('/img/iletisim-banner.jpg') center/cover no-repeat;
}

.rota-contact-head::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 4px;
    background: #ed0014;
    content: "";
}

.rota-contact-head-content {
    position: relative;
    z-index: 2;
}

    .rota-contact-head-content > span {
        display: block;
        margin-bottom: 7px;
        color: #ed0014;
        font-size: 10px;
        font-weight: 800;
        letter-spacing: 2.2px;
    }

.rota-contact-head h1 {
    margin: 0 0 13px;
    color: #fff;
    font-size: 40px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.4px;
}

.rota-contact-breadcrumb {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #9d9d9d;
    font-size: 11px;
    font-weight: 600;
}

    .rota-contact-breadcrumb a {
        color: #ccc;
        transition: color .2s ease;
    }

        .rota-contact-breadcrumb a:hover {
            color: #ed0014;
        }

    .rota-contact-breadcrumb i {
        color: #ed0014;
        font-style: normal;
    }

    .rota-contact-breadcrumb strong {
        color: #fff;
        font-weight: 600;
    }


/* ANA ALAN */

.rota-contact {
    padding: 85px 0 90px;
    background: #fff;
}

.rota-contact-layout {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: 80px;
    align-items: start;
}

.rota-section-label {
    display: inline-block;
    margin-bottom: 13px;
    color: #ed0014;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}

.rota-contact-info h2 {
    max-width: 550px;
    margin: 0 0 20px;
    color: #151515;
    font-size: 40px;
    font-weight: 800;
    line-height: 1.16;
    letter-spacing: -1.4px;
}

.rota-contact-intro {
    max-width: 580px;
    margin-bottom: 35px;
    color: #666;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.85;
}


/* İLETİŞİM SATIRLARI */

.rota-contact-list {
    border-top: 1px solid #ededed;
}

.rota-contact-item {
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    min-height: 88px;
    padding: 16px 4px;
    border-bottom: 1px solid #ededed;
    transition: padding .2s ease;
}

a.rota-contact-item:hover {
    padding-left: 8px;
}

.rota-contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #fff2f3;
    border-radius: 9px;
    color: #ed0014;
}

    .rota-contact-icon svg {
        width: 21px;
        height: 21px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.rota-contact-item span {
    display: block;
    margin-bottom: 2px;
    color: #9b9b9b;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.2px;
}

.rota-contact-item strong {
    display: block;
    color: #202020;
    font-size: 14px;
    font-weight: 700;
}

.rota-contact-item small {
    display: block;
    margin-top: 3px;
    color: #8b8b8b;
    font-size: 10px;
    font-weight: 500;
}

.rota-contact-item > b {
    color: #c4c4c4;
    font-size: 20px;
    font-weight: 500;
    transition: color .2s ease, transform .2s ease;
}

a.rota-contact-item:hover > b {
    color: #ed0014;
    transform: translateX(4px);
}


/* FORM */

.rota-contact-form-box {
    padding: 38px;
    background: #f6f6f6;
    border: 1px solid #ebebeb;
    border-top: 4px solid #ed0014;
    border-radius: 12px;
}

.rota-contact-form-head {
    margin-bottom: 27px;
}

    .rota-contact-form-head > span {
        display: block;
        margin-bottom: 6px;
        color: #ed0014;
        font-size: 9px;
        font-weight: 800;
        letter-spacing: 1.8px;
    }

    .rota-contact-form-head h3 {
        margin: 0 0 8px;
        color: #171717;
        font-size: 29px;
        font-weight: 700;
        letter-spacing: -.8px;
    }

    .rota-contact-form-head p {
        max-width: 440px;
        color: #777;
        font-size: 12px;
        font-weight: 500;
        line-height: 1.7;
    }

.rota-contact-form {
    display: grid;
    gap: 17px;
}

.rota-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.rota-form-group {
    display: grid;
    gap: 7px;
}

    .rota-form-group label {
        color: #3c3c3c;
        font-size: 10px;
        font-weight: 700;
    }

    .rota-form-group input,
    .rota-form-group select,
    .rota-form-group textarea {
        width: 100%;
        border: 1px solid #dedede;
        border-radius: 7px;
        outline: none;
        background: #fff;
        color: #202020;
        font-family: inherit;
        font-size: 12px;
        font-weight: 500;
        transition: border-color .2s ease, box-shadow .2s ease;
    }

    .rota-form-group input,
    .rota-form-group select {
        height: 51px;
        padding: 0 15px;
    }

    .rota-form-group textarea {
        min-height: 125px;
        padding: 14px 15px;
        resize: vertical;
        line-height: 1.6;
    }

        .rota-form-group input:focus,
        .rota-form-group select:focus,
        .rota-form-group textarea:focus {
            border-color: #ed0014;
            box-shadow: 0 0 0 3px rgba(237,0,20,.07);
        }

        .rota-form-group input::placeholder,
        .rota-form-group textarea::placeholder {
            color: #aaa;
        }


/* GÖNDER */

.rota-contact-submit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 53px;
    margin-top: 3px;
    padding: 0 19px;
    border: 2px solid #ed0014;
    border-radius: 7px;
    background: #ed0014;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}

    .rota-contact-submit svg {
        width: 18px;
        height: 18px;
        fill: none;
        stroke: currentColor;
        stroke-width: 2;
    }

    .rota-contact-submit:hover {
        background: #fff;
        color: #ed0014;
        transform: translateY(-2px);
    }

.rota-form-message {
    display: none;
    padding: 11px 13px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
}

    .rota-form-message.error {
        display: block;
        background: #fff0f1;
        color: #c50011;
    }

    .rota-form-message.success {
        display: block;
        background: #eaf9ee;
        color: #167634;
    }


/* HARİTA */

.rota-contact-map {
    padding-top: 65px;
    background: #f5f5f5;
}

.rota-map-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 28px;
}

    .rota-map-head h2 {
        margin: 0;
        color: #171717;
        font-size: 32px;
        font-weight: 800;
        letter-spacing: -1px;
    }

.rota-map-button {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    min-height: 45px;
    padding: 0 17px;
    border: 1px solid #dedede;
    border-radius: 7px;
    background: #fff;
    color: #222;
    font-size: 10px;
    font-weight: 700;
    transition: all .2s ease;
}

    .rota-map-button:hover {
        border-color: #ed0014;
        background: #ed0014;
        color: #fff;
    }

.rota-map-frame {
    width: 100%;
    height: 430px;
    overflow: hidden;
    border-top: 1px solid #e2e2e2;
}

    .rota-map-frame iframe {
        width: 100%;
        height: 100%;
        border: 0;
        filter: grayscale(20%);
    }


/* TABLET */

@media (max-width: 950px) {

    .rota-contact-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .rota-contact-info {
        max-width: 700px;
    }
}


/* MOBİL */

@media (max-width: 650px) {

    .rota-container {
        width: calc(100% - 30px);
    }

    .rota-contact-head {
        min-height: 170px;
    }

        .rota-contact-head h1 {
            font-size: 32px;
        }

    .rota-contact {
        padding: 55px 0 60px;
    }

    .rota-contact-layout {
        gap: 38px;
    }

    .rota-contact-info h2 {
        font-size: 31px;
        letter-spacing: -1px;
    }

    .rota-contact-intro {
        font-size: 14px;
    }

    .rota-contact-item {
        grid-template-columns: 45px minmax(0,1fr) auto;
        gap: 12px;
    }

    .rota-contact-icon {
        width: 43px;
        height: 43px;
    }

    .rota-contact-item strong {
        font-size: 12.5px;
    }

    .rota-contact-form-box {
        padding: 25px 19px;
        border-radius: 9px;
    }

    .rota-contact-form-head h3 {
        font-size: 25px;
    }

    .rota-form-row {
        grid-template-columns: 1fr;
    }

    .rota-map-head {
        align-items: flex-start;
        flex-direction: column;
    }

        .rota-map-head h2 {
            font-size: 28px;
        }

    .rota-map-frame {
        height: 340px;
    }
}
/* =========================================
   ROTA VIP - GALERİ SAYFASI
========================================= */


/* PAGE HEAD */

.rota-gallery-head {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 215px;
    overflow: hidden;
    background: #101010;
    color: #ffffff;
}

.rota-gallery-head-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(0,0,0,.96) 0%, rgba(0,0,0,.84) 45%, rgba(0,0,0,.45) 100% ), url('/img/galeri-banner.jpg') center/cover no-repeat;
}

.rota-gallery-head::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 4px;
    background: #ed0014;
    content: "";
}

.rota-gallery-head-content {
    position: relative;
    z-index: 2;
}

    .rota-gallery-head-content > span {
        display: block;
        margin-bottom: 7px;
        color: #ed0014;
        font-size: 10px;
        font-weight: 800;
        letter-spacing: 2.2px;
    }

.rota-gallery-head h1 {
    margin: 0 0 13px;
    color: #ffffff;
    font-size: 40px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.4px;
}

.rota-gallery-breadcrumb {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #9d9d9d;
    font-size: 11px;
    font-weight: 600;
}

    .rota-gallery-breadcrumb a {
        color: #cccccc;
        transition: color .2s ease;
    }

        .rota-gallery-breadcrumb a:hover {
            color: #ed0014;
        }

    .rota-gallery-breadcrumb i {
        color: #ed0014;
        font-style: normal;
    }

    .rota-gallery-breadcrumb strong {
        color: #ffffff;
        font-weight: 600;
    }


/* =========================================
   GALERİ
========================================= */

.rota-gallery {
    padding: 80px 0 95px;
    background: #ffffff;
}


/* BAŞLIK */

.rota-gallery-heading {
    max-width: 650px;
    margin-bottom: 38px;
}

.rota-section-label {
    display: inline-block;
    margin-bottom: 12px;
    color: #ed0014;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}

.rota-gallery-heading h2 {
    margin: 0 0 14px;
    color: #151515;
    font-size: 40px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1.4px;
}

.rota-gallery-heading p {
    max-width: 600px;
    margin: 0;
    color: #666666;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.8;
}


/* =========================================
   FOTOĞRAF GRID
========================================= */

.rota-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}


/* FOTOĞRAF */

.rota-gallery-item {
    position: relative;
    display: block;
    height: 285px;
    overflow: hidden;
    background: #eeeeee;
    border-radius: 9px;
    cursor: pointer;
}


    /* HER 5. FOTOĞRAFI BİRAZ GENİŞ GÖSTER */

    .rota-gallery-item:nth-child(5n+1) {
        grid-column: span 2;
    }


    /* FOTOĞRAF */

    .rota-gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .45s ease, filter .45s ease;
    }


    /* HOVER KARARTMA */

    .rota-gallery-item::after {
        position: absolute;
        inset: 0;
        background: linear-gradient( 180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.28) 100% );
        opacity: 0;
        content: "";
        transition: opacity .3s ease;
    }

    .rota-gallery-item:hover::after {
        opacity: 1;
    }

    .rota-gallery-item:hover img {
        transform: scale(1.045);
    }


/* BÜYÜT İKONU */

.rota-gallery-view {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #ed0014;
    border-radius: 50%;
    color: #ffffff;
    opacity: 0;
    transform: translate(-50%, -50%) scale(.75);
    transition: opacity .25s ease, transform .25s ease;
}

    .rota-gallery-view svg {
        width: 20px;
        height: 20px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.7;
        stroke-linecap: round;
    }

.rota-gallery-item:hover .rota-gallery-view {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}


/* =========================================
   LIGHTBOX
========================================= */

.rota-gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 70px 100px;
    background: rgba(8,8,8,.96);
    opacity: 0;
    transition: opacity .25s ease, visibility .25s ease;
}

    .rota-gallery-lightbox.is-open {
        visibility: visible;
        opacity: 1;
    }


.rota-gallery-lightbox-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}


    .rota-gallery-lightbox-inner img {
        display: block;
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        border-radius: 5px;
        box-shadow: 0 25px 80px rgba(0,0,0,.5);
    }


/* KAPAT */

.rota-gallery-lightbox-close {
    position: absolute;
    top: 24px;
    right: 28px;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    padding: 0;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 50%;
    background: transparent;
    color: #ffffff;
    font-size: 27px;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease;
}

    .rota-gallery-lightbox-close:hover {
        background: #ed0014;
        border-color: #ed0014;
    }


/* SAĞ SOL OK */

.rota-gallery-lightbox-prev,
.rota-gallery-lightbox-next {
    position: absolute;
    top: 50%;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 50%;
    background: rgba(255,255,255,.05);
    color: #ffffff;
    font-size: 31px;
    font-weight: 300;
    cursor: pointer;
    transform: translateY(-50%);
    transition: background .2s ease, border-color .2s ease;
}

.rota-gallery-lightbox-prev {
    left: 28px;
}

.rota-gallery-lightbox-next {
    right: 28px;
}

    .rota-gallery-lightbox-prev:hover,
    .rota-gallery-lightbox-next:hover {
        background: #ed0014;
        border-color: #ed0014;
    }


/* =========================================
   TABLET
========================================= */

@media (max-width: 950px) {

    .rota-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rota-gallery-item:nth-child(5n+1) {
        grid-column: span 1;
    }

    .rota-gallery-item {
        height: 260px;
    }
}


/* =========================================
   MOBİL
========================================= */

@media (max-width: 650px) {

    .rota-gallery-head {
        min-height: 170px;
    }

        .rota-gallery-head h1 {
            font-size: 32px;
        }


    .rota-gallery {
        padding: 55px 0 65px;
    }


    .rota-gallery-heading {
        margin-bottom: 27px;
    }

        .rota-gallery-heading h2 {
            font-size: 31px;
            letter-spacing: -1px;
        }

        .rota-gallery-heading p {
            font-size: 14px;
        }


    /* 2 FOTOĞRAF YAN YANA */

    .rota-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .rota-gallery-item,
    .rota-gallery-item:nth-child(5n+1) {
        grid-column: span 1;
        height: 175px;
        border-radius: 6px;
    }


    .rota-gallery-view {
        width: 38px;
        height: 38px;
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

        .rota-gallery-view svg {
            width: 17px;
            height: 17px;
        }


    /* LIGHTBOX */

    .rota-gallery-lightbox {
        padding: 70px 15px 80px;
    }

    .rota-gallery-lightbox-close {
        top: 15px;
        right: 15px;
        width: 41px;
        height: 41px;
    }

    .rota-gallery-lightbox-prev,
    .rota-gallery-lightbox-next {
        top: auto;
        bottom: 18px;
        width: 42px;
        height: 42px;
        transform: none;
    }

    .rota-gallery-lightbox-prev {
        left: calc(50% - 50px);
    }

    .rota-gallery-lightbox-next {
        right: calc(50% - 50px);
    }
}
/* =========================================
   ROTA VIP - HİZMET DETAY
========================================= */


/* =========================================
   PAGE HEAD
========================================= */

.rota-service-head {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 215px;
    overflow: hidden;
    background: #101010;
    color: #fff;
}

.rota-service-head-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(0,0,0,.97) 0%, rgba(0,0,0,.85) 45%, rgba(0,0,0,.48) 100% ), url('/img/hizmet-detay-banner.jpg') center/cover no-repeat;
}

.rota-service-head::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 4px;
    background: #ed0014;
    content: "";
}

.rota-service-head-content {
    position: relative;
    z-index: 2;
}

    .rota-service-head-content > span {
        display: block;
        margin-bottom: 7px;
        color: #ed0014;
        font-size: 10px;
        font-weight: 800;
        letter-spacing: 2.2px;
    }

.rota-service-head h1 {
    max-width: 850px;
    margin: 0 0 13px;
    color: #fff;
    font-size: 40px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.4px;
}

.rota-service-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    color: #9d9d9d;
    font-size: 11px;
    font-weight: 600;
}

    .rota-service-breadcrumb a {
        color: #ccc;
        transition: color .2s ease;
    }

        .rota-service-breadcrumb a:hover {
            color: #ed0014;
        }

    .rota-service-breadcrumb i {
        color: #ed0014;
        font-style: normal;
    }

    .rota-service-breadcrumb strong {
        color: #fff;
        font-weight: 600;
    }


/* =========================================
   ANA YAPI
========================================= */

.rota-service-detail {
    padding: 80px 0 90px;
    background: #fff;
}

.rota-service-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 65px;
    align-items: start;
}

.rota-service-main {
    min-width: 0;
}


/* =========================================
   İÇERİK BAŞLIĞI
========================================= */

.rota-service-title {
    margin-bottom: 34px;
}

    .rota-service-title h2 {
        max-width: 800px;
        margin: 0;
        color: #151515;
        font-size: 40px;
        font-weight: 800;
        line-height: 1.15;
        letter-spacing: -1.4px;
    }

.rota-service-title-line {
    width: 48px;
    height: 3px;
    margin-top: 20px;
    background: #ed0014;
}


/* =========================================
   CKEDITOR İÇERİK
========================================= */

.rota-service-content {
    color: #626262;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.9;
}


    /* PARAGRAF */

    .rota-service-content p {
        margin: 0 0 22px;
        color: #626262;
        font-size: 15px;
        font-weight: 500;
        line-height: 1.9;
    }


    /* H2 */

    .rota-service-content h2 {
        position: relative;
        margin: 46px 0 18px;
        padding-bottom: 14px;
        color: #171717;
        font-size: 28px;
        font-weight: 800;
        line-height: 1.25;
        letter-spacing: -.7px;
    }

        .rota-service-content h2::after {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 38px;
            height: 3px;
            background: #ed0014;
            content: "";
        }


    /* H3 */

    .rota-service-content h3 {
        margin: 35px 0 14px;
        color: #202020;
        font-size: 21px;
        font-weight: 700;
        line-height: 1.35;
    }


    /* H4 */

    .rota-service-content h4 {
        margin: 28px 0 12px;
        color: #222;
        font-size: 17px;
        font-weight: 700;
    }


    /* STRONG */

    .rota-service-content strong {
        color: #242424;
        font-weight: 700;
    }


    /* LINK */

    .rota-service-content a {
        color: #ed0014;
        font-weight: 700;
        text-decoration: underline;
        text-underline-offset: 3px;
    }


    /* =========================================
   CKEDITOR LİSTELER
========================================= */

    .rota-service-content ul,
    .rota-service-content ol {
        margin: 20px 0 28px;
        padding: 0;
        list-style: none;
    }

        .rota-service-content ul li {
            position: relative;
            margin-bottom: 10px;
            padding-left: 27px;
            color: #555;
        }

            .rota-service-content ul li::before {
                position: absolute;
                top: 10px;
                left: 2px;
                width: 7px;
                height: 7px;
                border-radius: 50%;
                background: #ed0014;
                content: "";
            }

    .rota-service-content ol {
        counter-reset: rota-counter;
    }

        .rota-service-content ol li {
            position: relative;
            min-height: 28px;
            margin-bottom: 12px;
            padding-left: 39px;
            counter-increment: rota-counter;
        }

            .rota-service-content ol li::before {
                position: absolute;
                top: 0;
                left: 0;
                display: flex;
                align-items: center;
                justify-content: center;
                width: 27px;
                height: 27px;
                border-radius: 5px;
                background: #111;
                color: #fff;
                font-size: 10px;
                font-weight: 800;
                content: counter(rota-counter);
            }


    /* =========================================
   CKEDITOR FOTOĞRAF
========================================= */

    .rota-service-content img {
        display: block;
        max-width: 100%;
        height: auto;
        margin: 30px 0;
        border-radius: 10px;
    }


    /* =========================================
   CKEDITOR TABLO
========================================= */

    .rota-service-content table {
        width: 100%;
        margin: 28px 0;
        border-collapse: collapse;
        overflow: hidden;
        border: 1px solid #e8e8e8;
        border-radius: 8px;
    }

        .rota-service-content table th {
            padding: 14px 16px;
            border: 1px solid #e5e5e5;
            background: #111;
            color: #fff;
            font-size: 12px;
            font-weight: 700;
            text-align: left;
        }

        .rota-service-content table td {
            padding: 14px 16px;
            border: 1px solid #e8e8e8;
            color: #555;
            font-size: 12px;
            font-weight: 500;
        }

        .rota-service-content table tr:nth-child(even) td {
            background: #fafafa;
        }


    /* =========================================
   CKEDITOR BLOCKQUOTE
========================================= */

    .rota-service-content blockquote {
        position: relative;
        margin: 32px 0;
        padding: 23px 25px 23px 29px;
        border: 0;
        border-left: 4px solid #ed0014;
        border-radius: 0 8px 8px 0;
        background: #f7f7f7;
        color: #414141;
        font-size: 14px;
        font-weight: 600;
        line-height: 1.8;
    }

        .rota-service-content blockquote p:last-child {
            margin-bottom: 0;
        }


    /* =========================================
   CKEDITOR ÖZEL BİLGİ KUTUSU
========================================= */

    .rota-service-content .rota-info-box {
        position: relative;
        margin: 32px 0;
        padding: 25px 27px;
        overflow: hidden;
        border: 1px solid #e9e9e9;
        border-radius: 9px;
        background: #f8f8f8;
    }

        .rota-service-content .rota-info-box::before {
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            width: 4px;
            background: #ed0014;
            content: "";
        }

        .rota-service-content .rota-info-box h3 {
            margin: 0 0 8px;
            color: #171717;
            font-size: 17px;
        }

        .rota-service-content .rota-info-box p {
            margin: 0;
            font-size: 13px;
        }


    /* =========================================
   CKEDITOR ÖZELLİK KARTLARI
========================================= */

    .rota-service-content .rota-feature-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        margin: 30px 0;
    }

    .rota-service-content .rota-feature {
        padding: 22px;
        border: 1px solid #e9e9e9;
        border-radius: 8px;
        background: #fff;
    }

        .rota-service-content .rota-feature span {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            margin-bottom: 13px;
            border-radius: 5px;
            background: #fff0f1;
            color: #ed0014;
            font-size: 14px;
            font-weight: 800;
        }

        .rota-service-content .rota-feature h3 {
            margin: 0 0 6px;
            color: #1c1c1c;
            font-size: 14px;
            font-weight: 700;
        }

        .rota-service-content .rota-feature p {
            margin: 0;
            color: #777;
            font-size: 12px;
            line-height: 1.7;
        }


/* =========================================
   SAĞ SIDEBAR
========================================= */

.rota-service-sidebar {
    position: sticky;
    top: 110px;
}


/* İLETİŞİM */

.rota-service-contact {
    position: relative;
    overflow: hidden;
    padding: 30px;
    border-radius: 10px;
    background: #111;
}

    .rota-service-contact::before {
        position: absolute;
        top: 0;
        right: 0;
        width: 75px;
        height: 4px;
        background: #ed0014;
        content: "";
    }

.rota-service-contact-label {
    display: block;
    margin-bottom: 10px;
    color: #ed0014;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.8px;
}

.rota-service-contact h3 {
    margin: 0 0 13px;
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -.6px;
}

.rota-service-contact > p {
    margin: 0 0 24px;
    color: #999;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.75;
}


/* TELEFON */

.rota-service-phone {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 11px;
    padding: 13px;
    border: 1px solid #292929;
    border-radius: 7px;
    background: #191919;
    transition: border-color .2s ease;
}

    .rota-service-phone:hover {
        border-color: #ed0014;
    }

.rota-service-phone-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    border-radius: 5px;
    background: #ed0014;
    color: #fff;
}

    .rota-service-phone-icon svg {
        width: 17px;
        height: 17px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.rota-service-phone small {
    display: block;
    margin-bottom: 2px;
    color: #777;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 1px;
}

.rota-service-phone strong {
    display: block;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}


/* WHATSAPP */

.rota-service-whatsapp {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 47px;
    padding: 0 15px;
    border-radius: 6px;
    background: #ed0014;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    transition: background .2s ease, transform .2s ease;
}

    .rota-service-whatsapp:hover {
        background: #c90011;
        transform: translateY(-1px);
    }


/* =========================================
   HİZMET BİLGİLERİ
========================================= */

.rota-service-info,
.rota-service-other {
    margin-top: 15px;
    padding: 25px;
    border: 1px solid #e9e9e9;
    border-radius: 9px;
    background: #fff;
}

    .rota-service-info h4,
    .rota-service-other h4 {
        margin: 0 0 17px;
        color: #1c1c1c;
        font-size: 14px;
        font-weight: 700;
    }

.rota-service-info-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 11px 0;
    border-top: 1px solid #eee;
}

    .rota-service-info-row span {
        color: #999;
        font-size: 10px;
        font-weight: 500;
    }

    .rota-service-info-row strong {
        color: #333;
        font-size: 10px;
        font-weight: 700;
        text-align: right;
    }


/* =========================================
   DİĞER HİZMETLER
========================================= */

.rota-service-other a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 42px;
    border-top: 1px solid #eee;
    color: #555;
    font-size: 10px;
    font-weight: 600;
    transition: color .2s ease, padding .2s ease;
}

    .rota-service-other a span {
        color: #bbb;
        font-size: 16px;
    }

    .rota-service-other a:hover {
        padding-left: 4px;
        color: #ed0014;
    }

        .rota-service-other a:hover span {
            color: #ed0014;
        }


/* =========================================
   ALT CTA
========================================= */

.rota-service-bottom {
    position: relative;
    padding: 52px 0;
    overflow: hidden;
    background: #111;
}

    .rota-service-bottom::before {
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        height: 3px;
        background: #ed0014;
        content: "";
    }

.rota-service-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

    .rota-service-bottom-inner > div {
        max-width: 720px;
    }

        .rota-service-bottom-inner > div > span {
            display: block;
            margin-bottom: 7px;
            color: #ed0014;
            font-size: 9px;
            font-weight: 800;
            letter-spacing: 1.8px;
        }

.rota-service-bottom h2 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 27px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -.6px;
}

.rota-service-bottom p {
    margin: 0;
    color: #999;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.7;
}

.rota-service-bottom-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 0 0 auto;
    min-width: 185px;
    min-height: 49px;
    padding: 0 17px;
    border: 2px solid #ed0014;
    border-radius: 6px;
    background: #ed0014;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    transition: background .2s ease, transform .2s ease;
}

    .rota-service-bottom-btn span {
        font-size: 18px;
    }

    .rota-service-bottom-btn:hover {
        background: transparent;
        transform: translateY(-2px);
    }


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

    .rota-service-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .rota-service-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .rota-service-contact {
        grid-row: span 2;
    }

    .rota-service-info,
    .rota-service-other {
        margin-top: 0;
    }
}


/* =========================================
   MOBİL
========================================= */

@media (max-width: 650px) {

    .rota-service-head {
        min-height: 170px;
    }

        .rota-service-head h1 {
            font-size: 30px;
            letter-spacing: -1px;
        }

    .rota-service-detail {
        padding: 55px 0 60px;
    }

    .rota-service-layout {
        gap: 40px;
    }


    /* BAŞLIK */

    .rota-service-title {
        margin-bottom: 26px;
    }

        .rota-service-title h2 {
            font-size: 30px;
            letter-spacing: -1px;
        }


    /* CKEDITOR */

    .rota-service-content,
    .rota-service-content p {
        font-size: 14px;
        line-height: 1.85;
    }

        .rota-service-content h2 {
            margin-top: 38px;
            font-size: 24px;
        }

        .rota-service-content h3 {
            font-size: 19px;
        }

        .rota-service-content .rota-feature-grid {
            grid-template-columns: 1fr;
        }


        /* TABLO MOBİL */

        .rota-service-content table {
            display: block;
            overflow-x: auto;
            white-space: nowrap;
        }


    /* SIDEBAR */

    .rota-service-sidebar {
        display: block;
    }

    .rota-service-info,
    .rota-service-other {
        margin-top: 12px;
    }


    /* CTA */

    .rota-service-bottom {
        padding: 40px 0;
    }

    .rota-service-bottom-inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 23px;
    }

    .rota-service-bottom h2 {
        font-size: 23px;
    }

    .rota-service-bottom-btn {
        width: 100%;
    }
}
/* =========================================
   HİZMET DETAY - MİNİ GALERİ
========================================= */

.rota-service-gallery {
    margin-top: 55px;
    padding-top: 40px;
    border-top: 1px solid #ededed;
}


/* BAŞLIK */

.rota-service-gallery-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 22px;
}

    .rota-service-gallery-head .rota-section-label {
        margin-bottom: 8px;
    }

    .rota-service-gallery-head h2 {
        margin: 0;
        color: #171717;
        font-size: 26px;
        font-weight: 800;
        line-height: 1.2;
        letter-spacing: -.7px;
    }


/* TÜM GALERİ */

.rota-service-gallery-all {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 4px;
    border-bottom: 1px solid #ddd;
    color: #555;
    font-size: 9px;
    font-weight: 700;
    white-space: nowrap;
    transition: color .2s ease, border-color .2s ease;
}

    .rota-service-gallery-all span {
        color: #ed0014;
        font-size: 15px;
    }

    .rota-service-gallery-all:hover {
        border-color: #ed0014;
        color: #ed0014;
    }


/* =========================================
   GRID
========================================= */

.rota-service-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 9px;
}

.rota-service-gallery-item {
    position: relative;
    display: block;
    height: 165px;
    overflow: hidden;
    border-radius: 7px;
    background: #eee;
}

    .rota-service-gallery-item img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .4s ease, filter .4s ease;
    }


    /* KARARTMA */

    .rota-service-gallery-item::after {
        position: absolute;
        inset: 0;
        z-index: 1;
        background: rgba(0,0,0,.35);
        opacity: 0;
        content: "";
        transition: opacity .25s ease;
    }


/* + İKONU */

.rota-service-gallery-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #ed0014;
    color: #fff;
    font-size: 22px;
    font-weight: 400;
    line-height: 1;
    opacity: 0;
    transform: translate(-50%, -50%) scale(.75);
    transition: opacity .25s ease, transform .25s ease;
}


/* HOVER */

.rota-service-gallery-item:hover img {
    transform: scale(1.06);
}

.rota-service-gallery-item:hover::after {
    opacity: 1;
}

.rota-service-gallery-item:hover
.rota-service-gallery-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}


/* =========================================
   LIGHTBOX
========================================= */

.rota-service-gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 70px 100px;
    background: rgba(5,5,5,.96);
    opacity: 0;
    transition: opacity .25s ease, visibility .25s ease;
}

    .rota-service-gallery-lightbox.is-open {
        visibility: visible;
        opacity: 1;
    }

    .rota-service-gallery-lightbox > img {
        display: block;
        max-width: 1100px;
        max-height: 82vh;
        width: auto;
        height: auto;
        object-fit: contain;
        border-radius: 6px;
    }


/* KAPAT */

.rota-service-gallery-close {
    position: absolute;
    top: 25px;
    right: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 50%;
    background: transparent;
    color: #fff;
    font-size: 27px;
    cursor: pointer;
    transition: background .2s ease;
}

    .rota-service-gallery-close:hover {
        border-color: #ed0014;
        background: #ed0014;
    }


/* OKLAR */

.rota-service-gallery-prev,
.rota-service-gallery-next {
    position: absolute;
    top: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 50%;
    background: rgba(255,255,255,.05);
    color: #fff;
    font-size: 29px;
    cursor: pointer;
    transform: translateY(-50%);
    transition: background .2s ease;
}

.rota-service-gallery-prev {
    left: 28px;
}

.rota-service-gallery-next {
    right: 28px;
}

    .rota-service-gallery-prev:hover,
    .rota-service-gallery-next:hover {
        border-color: #ed0014;
        background: #ed0014;
    }


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .rota-service-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rota-service-gallery-item {
        height: 200px;
    }
}


/* =========================================
   MOBİL
========================================= */

@media (max-width: 650px) {

    .rota-service-gallery {
        margin-top: 42px;
        padding-top: 32px;
    }

    .rota-service-gallery-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

        .rota-service-gallery-head h2 {
            font-size: 23px;
        }

    .rota-service-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 7px;
    }

    .rota-service-gallery-item {
        height: 145px;
    }

    .rota-service-gallery-icon {
        width: 34px;
        height: 34px;
        font-size: 19px;
    }

    .rota-service-gallery-lightbox {
        padding: 65px 15px 75px;
    }

        .rota-service-gallery-lightbox > img {
            max-width: 100%;
            max-height: 72vh;
        }

    .rota-service-gallery-prev,
    .rota-service-gallery-next {
        top: auto;
        bottom: 17px;
        width: 41px;
        height: 41px;
        transform: none;
    }

    .rota-service-gallery-prev {
        left: calc(50% - 48px);
    }

    .rota-service-gallery-next {
        right: calc(50% - 48px);
    }
}
.tiktok-link .floating-social-icon svg {
    fill: currentColor;
    stroke: none;
}


.service-detail-content {
    font-family: "Plus Jakarta Sans", Arial, sans-serif;
    color: #191919;
}

.service-intro {
    margin-bottom: 32px;
}

.service-badge {
    display: inline-block;
    padding: 7px 12px;
    margin-bottom: 14px;
    background: rgba(237, 0, 20, .08);
    color: #ed0014;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
}

.service-detail-content h2 {
    margin: 0 0 15px;
    font-size: 30px;
    line-height: 1.25;
    font-weight: 800;
    color: #111;
}

.service-detail-content h3 {
    margin: 32px 0 18px;
    font-size: 22px;
    font-weight: 800;
    color: #111;
}

.service-intro p {
    max-width: 850px;
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
    color: #626262;
}

.service-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 28px 0 38px;
}

.service-info-box {
    padding: 18px 20px;
    background: #f7f7f7;
    border: 1px solid #ececec;
    border-radius: 8px;
}

    .service-info-box span {
        display: block;
        margin-bottom: 5px;
        color: #8a8a8a;
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .7px;
    }

    .service-info-box strong {
        display: block;
        color: #111;
        font-size: 15px;
        font-weight: 800;
    }

.service-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.service-step {
    position: relative;
    padding: 22px;
    border: 1px solid #e9e9e9;
    border-radius: 8px;
    background: #fff;
}

    .service-step > strong {
        display: block;
        margin-bottom: 14px;
        color: #ed0014;
        font-size: 25px;
        font-weight: 800;
    }

    .service-step h4 {
        margin: 0 0 8px;
        color: #111;
        font-size: 15px;
        font-weight: 800;
    }

    .service-step p {
        margin: 0;
        color: #737373;
        font-size: 13px;
        line-height: 1.65;
    }

.service-note {
    margin-top: 28px;
    padding: 20px 22px;
    background: #f7f7f7;
    border-left: 4px solid #ed0014;
    border-radius: 0 7px 7px 0;
}

    .service-note strong {
        display: block;
        margin-bottom: 5px;
        color: #111;
        font-size: 14px;
        font-weight: 800;
    }

    .service-note p {
        margin: 0;
        color: #666;
        font-size: 13px;
        line-height: 1.7;
    }

/* İLETİŞİM ALANI */

.service-contact-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 35px;
    padding: 28px 30px;
    background: #0b0b0b;
    border-radius: 10px;
    border-bottom: 3px solid #ed0014;
}

    .service-contact-box span {
        display: block;
        margin-bottom: 6px;
        color: #ed0014;
        font-size: 10px;
        font-weight: 800;
        letter-spacing: 1.2px;
    }

    .service-contact-box h3 {
        margin: 0 0 7px;
        color: #fff;
        font-size: 20px;
        font-weight: 800;
    }

    .service-contact-box p {
        margin: 0;
        color: #a9a9a9;
        font-size: 13px;
    }

.service-whatsapp-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    background: #ed0014;
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 800;
    transition: .25s ease;
}

    .service-whatsapp-btn:hover {
        background: #fff;
        color: #111 !important;
        transform: translateY(-2px);
    }

@media (max-width: 800px) {

    .service-info-grid,
    .service-steps {
        grid-template-columns: 1fr;
    }

    .service-detail-content h2 {
        font-size: 25px;
    }

    .service-contact-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 20px;
    }

    .service-whatsapp-btn {
        width: 100%;
    }
}