@font-face {
    font-family: "Inter";
    src: url("../fonts/inter/Inter-VariableFont_opsz,wght.ttf") format("truetype");
    font-weight: 100 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("../fonts/inter/Inter-Italic-VariableFont_opsz,wght.ttf") format("truetype");
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}

:root {
    --primary: #cf0e0e;
    --primary-rgb: 207, 14, 14;
    --secondary: #111216;
    --secondary-rgb: 17, 18, 22;
    --accent: #f39c12;
    --text: #ffffff;
    --text-soft: #bfc7d8;
    --line: rgba(255, 255, 255, 0.09);
    --bg-dark: #111216;
    --bg-darker: #111216;

    /* contact-btn ikon+hücre: ana renk (--primary); sol cepte hafif koyulaşma */
    --contact-btn-split-icon-well: rgba(0, 0, 0, 0.16);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif, serif;
    background: #ffffff;
    color: #121212;
}

img[data-icon-themed="1"] {
    filter: none !important;
}

* {
    scrollbar-width: thin;
    scrollbar-color: var(--secondary) transparent;
}

*::-webkit-scrollbar {
    width: 2px;
    height: 2px;
}

*::-webkit-scrollbar-track {
    background: transparent;
}

*::-webkit-scrollbar-thumb {
    background: var(--secondary);
    border-radius: 99px;
}

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

.container {
    width: min(1450px, 92%);
    margin: 0 auto;
}

.site-header {
    color: var(--secondary);
    background: transparent;
    border-bottom: 0;
    box-shadow: none;
    position: relative;
    z-index: 20;
    padding-bottom: 94px;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.navbar-wrap {
    position: relative;
    z-index: 1;
}

.navbar-wrap {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 21;
    background: transparent;
    border-bottom: 0;
    box-shadow: none;
    transition: background-color 0.2s ease, border-color 0.2s ease;
    /* Alt çizgi logo şeridinde primary ile kapatılabilsin diye */
    isolation: isolate;
    overflow: visible;
}

.site-header.is-scrolled .navbar-wrap,
.site-header.is-scrolled .mobile-header {
    background: rgb(var(--secondary-rgb));
    border-bottom: 0;
    box-shadow: none;
}

.site-header:not(.is-scrolled) .menu > li > a,
.site-header:not(.is-scrolled) .social-link,
.site-header:not(.is-scrolled) .nav-actions .contact-btn {
    color: #ffffff;
}

.site-header:not(.is-scrolled) .nav-actions .icon,
.site-header:not(.is-scrolled) .menu .icon {
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.inner-page .navbar-wrap,
.inner-page .mobile-header {
    background: rgb(var(--secondary-rgb));
    border-bottom: 0;
}

.nav-actions .icon,
.menu .icon {
    width: 15px;
    height: 15px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.menu > li > a:hover {
    color: #ffffff;
    opacity: 1;
}

.social-link {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 0;
    background: transparent;
    color: var(--secondary);
    transition: 0.2s ease;
    opacity: 0.92;
}


.social-svg {
    width: 21px;
    height: 21px;
    display: block;
    fill: currentColor;
    opacity: 0.95;
}

.navbar-row {
    min-height: 94px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 28px;
    position: relative;
    z-index: 1;
}

.logo-link {
    grid-column: 2;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
    text-decoration: none;
}

.logo {
    height: 58px;
    width: auto;
    max-width: none;
    display: block;
    opacity: 1;
    position: relative;
    z-index: 1;
    transform-origin: center center;
    transition: transform 0.22s ease;
}

.site-header.is-scrolled .logo {
    transform: scale(0.7);
}

.mobile-logo-link .mobile-logo {
    opacity: 1;
}

.main-nav {
    margin: 0;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    min-width: 0;
}

.main-nav-left {
    grid-column: 1;
    justify-self: end;
}

.main-nav-right {
    grid-column: 3;
    justify-self: start;
}

.menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 34px;
}

.menu > li {
    position: relative;
}

.menu > li > a {
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    line-height: 1;
    padding: 36px 0;
    white-space: nowrap;
    position: relative;
}

.menu-text {
    position: relative;
    display: inline-block;
}

.menu-text::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -16px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary);
    transform: translateX(-50%) scale(0);
    transition: transform 0.2s ease;
}

.menu-has-children > a::after {
    content: "";
    width: 6px;
    height: 6px;
    margin-left: 2px;
    border-right: 1.5px solid #ffffff;
    border-bottom: 1.5px solid #ffffff;
    opacity: 0.65;
    transform: rotate(45deg) translateY(-2px);
}

.menu > li:hover .menu-text::after,
.menu > li.is-current .menu-text::after {
    transform: translateX(-50%) scale(1);
}

.navbar-wrap {
    background: transparent;
}

.sub-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    min-width: 520px;
    border: 1px solid #e5e7eb;
    border-radius: 0;
    background: #ffffff;
    box-shadow: 0 12px 24px rgba(2, 8, 23, 0.24);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: 0.2s ease;
    overflow: visible;
}

.mega-menu::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 24px;
    width: 14px;
    height: 14px;
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    border-left: 1px solid #e5e7eb;
    transform: rotate(45deg);
}

.menu-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-menu {
    min-width: 520px;
    left: 0;
}

.mega-menu > li {
    border-right: 1px solid #eceff3;
    border-bottom: 1px solid #eceff3;
}

.mega-menu > li:nth-child(2n) {
    border-right: 0;
}

.mega-menu > li:nth-last-child(-n + 2) {
    border-bottom: 0;
}

.sub-menu a {
    min-height: 58px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    color: #1f2937;
    font-size: 14px;
    font-weight: 400;
    background: #ffffff;
}

.sub-menu .sub-icon {
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
    object-fit: contain;
    filter: invert(26%) sepia(7%) saturate(647%) hue-rotate(177deg) brightness(89%) contrast(84%);
    opacity: 0.92;
}

.sub-menu a:hover {
    background: #f8fafc;
    color: #111827;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    align-self: stretch;
    justify-self: end;
    grid-column: 5;
    z-index: 1;
}

/* İkon + metin CTA düzeni — arka plan / marka renkleri her bileşende ayrıca tanımlı kalır */
.btn-split-cta {
    display: inline-flex;
    align-items: stretch;
    padding: 0;
    margin: 0;
    gap: 0;
    overflow: hidden;
    text-decoration: none;
    border: 0;
    cursor: pointer;
    box-sizing: border-box;
    font-family: inherit;
    text-align: left;
    transition: filter 0.2s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.btn-split-cta:not(.cta-phone-btn):not(.btn-split-cta--sidebar):hover {
    filter: brightness(0.93);
}

.btn-split-cta:focus-visible {
    outline: 2px solid var(--secondary);
    outline-offset: 2px;
}

.btn-split-cta .btn-split-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 44px;
    width: 44px;
    min-width: 44px;
    align-self: stretch;
    box-sizing: border-box;
    background-color: var(--contact-btn-split-icon-well);
}

.btn-split-cta.btn-split-cta--sidebar .btn-split-icon {
    flex-basis: 52px;
    width: 52px;
    min-width: 52px;
    background-color: rgba(0, 0, 0, 0.06);
}

.btn-split-cta.btn-split-cta--light:not(.cta-phone-btn):hover {
    filter: none;
}

.btn-split-cta.btn-split-cta--light .btn-split-icon {
    background-color: rgba(0, 0, 0, 0.07);
}

.btn-split-cta.btn-split-cta--light:focus-visible {
    outline-color: var(--primary);
}

.btn-split-cta .btn-split-label {
    display: inline-flex;
    align-items: center;
    flex: 1 1 auto;
    min-width: 0;
    padding: 0 16px;
}

.btn-split-cta.btn-split-cta--full {
    width: 100%;
}

.btn-split-cta.btn-split-cta--full .btn-split-label {
    justify-content: center;
}

.btn-split-cta .btn-split-label--multiline {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    padding-top: 12px;
    padding-bottom: 12px;
}

.site-header .nav-actions .contact-btn.btn-split-cta {
    align-self: center;
    background: var(--primary);
    color: #ffffff;
    border-radius: 8px;
    min-height: 42px;
}

.site-header .nav-actions .contact-btn.btn-split-cta:hover {
    color: #ffffff;
}

.site-header .nav-actions .contact-btn.btn-split-cta:focus-visible {
    outline-offset: 2px;
}

.site-header .nav-actions .contact-btn.btn-split-cta .btn-split-label {
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
}

.site-header .nav-actions .contact-btn.btn-split-cta .icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    filter: invert(1) brightness(1.35);
    opacity: 0.96;
}

.icon-btn {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    padding: 0;
    cursor: pointer;
    font-family: inherit;
    background: transparent;
}

.desktop-search-toggle,
.mobile-search-toggle {
    background: transparent !important;
    box-shadow: none !important;
    border: 0 !important;
}

.icon-btn .icon {
    width: 18px;
    height: 18px;
    filter: brightness(0) saturate(100%);
    opacity: 0.88;
}

.contact-btn.btn-split-cta {
    line-height: 1.2;
}

.desktop-search-panel {
    position: absolute;
    top: calc(100% - 2px);
    right: 150px;
    width: 240px;
    background: #ffffff;
    border-radius: 0;
    border: 1px solid #e5e7eb;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: 0.2s ease;
    z-index: 30;
}

.desktop-search-panel::before {
    content: "";
    position: absolute;
    top: -8px;
    right: 24px;
    width: 14px;
    height: 14px;
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    border-left: 1px solid #e5e7eb;
    transform: rotate(45deg);
}

.desktop-search-panel.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.desktop-search-input-wrap {
    min-height: 46px;
    border-bottom: 1px solid #eceff5;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 12px;
}

.desktop-search-input {
    width: 100%;
    border: 0;
    outline: 0;
    font-size: 16px;
    color: #111827;
}

.desktop-search-arrow {
    font-size: 22px;
    line-height: 1;
    color: #334155;
}

.desktop-search-results {
    display: none;
    max-height: 250px;
    overflow-y: auto;
}

.desktop-search-results.is-visible {
    display: block;
}

.search-result-item {
    display: block;
    padding: 10px 12px;
    font-size: 14px;
    color: #111827;
    border-bottom: 1px solid #f0f2f6;
    background: #ffffff;
}

.search-result-item:last-child {
    border-bottom: 0;
}

.search-result-item:hover {
    background: #f8fafc;
}

.hero-slider {
    min-height: 108vh;
    position: relative;
    margin-top: -132px;
    padding-top: 132px;
    overflow: hidden;
    isolation: isolate;
    box-sizing: border-box;
    background-color: var(--secondary);
}

.hero-slider::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        radial-gradient(
            circle at 50% -5%,
            rgba(var(--secondary-rgb), 0.62) 0%,
            transparent 48%
        ),
        radial-gradient(circle at 50% 0%, rgba(var(--primary-rgb), 0.1) 0%, transparent 42%),
        linear-gradient(
            180deg,
            rgba(var(--secondary-rgb), 0.22) 0%,
            transparent 42%,
            rgba(0, 0, 0, 0.38) 100%
        ),
        repeating-linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.024) 0 1px,
            transparent 1px 72px
        ),
        repeating-linear-gradient(
            0deg,
            rgba(255, 255, 255, 0.016) 0 1px,
            transparent 1px 72px
        );
    mix-blend-mode: soft-light;
    opacity: 0.82;
}

.hero-slider::after {
    display: none;
}

@keyframes hero-slide-ken-burns {
    from {
        transform: scale(1.09);
    }
    to {
        transform: scale(1);
    }
}

.hero-slide {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0;
    pointer-events: none;
    transition:
        opacity 0.92s cubic-bezier(0.4, 0, 0.2, 1),
        visibility 0s linear 0.92s;
    visibility: hidden;
    background-size: cover;
    background-position: center;
}

.hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    transition:
        opacity 0.92s cubic-bezier(0.4, 0, 0.2, 1),
        visibility 0s linear 0s;
    visibility: visible;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    transform-origin: 50% 40%;
}

/* Foto üstü karartma + ikincil ton (tam genişlik, kenarda çerçeve yok) */
.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background-image:
        linear-gradient(
            92deg,
            rgba(var(--secondary-rgb), 0.84) 0%,
            rgba(var(--secondary-rgb), 0.5) 46%,
            rgba(var(--secondary-rgb), 0.7) 100%
        ),
        linear-gradient(180deg, rgba(0, 0, 0, 0.08) 20%, rgba(0, 0, 0, 0.5) 100%);
}

.hero-slide.is-active::before {
    animation: hero-slide-ken-burns 8.5s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

.hero-slide:nth-child(even)::before {
    transform-origin: 50% 55%;
}

.hero-slide:nth-child(1) {
    background: transparent;
}

.hero-slide:nth-child(1)::before {
    background-image: var(--hero-slide-image-1, url("../images/hero1.png"));
    background-color: rgb(var(--secondary-rgb));
}

.hero-slide:nth-child(2) {
    background: transparent;
}

.hero-slide:nth-child(2)::before {
    background-image: var(--hero-slide-image-2, url("../images/hero2.png"));
    background-color: rgb(var(--secondary-rgb));
}

.hero-slide:nth-child(3) {
    background: transparent;
}

.hero-slide:nth-child(3)::before {
    background-image: var(--hero-slide-image-3, url("../images/hero3.png"));
    background-color: rgb(var(--secondary-rgb));
}

.hero-content {
    position: relative;
    z-index: 4;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
    color: #ffffff;
    opacity: 1;
    transform: none;
    transition: none;
}

.hero-static-content {
    position: absolute;
    left: 50%;
    top: 132px;
    bottom: 42px;
    transform: translateX(-50%);
    width: min(1450px, 92%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 52px;
    margin: 0;
    padding: 0;
}

@media (prefers-reduced-motion: reduce) {
    .hero-slide {
        transition:
            opacity 0.22s ease,
            visibility 0s linear 0.22s;
    }

    .hero-slide.is-active {
        transition:
            opacity 0.22s ease,
            visibility 0s linear 0s;
    }

    .hero-slide::before {
        animation: none !important;
        transform: scale(1) !important;
    }

    .hero-slide::after {
        background-image:
            linear-gradient(
                92deg,
                rgba(var(--secondary-rgb), 0.68) 0%,
                rgba(var(--secondary-rgb), 0.34) 48%,
                rgba(var(--secondary-rgb), 0.54) 100%
            ),
            linear-gradient(180deg, transparent 32%, rgba(0, 0, 0, 0.32) 100%);
    }

    .hero-content {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.hero-badge {
    display: inline-flex;
    align-self: flex-start;
    margin-bottom: 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    padding: 7px 14px;
    font-size: 13px;
    font-weight: 600;
}

.hero-content h1,
.hero-content .hero-title {
    margin: 0;
    font-size: 38px;
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.hero-content p {
    margin: 16px 0 0;
    font-size: 16.5px;
    line-height: 1.65;
    color: #edf1f8;
    max-width: 760px;
}

.hero-actions {
    margin-top: 22px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-stats {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 28px 44px;
    position: relative;
    z-index: 4;
}

.hero-reservation-btn {
    margin-top: 18px;
    min-height: 42px;
    padding: 0 20px;
    border-radius: 8px;
    border: 1px solid #ffffff;
    background: transparent;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.hero-reservation-btn:hover,
.hero-reservation-btn:focus-visible {
    background: #ffffff;
    color: var(--secondary);
    border-color: #ffffff;
}

.hero-stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    justify-content: center;
    text-align: left;
}

.hero-stat-item img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.92;
}

.hero-stat-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.2;
}

.hero-stat-text strong {
    font-size: 30px;
    font-weight: 700;
}

.hero-stat-text span {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-btn {
    min-height: 40px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

.hero-btn .btn-split-icon img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    filter: invert(1) brightness(1.2);
}

.hero-btn .btn-split-label {
    font-size: inherit;
    font-weight: inherit;
}

.hero-btn-phone {
    background: var(--primary);
}

.hero-btn-whatsapp {
    background: #178d47;
}

.hero-dots {
    display: none;
}

.hero-dot {
    width: 6px;
    height: 22px;
    border-radius: 999px;
    border: 0;
    background: rgba(255, 255, 255, 0.35);
    padding: 0;
    cursor: pointer;
}

.hero-dot.is-active {
    background: #ffffff;
}

.about-section {
    padding: 62px 0 72px;
}

.about-grid {
    display: grid;
    grid-template-columns: 2.8fr 2.2fr;
    gap: 16px;
    align-items: start;
}

.about-content h2 {
    margin: 0;
    font-size: 25px;
    color: #1a2233;
    line-height: 1.2;
}

.about-content p {
    margin: 16px 0 0;
    font-size: 15.4px;
    line-height: 1.75;
    color: #4f5d75;
    max-width: 620px;
}

.about-media {
    margin: 0;
    position: relative;
    border-radius: 14px;
    overflow: hidden;
}

.about-media img {
    width: 100%;
    aspect-ratio: 12 / 7;
    object-fit: cover;
    display: block;
}

.services-section {
    padding: 8px 0 56px;
}

.services-head {
    margin-bottom: 24px;
    text-align: center;
}

.services-head-text {
    max-width: 760px;
    margin: 0 auto;
}

.services-head-text h2 {
    margin: 18px 0 0;
    color: #1a2233;
    font-size: 25px;
    line-height: 1.2;
}

.services-head-text h2 span {
    color: var(--primary);
}

.services-head-text p {
    margin: 12px auto 0;
    max-width: 720px;
    color: #4f5d75;
    font-size: 15.4px;
    line-height: 1.7;
}

.services-divider {
    margin: 12px auto 0;
    max-width: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.services-divider-line {
    height: 1px;
    background: rgba(26, 34, 51, 0.24);
    flex: 1 1 auto;
}

.services-divider-center {
    width: auto;
    height: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.services-divider-favicon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    opacity: 0.95;
}

.services-columns {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.services-column {
    display: contents;
}

.service-card {
    position: relative;
    margin: 0;
    border-radius: 10px;
    overflow: hidden;
    min-height: 410px;
}

.service-card > img {
    width: 100%;
    height: 100%;
    min-height: 410px;
    object-fit: cover;
    display: block;
}

.detail-contact-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 14px;
}

.detail-contact-btn.btn-split-cta {
    flex: 1 1 0;
    min-width: 0;
    min-height: 42px;
    border-radius: 8px;
    border-style: solid;
    border-width: 1px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
}

.detail-contact-btn.btn-split-cta:not(.is-whatsapp) {
    border-color: var(--primary);
    background: var(--primary);
}

.detail-contact-btn.btn-split-cta.is-whatsapp {
    background: #16a34a;
    border-color: #16a34a;
}

.detail-contact-btn.btn-split-cta .btn-split-label {
    justify-content: center;
    flex: 1 1 auto;
    padding-left: 10px;
    padding-right: 10px;
}

.detail-contact-btn.btn-split-cta .btn-split-icon img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    filter: brightness(0) invert(1) !important;
    opacity: 1 !important;
}

.service-card-overlay {
    position: absolute;
    inset: 0;
    padding: 18px 18px 16px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(0deg, rgba(17, 18, 22, 0.95) 0%, rgba(17, 18, 22, 0.72) 45%, rgba(17, 18, 22, 0.08) 100%);
}

.service-card-link {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: var(--primary);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

.service-card h3 {
    margin: 0;
    color: #ffffff;
    font-size: 19px;
    line-height: 1.3;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.45);
}

.service-card p {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.96);
    font-size: 15.4px;
    line-height: 1.65;
    max-width: 90%;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.why-us-section {
    padding: 24px 0 74px;
}

.menu-showcase-section {
    padding: 28px 0 54px;
}

.menu-showcase-layout {
    display: grid;
    grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
    align-items: center;
    gap: 24px;
}

.menu-showcase-content h2 {
    margin: 0;
    font-size: 25px;
    color: rgb(var(--secondary-rgb));
    line-height: 1.2;
}

.menu-showcase-content {
    border: 1px solid rgba(var(--secondary-rgb), 0.18);
    border-radius: 14px;
    padding: 18px 16px;
}

.menu-showcase-content p {
    margin: 10px 0 0;
    color: #55637c;
    font-size: 15px;
    line-height: 1.65;
}

.menu-showcase-nav {
    margin-top: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.menu-showcase-arrow {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid rgb(var(--secondary-rgb));
    background: rgb(var(--secondary-rgb));
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.menu-showcase-arrow span {
    font-size: 21px;
    line-height: 1;
    transform: translateY(-1px);
}

.menu-showcase-arrow:hover {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}

.menu-showcase-slider-wrap {
    min-width: 0;
}

.menu-showcase-slider {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 4px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.menu-showcase-slider::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}

.menu-showcase-card {
    flex: 0 0 calc((100% - 42px) / 4);
    min-width: 0;
    border-radius: 14px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(var(--secondary-rgb), 0.12);
    scroll-snap-align: start;
}

.menu-showcase-media {
    margin: 0;
    aspect-ratio: 4 / 3;
    background: #eceff5;
}

.menu-showcase-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.menu-showcase-meta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: stretch;
    min-height: 52px;
}

.menu-showcase-meta h3 {
    margin: 0;
    padding: 0 12px;
    display: flex;
    align-items: center;
    color: rgb(var(--secondary-rgb));
    font-size: 15px;
    font-weight: 700;
    background: #eef1f5;
    line-height: 1.25;
}

.menu-showcase-preview-btn {
    min-width: 58px;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgb(var(--secondary-rgb));
    color: #ffffff;
    border: 0;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.menu-showcase-preview-btn:hover {
    background: var(--primary);
}

.menu-showcase-preview-icon {
    width: 18px;
    height: 18px;
    display: block;
    filter: brightness(0) invert(1);
}

.menu-showcase-nav.mobile-only {
    display: none;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px 26px;
}

.why-us-card {
    border: 1px solid rgba(var(--secondary-rgb), 0.1);
    border-radius: 20px;
    padding: 26px 24px;
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #f4f5f8;
    min-height: 206px;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.why-us-card:hover {
    border-color: rgba(var(--secondary-rgb), 0.24);
    transform: translateY(-2px);
    box-shadow: none;
}

.why-us-card-number {
    font-size: 52px;
    font-weight: 800;
    letter-spacing: 0.03em;
    line-height: 0.86;
    color: transparent;
    -webkit-text-stroke: 1.6px rgba(var(--secondary-rgb), 0.62);
    text-stroke: 1.6px rgba(var(--secondary-rgb), 0.62);
    font-variant-numeric: tabular-nums;
    opacity: 0.96;
}

.why-us-card-content {
    width: 100%;
}

.why-us-card h3 {
    margin: 0;
    font-size: 17.8px;
    font-weight: 700;
    color: rgb(var(--secondary-rgb));
    line-height: 1.32;
    transition: color 0.22s ease;
}

.why-us-card p {
    margin: 10px 0 0;
    color: rgba(var(--secondary-rgb), 0.78);
    font-size: 15.4px;
    line-height: 1.68;
    transition: color 0.22s ease;
}

.why-us-card:hover h3,
.why-us-card:hover p {
    color: rgb(var(--secondary-rgb));
}

.yazi-1-section {
    padding: 6px 0 74px;
}

.yazi-1-content {
    max-width: none;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.yazi-1-content h2 {
    margin: 0;
    font-size: 25px;
    color: #1a2233;
    line-height: 1.25;
}

.yazi-1-content h2 span {
    color: var(--primary);
}

.yazi-1-content p {
    margin: 16px 0 0;
    font-size: 15.4px;
    color: #4f5d75;
    line-height: 1.8;
}

.yazi-2col-grid {
    margin-top: 12px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.yazi-2col-grid p {
    margin: 0;
    text-align: center;
}

.yazi-1-section-secondary .yazi-1-content p:last-child {
    margin-bottom: 40px;
}

.yazi-1-section-istanbul-route {
    padding-top: clamp(38px, 7vw, 74px);
}

.yazi-1-section-istanbul-route .yazi-1-content h2 {
    margin-top: 0;
}

.regions-section {
    margin-top: -48px;
    margin-bottom: 28px;
    padding: 54px 0 66px;
    background: var(--secondary);
}

.regions-head {
    text-align: center;
    margin-bottom: 26px;
}

.regions-head h2 {
    margin: 0;
    font-size: 25px;
    color: #ffffff;
    line-height: 1.2;
}

.regions-divider {
    margin: 12px auto 0;
    max-width: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.regions-divider-line {
    height: 1px;
    background: rgba(255, 255, 255, 0.35);
    flex: 1 1 auto;
}

.regions-divider-center {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.regions-divider-icon {
    width: 21px;
    height: 21px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(19%) sepia(82%) saturate(5500%) hue-rotate(355deg) brightness(92%) contrast(94%);
}

.regions-head p {
    margin: 12px auto 0;
    max-width: 820px;
    color: #c8d1e2;
    font-size: 15.4px;
    line-height: 1.75;
}

.regions-viewport {
    overflow: hidden;
}

.regions-slider {
    position: relative;
}

.regions-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: rgba(19, 29, 50, 0.92);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    z-index: 2;
}

.regions-nav span {
    font-size: 24px;
    line-height: 1;
}

.regions-nav-prev {
    left: 10px;
}

.regions-nav-next {
    right: 10px;
}

.regions-slider:hover .regions-nav {
    opacity: 1;
    visibility: visible;
}

.regions-nav:hover {
    transform: translateY(-50%) scale(1.05);
}

.regions-mobile-nav {
    display: none;
}

.regions-track {
    display: flex;
    align-items: stretch;
    gap: 18px;
    transition: transform 0.35s ease;
    will-change: transform;
}

.region-card {
    flex: 0 0 auto;
    background: #f3f5f9;
    border-radius: 8px;
    padding: 28px 24px 24px;
    min-height: 320px;
    transition: none;
}

.region-card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.region-card-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.region-card h4 {
    margin: 16px 0 0;
    color: #1f2635;
    font-size: 17px;
    line-height: 1.3;
}

.region-card p {
    margin: 10px 0 0;
    color: #4b5568;
    font-size: 14px;
    line-height: 1.55;
}

.region-card-link {
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #1f2635;
    font-size: 15px;
    font-weight: 700;
}

.region-card-link::before {
    content: "+";
    width: 17px;
    height: 17px;
    border-radius: 50%;
    border: 2px solid currentColor;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    line-height: 1;
}

.reviews-section {
    margin-top: -13px;
    padding: 54px 0 52px;
    background: var(--secondary);
}

.reviews-head {
    text-align: center;
    margin-bottom: 26px;
}

.reviews-head h2 {
    margin: 0;
    font-size: 25px;
    color: #ffffff;
    line-height: 1.2;
}

.reviews-head h2 span {
    color: var(--primary);
}

.reviews-divider {
    margin: 12px auto 0;
    max-width: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.reviews-divider-line {
    height: 1px;
    background: rgba(255, 255, 255, 0.35);
    flex: 1 1 auto;
}

.reviews-divider-center {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.reviews-divider-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.reviews-head p {
    margin: 12px auto 0;
    max-width: 820px;
    color: #c8d1e2;
    font-size: 15.4px;
    line-height: 1.75;
}

.reviews-slider {
    position: relative;
}

.reviews-viewport {
    overflow: hidden;
}

.reviews-track {
    display: flex;
    align-items: stretch;
    gap: 18px;
    transition: transform 0.35s ease;
    will-change: transform;
}

.reviews-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: var(--secondary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    z-index: 2;
}

.reviews-nav span {
    font-size: 24px;
    line-height: 1;
}

.reviews-nav-prev {
    left: 10px;
}

.reviews-nav-next {
    right: 10px;
}

.reviews-slider:hover .reviews-nav {
    opacity: 1;
    visibility: visible;
    background: var(--primary);
    color: #ffffff;
}

.reviews-slider:hover .reviews-nav span {
    color: #ffffff;
}

.reviews-mobile-nav {
    display: none;
}

.review-card {
    flex: 0 0 auto;
    background: #f3f5f9;
    border-radius: 8px;
    padding: 24px 16px 22px;
    min-height: 270px;
    text-align: center;
    border: 1px solid rgba(17, 18, 22, 0.08);
}

.review-google-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto;
}

.review-google-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.review-card h4 {
    margin: 10px 0 0;
    color: var(--secondary);
    font-size: 15px;
    line-height: 1.3;
    font-weight: 700;
}

.review-stars {
    margin-top: 8px;
    color: #ffc400;
    font-size: 17px;
    letter-spacing: 1px;
    line-height: 1;
}

.review-card p {
    margin: 10px 0 0;
    color: #4b5568;
    font-size: 14px;
    line-height: 1.55;
}

.gallery-section {
    padding: 8px 0 78px;
}

.gallery-head {
    text-align: center;
    margin-bottom: 24px;
}

.gallery-head h2 {
    margin: 0;
    font-size: 25px;
    color: #1a2233;
    line-height: 1.2;
}

.gallery-divider {
    margin: 12px auto 0;
    max-width: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.gallery-divider-line {
    height: 1px;
    background: rgba(26, 34, 51, 0.22);
    flex: 1 1 auto;
}

.gallery-divider-center {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.gallery-divider-icon {
    width: 21px;
    height: 21px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(19%) sepia(82%) saturate(5500%) hue-rotate(355deg) brightness(92%) contrast(94%);
}

.gallery-head p {
    margin: 12px auto 0;
    max-width: 820px;
    color: #4f5d75;
    font-size: 15.4px;
    line-height: 1.75;
}

.gallery-columns {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.gallery-column {
    display: contents;
}

.gallery-item {
    margin: 0;
    border-radius: 10px;
    overflow: hidden;
    background: #e5e9f1;
    min-height: 220px;
    cursor: zoom-in;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    display: block;
}

.photo-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(8, 11, 18, 0.86);
}

.photo-lightbox.is-open {
    display: flex;
}

.photo-lightbox-media {
    margin: 0;
    max-width: min(1200px, 92vw);
    max-height: 88vh;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.34);
}

.photo-lightbox-media img {
    width: 100%;
    height: auto;
    max-height: 88vh;
    display: block;
    object-fit: contain;
    background: #0f1420;
}

.photo-lightbox-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.cta-section {
    padding: 6px 0 84px;
}

.cta-box {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background-image:
        linear-gradient(0deg, rgba(17, 18, 22, 0.82), rgba(17, 18, 22, 0.82)),
        var(--cta-bg-image, url("../images/hero2.png"));
    background-size: cover;
    background-position: center;
    padding: 40px 28px 76px;
    color: #ffffff;
}

.cta-support-icon {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 38px;
    height: 38px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.cta-content {
    max-width: 760px;
}

@media (min-width: 1101px) {
    .cta-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin: 0 auto;
    }
}

.cta-content h2 {
    margin: 0;
    font-size: 32px;
    line-height: 1.2;
    color: #ffffff;
}

.cta-content h2 span {
    color: var(--primary);
}

.cta-content p {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15.4px;
    line-height: 1.75;
}

.cta-phone-btn.btn-split-cta {
    margin-top: 18px;
    min-height: 50px;
    border-radius: 10px;
    background: #ffffff;
    color: var(--secondary);
    font-size: 15px;
    font-weight: 700;
    box-shadow: none;
}

.cta-phone-btn.btn-split-cta:hover {
    filter: brightness(0.96);
}

.cta-phone-btn .btn-split-label {
    padding: 10px 18px 10px 14px;
}

.cta-phone-btn .btn-split-icon {
    background-color: rgba(0, 0, 0, 0.07);
}

.cta-phone-icon {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px;
    max-width: 18px;
    min-height: 18px;
    max-height: 18px;
    object-fit: contain;
    filter: none;
    display: inline-block;
    flex: 0 0 18px;
    vertical-align: middle;
}

.cta-phone-btn .btn-split-icon img,
.cta-phone-btn .cta-phone-icon {
    width: 18px !important;
    height: 18px !important;
}

.cta-phone-btn .btn-split-label strong {
    color: var(--secondary);
    font-size: 16px;
    font-weight: 600;
}

.cta-ticker {
    position: absolute;
    right: 16px;
    bottom: 12px;
    width: min(640px, 60%);
    overflow: hidden;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    background: var(--primary);
    backdrop-filter: blur(3px);
}

.cta-ticker-track {
    display: inline-flex;
    align-items: center;
    gap: 26px;
    white-space: nowrap;
    padding: 8px 16px;
    animation: ctaTickerLoop 24s linear infinite;
}

.cta-ticker-track span {
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cta-ticker-track span::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ffffff;
    opacity: 0.8;
}

@keyframes ctaTickerLoop {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.faq-section {
    padding: 10px 0 80px;
}

.faq-head {
    text-align: center;
    margin-bottom: 22px;
}

.faq-head h2 {
    margin: 0;
    font-size: 25px;
    color: #1a2233;
    line-height: 1.2;
}

.faq-divider {
    margin: 12px auto 0;
    max-width: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.faq-divider-line {
    height: 1px;
    background: rgba(26, 34, 51, 0.22);
    flex: 1 1 auto;
}

.faq-divider-center {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.faq-divider-icon {
    width: 21px;
    height: 21px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(19%) sepia(82%) saturate(5500%) hue-rotate(355deg) brightness(92%) contrast(94%);
}

.faq-head p {
    margin: 12px auto 0;
    max-width: 860px;
    color: #4f5d75;
    font-size: 15.4px;
    line-height: 1.75;
}

.faq-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 14px;
    align-items: start;
}

.faq-item {
    border: 1px solid #eceff4;
    background: #f6f8fb;
    border-radius: 9px;
    overflow: hidden;
    align-self: start;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 13px 44px 13px 14px;
    color: #222a39;
    position: relative;
    min-height: 54px;
    display: flex;
    align-items: center;
}

.faq-item summary h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.45;
    padding-left: 44px;
}

.faq-item summary::before {
    content: "?";
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border-radius: 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--primary-rgb), 0.14);
    color: var(--primary);
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "⌄";
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #9aa4b7;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
}

.faq-item[open] summary::after {
    transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
    border-top: 1px solid #e6ebf2;
    padding: 12px 16px 14px;
    color: #4f5d75;
    font-size: 15.4px;
    line-height: 1.75;
}

.blog-home-intro-section {
    padding: 10px 0 16px;
}

.blog-home-section {
    padding: 0 0 62px;
}

.blog-home-slider {
    position: relative;
}

.blog-home-viewport {
    overflow: hidden;
}

.blog-home-track {
    display: flex;
    gap: 18px;
    transition: transform 0.24s ease;
    will-change: transform;
    align-items: stretch;
}

.blog-home-card {
    flex: 0 0 calc((100% - 54px) / 4);
    display: flex;
    flex-direction: column;
    min-height: 0;
    background: #ffffff;
    border: 1px solid #e5eaf1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(17, 23, 35, 0.06);
}

.blog-home-media {
    margin: 0;
    background: #ffffff;
    line-height: 0;
}

.blog-home-media img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-home-body {
    padding: 12px 12px 14px;
}

.blog-home-body h3 {
    margin: 0;
    color: rgb(var(--secondary-rgb));
    font-size: 17px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-home-body p {
    margin: 8px 0 0;
    color: #6a768d;
    font-size: 13.6px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-home-nav {
    position: static;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid rgb(var(--secondary-rgb));
    background: rgb(var(--secondary-rgb));
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.blog-home-nav span {
    font-size: 20px;
    line-height: 1;
}

.blog-home-nav-row {
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.menu-page-intro {
    padding-bottom: 18px;
}

.menu-page-section {
    padding: 20px 0 68px;
}

.menu-category-section + .menu-category-section {
    margin-top: 24px;
}

.menu-category-head {
    text-align: left;
    margin-bottom: 14px;
}

.menu-category-head h2 {
    margin: 0;
    color: rgb(var(--secondary-rgb));
    font-size: 22px;
    line-height: 1.2;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    padding-bottom: 12px;
}

.menu-category-head h2::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: rgba(17, 18, 22, 0.16);
}

.menu-category-head h2::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 20px;
    height: 2px;
    background: var(--primary);
}

.menu-category-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.menu-category-card {
    border: 1px solid #e5eaf1;
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
}

.menu-category-card-media {
    margin: 0;
    aspect-ratio: 4 / 3;
    background: #f0f3f8;
}

.menu-category-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.menu-category-card-title {
    min-height: 46px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: rgb(var(--secondary-rgb));
    background: #eef1f5;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
}

.blog-page-cards-section {
    padding-top: 24px;
}

.blog-home-section.blog-page-cards-section {
    padding-top: 24px;
}

.blog-page-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.blog-page-grid .blog-home-card {
    flex: initial;
}

.blog-page-grid .blog-home-body h3 a {
    color: inherit;
}

.blog-articles-section {
    padding: 4px 0 68px;
}

.blog-article-item {
    background: #ffffff;
    border: 1px solid #e5eaf1;
    border-radius: 12px;
    padding: 18px 18px 16px;
}

.blog-article-item + .blog-article-item {
    margin-top: 14px;
}

.blog-article-item h2 {
    margin: 0;
    color: rgb(var(--secondary-rgb));
    font-size: 24px;
    line-height: 1.25;
}

.blog-article-item p {
    margin: 12px 0 0;
    color: #52607a;
    font-size: 15px;
    line-height: 1.78;
}

.blog-article-item h3 {
    margin: 14px 0 0;
    color: rgb(var(--secondary-rgb));
    font-size: 18px;
    line-height: 1.3;
}

.contact-home-section {
    padding: 8px 0 84px;
}

.contact-home-head {
    text-align: center;
    margin-bottom: 24px;
}

.contact-home-head h2 {
    margin: 0;
    font-size: 25px;
    color: #1a2233;
    line-height: 1.2;
}

.contact-home-divider {
    margin: 12px auto 0;
    max-width: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-home-divider-line {
    height: 1px;
    background: rgba(26, 34, 51, 0.22);
    flex: 1 1 auto;
}

.contact-home-divider-center {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contact-home-divider-icon {
    width: 21px;
    height: 21px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(19%) sepia(82%) saturate(5500%) hue-rotate(355deg) brightness(92%) contrast(94%);
}

.contact-home-head p {
    margin: 12px auto 0;
    max-width: 860px;
    color: #4f5d75;
    font-size: 15.4px;
    line-height: 1.75;
}

.contact-home-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    align-items: stretch;
}

@media (min-width: 1025px) {
    .contact-home-grid {
        align-items: center;
    }

    .contact-home-grid .contact-form-card {
        align-self: center;
    }
}

.contact-form-card {
    background: #ffffff;
}

.contact-form-card h3 {
    margin: 0 0 14px;
    font-size: 44px;
    color: #1a2233;
    line-height: 1.2;
}

.contact-form-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form-left {
    display: grid;
    gap: 12px;
}

.contact-input-wrap,
.contact-textarea-wrap {
    position: relative;
    display: block;
}

.contact-input-wrap img,
.contact-textarea-wrap img {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-58%);
    width: 14px;
    height: 14px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(39%) sepia(6%) saturate(1133%) hue-rotate(181deg) brightness(93%) contrast(85%);
    opacity: 0.9;
}

.contact-textarea-wrap img {
    top: 16px;
    transform: none;
}

.contact-input-wrap input,
.contact-textarea-wrap textarea {
    width: 100%;
    border: 1px solid #d8dde7;
    border-radius: 10px;
    background: #ffffff;
    color: #2a3449;
    font-family: "Inter", sans-serif, serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    outline: none;
}

.contact-input-wrap input::placeholder,
.contact-textarea-wrap textarea::placeholder {
    color: #6d778c;
    font-family: "Inter", sans-serif, serif;
    font-size: 14px;
    font-weight: 500;
}

.contact-input-wrap input {
    height: 42px;
    padding: 0 12px 0 36px;
}

.contact-textarea-wrap textarea {
    min-height: 150px;
    resize: vertical;
    padding: 12px 12px 12px 36px;
}

.contact-submit-btn.btn-split-cta.btn-split-cta--full {
    margin-top: 12px;
    width: 100%;
    min-height: 42px;
    border: 0;
    border-radius: 10px;
    background: var(--primary);
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

.contact-submit-btn.btn-split-cta .btn-split-label {
    justify-content: center;
    flex: 1 1 auto;
}

.contact-submit-btn.btn-split-cta .btn-split-icon .icon {
    width: 14px;
    height: 14px;
    object-fit: contain;
    filter: invert(1) brightness(1.35);
}

.contact-info-card {
    background: var(--secondary);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-info-item {
    min-height: 76px;
    padding: 14px 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-info-item:last-child {
    border-bottom: 0;
}

.contact-info-item img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.95;
    margin-top: 2px;
}

.contact-info-item h4 {
    margin: 0;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.35;
}

.contact-info-item p {
    margin: 2px 0 0;
    color: #c6d0e4;
    font-size: 14px;
}

.contact-map-wrap {
    margin-top: 22px;
    border-radius: 10px;
    overflow: hidden;
    height: 400px;
    border: 1px solid #dbe1ec;
}

.contact-map-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.contact-page-main {
    background: #f4f6fa;
}

.photo-gallery-main {
    background: #f4f6fa;
}

.photo-gallery-page-section {
    padding: 28px 0 62px;
}

.photo-gallery-layout {
    display: grid;
    grid-template-columns: calc(75% - 30px) 25%;
    column-gap: 60px;
    row-gap: 30px;
    align-items: start;
}

.photo-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.photo-gallery-grid .gallery-item {
    min-height: 210px;
}

.photo-gallery-grid .gallery-item img {
    min-height: 210px;
}

.photo-gallery-content,
.photo-gallery-sidebar,
.about-page-content {
    min-width: 0;
}

.about-page-content {
    background: #ffffff;
    border: 1px solid #e7ebf2;
    border-radius: 10px;
    padding: 22px 20px;
}

.about-page-content h2 {
    margin: 0 0 16px;
    color: #111216;
    font-size: 22px;
    line-height: 1.2;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    padding-bottom: 12px;
}

.about-page-content h3 {
    margin: 26px 0 12px;
    color: #111216;
    font-size: 19px;
    line-height: 1.25;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    padding-bottom: 12px;
}

.about-heading-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
    flex: 0 0 16px;
    filter: brightness(0) saturate(100%) invert(15%) sepia(94%) saturate(6210%) hue-rotate(356deg) brightness(86%) contrast(106%);
}

.about-page-content h2::after,
.about-page-content h3::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: rgba(17, 18, 22, 0.16);
}

.about-page-content h2::before,
.about-page-content h3::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 20px;
    height: 2px;
    background: var(--primary);
}

.about-page-content p {
    margin: 0 0 14px;
    color: #4f5d75;
    font-size: 15.4px;
    line-height: 1.75;
}

.about-page-content p:last-child {
    margin-bottom: 0;
}

.service-detail-top-image {
    margin: 0 0 14px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e6eaf1;
}

.service-detail-content {
    overflow-x: hidden;
}

.service-detail-content h2 {
    font-size: 19px;
}

.service-detail-content .service-article-list {
    margin: 0 0 16px 18px;
    padding: 0;
    color: #4f5d75;
}

.service-detail-content .service-article-list li {
    margin: 0 0 7px;
    line-height: 1.65;
}

.service-detail-top-image img {
    width: 100%;
    display: block;
    aspect-ratio: 2 / 1;
    object-fit: contain;
    background: #f3f6fb;
}

.service-page-reviews {
    margin-top: 8px;
    margin-bottom: 12px;
    padding: 0;
    border-radius: 0;
}

.service-page-reviews .reviews-slider,
.service-page-reviews .reviews-viewport {
    margin: 0;
    padding: 0;
    width: 100%;
    min-width: 0;
}

.service-page-reviews .reviews-viewport {
    overflow: hidden;
}

.service-page-reviews .reviews-track > * {
    flex-shrink: 0;
}

.service-detail-content #icerik-musteri-yorumlari {
    margin-bottom: 8px;
}

.service-page-reviews .review-card {
    min-height: 226px;
    padding: 18px 14px 16px;
}

.service-page-reviews .review-card h4 {
    margin-top: 8px;
    font-size: 15px;
}

.service-page-reviews .review-stars {
    margin-top: 6px;
}

.service-page-reviews .review-card p {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.5;
}

.photo-gallery-box {
    padding: 16px;
}

.hizmetlerimiz-services-section {
    padding: 24px 0 62px;
}

.hizmetlerimiz-page-main {
    background: #ffffff;
}

.hizmetlerimiz-content-box .services-columns {
    margin-top: 12px;
}

.hizmetlerimiz-content-box .service-card h3 {
    color: #ffffff;
}

.hizmetlerimiz-content-box .service-card p {
    color: rgba(255, 255, 255, 0.96);
}

.hizmetlerimiz-services-section .services-columns {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.privacy-page-content ul {
    margin: 0 0 14px;
    padding: 0;
    list-style: none;
}

.privacy-page-content li {
    margin-bottom: 8px;
    color: #4f5d75;
    font-size: 15.4px;
    line-height: 1.7;
}

.privacy-page-content li:last-child {
    margin-bottom: 0;
}

.privacy-page-content li::before {
    content: "- ";
    color: inherit;
}

.faq-page-list {
    margin-top: 8px;
}

.reference-grid {
    margin-top: 8px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.reference-item {
    min-height: 120px;
    border: 1px solid #e7ebf2;
    border-radius: 10px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
}

.reference-item img {
    max-width: 100%;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.vehicle-spec-list {
    margin-top: 12px;
    display: grid;
    gap: 18px;
}

.vehicle-spec-item {
    border: 1px solid #dfe5ef;
    border-radius: 4px;
    background: #ffffff;
    overflow: hidden;
}

.vehicle-spec-media {
    min-height: 300px;
    background: #f3f5f8;
    border-top: 0;
    border-bottom: 1px solid #dde3ed;
    display: grid;
    place-items: center;
    padding: 14px;
}

.vehicle-spec-media span {
    color: #6b7890;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.vehicle-spec-media img {
    width: 100%;
    max-width: 100%;
    max-height: 270px;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 10px;
}

.vehicle-spec-title {
    margin: 0;
    color: #ffffff;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
    padding: 16px 12px;
    background: var(--primary);
}

.vehicle-detail-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 14px auto 10px;
    border: 1px solid #cfd5df;
    border-radius: 6px;
    background: #ffffff;
    color: #222f44;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    line-height: 1;
    height: 39px;
    padding: 0 14px;
    cursor: default;
}

.vehicle-spec-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #d4dbe6;
}

.vehicle-spec-table th,
.vehicle-spec-table td {
    padding: 14px 8px;
    border: 1px solid #d4dbe6;
    font-size: 15.5px;
    line-height: 1.3;
    text-align: center;
    vertical-align: middle;
}

.vehicle-spec-table th {
    color: #213049;
    background: #eef2f8;
    font-weight: 700;
}

.vehicle-spec-table td {
    color: #1f2e44;
    font-weight: 600;
    background: #ffffff;
}

.vehicle-spec-meta {
    padding: 12px 14px 16px;
}

.vehicle-spec-meta p {
    margin: 0 0 6px;
    color: #4a566c;
    font-size: 14.5px;
    line-height: 1.6;
}

.vehicle-spec-meta p:last-child {
    margin-bottom: 0;
}

.vehicle-spec-meta strong {
    color: #111216;
    font-weight: 700;
}

.region-page-grid {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.region-page-card {
    margin: 0;
    min-height: 0;
    border-radius: 14px;
    border: 1px solid #dfe5ef;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafd 100%);
    box-shadow: 0 10px 24px rgba(17, 18, 22, 0.06);
    overflow: hidden;
    position: relative;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.region-page-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 30px rgba(17, 18, 22, 0.1);
}

.region-page-link {
    display: grid;
    grid-template-rows: auto 1fr;
    min-height: 0;
    color: inherit;
    text-decoration: none;
}

.region-page-thumb {
    margin: 0;
    width: 100%;
    aspect-ratio: 2 / 1;
    overflow: hidden;
    border-radius: 14px 14px 0 0;
    border-bottom: 1px solid #e4e9f2;
    background: #f3f6fb;
}

.region-page-cover {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: #f3f6fb;
    display: block;
    transition: transform 0.26s ease;
}

.region-page-card:hover .region-page-cover {
    transform: scale(1.05);
}

.region-page-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 14px 12px 16px;
    gap: 4px;
}

.region-page-card h4 {
    margin: 0;
    color: #101827;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.38;
    text-align: center;
    letter-spacing: 0.1px;
}

.region-page-content p {
    margin: 0;
    color: #6b7a93;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
}

.faq-page-list .faq-item summary h3 {
    padding-bottom: 0;
    display: block;
    white-space: normal;
    overflow-wrap: anywhere;
    line-height: 1.5;
}

.faq-page-list .faq-item summary h3::before,
.faq-page-list .faq-item summary h3::after {
    content: none;
}

.photo-gallery-sidebar {
    display: grid;
    gap: 14px;
}

.photo-sidebar-menu {
    background: #ffffff;
    border: 1px solid #e7ebf2;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
}

.photo-sidebar-menu h3 {
    margin: 0;
    padding: 16px 14px;
    background: var(--secondary);
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.15;
    border-radius: 10px 10px 0 0;
}

.photo-sidebar-menu h3.photo-sidebar-toggle-title {
    padding: 0;
}

.photo-sidebar-menu.is-collapsed > ul {
    display: none;
}

.photo-sidebar-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border: 0;
    margin: 0;
    padding: 16px 14px;
    background: transparent;
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.15;
    text-align: left;
    cursor: pointer;
}

.photo-sidebar-toggle-icon {
    width: 9px;
    height: 9px;
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    transform: rotate(45deg);
    transition: transform 0.2s ease, margin 0.2s ease;
    margin-right: 2px;
}

.photo-sidebar-toggle[aria-expanded="true"] .photo-sidebar-toggle-icon {
    transform: rotate(225deg);
    margin-top: 4px;
}

.photo-sidebar-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.photo-sidebar-menu li {
    border-bottom: 1px solid #e6e9ef;
}

.photo-sidebar-menu li:last-child {
    border-bottom: 0;
}

.photo-sidebar-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 14px;
    color: #111216;
    font-size: 15px;
    font-weight: 600;
}

.photo-sidebar-menu a img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.photo-sidebar-dropdown summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 14px;
    color: #111216;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

.photo-sidebar-dropdown summary::-webkit-details-marker {
    display: none;
}

.photo-sidebar-summary-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.photo-sidebar-summary-label img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.photo-sidebar-dropdown summary::after {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 1.5px solid #7d8798;
    border-bottom: 1.5px solid #7d8798;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
    margin-right: 2px;
}

.photo-sidebar-dropdown[open] summary::after {
    transform: rotate(225deg);
    margin-top: 4px;
}

.photo-sidebar-submenu {
    margin: 0;
    padding: 0 0 6px;
    list-style: none;
    border-top: 1px solid #edf1f6;
}

.photo-sidebar-submenu li {
    border-bottom: 0;
}

.photo-sidebar-submenu a {
    padding: 10px 14px;
    font-size: 15px;
    font-weight: 500;
    color: #5a667d;
}

.photo-sidebar-submenu a img {
    width: 14px;
    height: 14px;
}

.photo-sidebar-menu--districts h3 {
    margin: 0;
    padding: 16px 14px;
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    background: var(--secondary);
    line-height: 1.15;
    border-radius: 10px 10px 0 0;
}

.photo-sidebar-submenu--scroll {
    max-height: 300px;
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
}

.photo-sidebar-contact.btn-split-cta {
    display: flex;
    width: 100%;
    align-items: stretch;
    padding: 0;
    margin: 12px 0 0;
    gap: 0;
    background: #ffffff;
    border: 1px solid #e6e9ef;
    border-left-width: 3px;
    border-left-style: solid;
    box-sizing: border-box;
}

.photo-gallery-sidebar > .photo-sidebar-contact.btn-split-cta:first-of-type {
    margin-top: 16px;
}

.photo-sidebar-contact.btn-split-cta .btn-split-label--multiline strong {
    display: block;
    font-size: 19px;
    line-height: 1.1;
}

.photo-sidebar-contact.btn-split-cta .btn-split-label--multiline > span:last-child {
    display: block;
    margin-top: 4px;
    color: #4f5d75;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 500;
}

.photo-sidebar-contact-phone.btn-split-cta {
    border-left-color: var(--primary);
}

.photo-sidebar-contact-phone.btn-split-cta .btn-split-label--multiline strong {
    color: var(--primary);
}

.photo-sidebar-contact-phone.btn-split-cta .btn-split-icon img {
    filter: brightness(0) saturate(100%) invert(15%) sepia(94%) saturate(6210%) hue-rotate(356deg) brightness(86%) contrast(106%);
}

.photo-sidebar-contact-whatsapp.btn-split-cta {
    border-left-color: #00a651;
}

.photo-sidebar-contact-whatsapp.btn-split-cta .btn-split-label--multiline strong {
    color: #00a651;
}

.photo-sidebar-contact-whatsapp.btn-split-cta .btn-split-icon img {
    filter: brightness(0) saturate(100%) invert(36%) sepia(86%) saturate(1805%) hue-rotate(118deg) brightness(96%) contrast(102%);
}

.photo-sidebar-contact.btn-split-cta .btn-split-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.contact-page-hero {
    position: relative;
    overflow: hidden;
    background-color: var(--secondary);
    background-image:
        linear-gradient(0deg, rgba(17, 18, 22, 0.52), rgba(17, 18, 22, 0.52)),
        url("../images/headerbacround.png");
    background-size: 45% auto;
    background-repeat: no-repeat;
    background-position: center top;
    padding: 50px 0 44px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.inner-page .contact-page-hero {
    margin-top: -84px;
    padding-top: 118px;
}

@media (min-width: 1101px) {
    html:has(body.inner-page) {
        scroll-padding-top: 96px;
    }
}

.contact-page-hero-row {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-align: center;
}

.contact-page-hero h1 {
    margin: 0;
    width: 100%;
    text-align: center;
    color: #ffffff;
    font-size: 26px;
    line-height: 1.2;
    font-weight: 600;
}

.contact-page-hero .hizmetlerimiz-page-title {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.hizmetlerimiz-page-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hizmetlerimiz-page-region {
    font-size: 19px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.92);
}

.contact-breadcrumb {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 600;
}

.contact-breadcrumb-home {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #ffffff;
}

.contact-breadcrumb-home img {
    width: 14px;
    height: 14px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.contact-breadcrumb-sep {
    opacity: 0.8;
}

.contact-breadcrumb-current {
    color: #ffffff;
}

.contact-page-section {
    padding-bottom: 80px;
}

.contact-page-map {
    height: 390px;
    overflow: hidden;
}

.contact-page-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.contact-page-card {
    margin: -58px auto 0;
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid #e3e8f0;
    padding: 20px;
    position: relative;
    z-index: 15;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 18px;
}

.contact-page-form h2 {
    margin: 0;
    color: #1a2233;
    font-size: 26px;
    line-height: 1.2;
}

.contact-page-form > p {
    margin: 8px 0 14px;
    color: #7a8396;
    font-size: 13px;
    line-height: 1.6;
}

.contact-page-form .contact-form-layout {
    gap: 12px;
}

.contact-page-form .contact-input-wrap input {
    height: 40px;
}

.contact-page-form .contact-textarea-wrap textarea {
    min-height: 132px;
}

.contact-page-form .contact-submit-btn.btn-split-cta {
    width: 100%;
    min-height: 42px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    border: 0;
    margin-top: 12px;
    cursor: pointer;
}

.contact-page-form .contact-submit-btn.btn-split-cta .btn-split-label {
    justify-content: center;
}

.contact-page-info {
    background-image:
        linear-gradient(0deg, rgba(7, 11, 20, 0.78), rgba(7, 11, 20, 0.78)),
        url("../images/hero3.png");
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    padding: 18px 14px 14px;
}

.contact-page-info > h3 {
    margin: 0;
    color: #ffffff;
    font-size: 20px;
    line-height: 1.25;
}

.contact-page-info > p {
    margin: 8px 0 10px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 12px;
    line-height: 1.6;
}

.contact-page-info .contact-info-item {
    min-height: 42px;
    padding: 8px 0;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-page-info .contact-info-item img {
    width: 14px;
    height: 14px;
}

.contact-page-info .contact-info-item h4 {
    font-size: 12px;
    color: #ffffff;
    margin: 0;
}

.contact-page-info-note {
    margin: 10px 0 12px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 12px;
    line-height: 1.6;
}

.contact-page-info-actions {
    display: grid;
    gap: 8px;
}

.contact-page-action-btn.btn-split-cta {
    min-height: 40px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
}

.contact-page-action-btn-secondary.btn-split-cta {
    background: var(--primary);
}

.contact-page-action-btn.btn-split-cta .btn-split-label {
    flex: 1 1 auto;
    justify-content: center;
    padding-right: 18px;
    padding-left: 10px;
}

.contact-page-action-btn.btn-split-cta .btn-split-icon .icon,
.contact-submit-btn.btn-split-cta .btn-split-icon .icon,
.contact-page-form .contact-submit-btn.btn-split-cta .btn-split-icon .icon {
    width: 14px;
    height: 14px;
    object-fit: contain;
    filter: invert(1) brightness(1.35);
}

.partners-section {
    margin: 40px 0 38px;
}

.partners-box {
    background: var(--primary);
    border-radius: 10px;
    padding: 32px 18px 30px;
}

.partners-box h4 {
    margin: 0 0 10px;
    text-align: center;
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
}

.partners-divider {
    margin: 0 auto 24px;
    max-width: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.partners-divider-line {
    height: 1px;
    background: rgba(255, 255, 255, 0.5);
    flex: 1 1 auto;
}

.partners-divider-center {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.partners-divider-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.partners-viewport {
    overflow: hidden;
}

.partners-track {
    display: flex;
    align-items: center;
    gap: 18px;
    transition: transform 0.35s ease;
    will-change: transform;
}

.partner-item {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.partner-item img {
    max-width: 100%;
    max-height: 36px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

@media (max-width: 1100px) {
    .partners-box {
        padding: 26px 14px 24px;
    }

    .partners-box h4 {
        margin-bottom: 8px;
        font-size: 20px;
    }

    .partners-divider {
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .partners-section {
        margin: 24px 0 22px;
    }

    .partners-box {
        padding: 22px 12px 20px;
    }

    .partners-box h4 {
        margin-bottom: 8px;
        font-size: 22px;
    }

    .partners-divider {
        margin-bottom: 16px;
    }

    .partner-item {
        min-height: 48px;
    }

    body {
        padding-bottom: 70px;
    }

    .quick-contact-bar {
        left: 0;
        right: 0;
        bottom: 0;
        width: auto;
        border-radius: 0;
        border: 0;
    }

    .quick-contact-item {
        height: 42px;
    }

    .quick-contact-icon {
        width: 18px;
        height: 18px;
    }

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

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

    .service-card > img {
        min-height: 300px;
    }
}

.site-footer {
    padding: 0;
}

.footer-logo {
    width: auto;
    max-width: 100%;
    display: block;
}

.footer-v2 {
    background: linear-gradient(90deg, var(--secondary) 0 31%, #14161c 31% 100%);
    color: #b8c0d3;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-v2-row {
    display: grid;
    grid-template-columns: 1.05fr 2.35fr;
    gap: 0;
}

.footer-v2-brand {
    padding: 68px 26px 62px 6px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--secondary);
}

.footer-v2-brand p {
    margin: 16px 0 0;
    max-width: 320px;
    line-height: 1.7;
    font-size: 14px;
    letter-spacing: 0;
    word-spacing: 0;
    color: #c2c9d7;
}

.footer-v2-copy-col p {
    margin: 16px 0 0;
    max-width: 320px;
    line-height: 1.7;
    font-size: 14px;
    letter-spacing: 0;
    word-spacing: 0;
    color: #c2c9d7;
}

.footer-v2-brand h5 {
    margin: 32px 0 22px;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
}

.accent-dot {
    color: var(--primary);
    font-size: 1.08em;
    line-height: 0;
}

.footer-v2 .accent-dot {
    font-size: 1.24em;
}

.footer-v2-social {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.footer-v2-social-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: var(--secondary);
}

.footer-v2-social-item .social-box {
    width: auto;
    height: auto;
    border-radius: 0;
    background: transparent;
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-v2-social-item .social-svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    opacity: 0.92;
}

.footer-social-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
    display: block;
}

.footer-v2-social .icon {
    width: 13px;
    height: 13px;
    object-fit: contain;
    filter: invert(1) brightness(1.2);
}

.footer-v2-feed-links {
    margin-top: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #aeb8cc;
    font-size: 13px;
    line-height: 1.35;
}

.footer-v2-feed-links a {
    color: #dce3f1;
    text-decoration: none;
}

.footer-v2-feed-links a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-v2-feed-links-bottom {
    margin-top: 6px;
    justify-content: center;
}

.footer-v2-main {
    padding: 44px 10px 58px 16px;
    background: #14161c;
}

.footer-v2-top {
    min-height: 58px;
    display: flex;
    align-items: center;
    gap: 30px;
    padding-bottom: 22px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-v2-top-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #dce3f1;
    font-size: 14px;
}

.footer-v2-top-address {
    flex: 1 1 auto;
    max-width: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.45;
}

.footer-v2-top-item .icon {
    width: 14px;
    height: 14px;
    object-fit: contain;
    filter: invert(1) brightness(1.15);
}

.footer-v2-btn.btn-split-cta {
    margin-left: auto;
    min-height: 40px;
    border-radius: 8px;
    background: var(--primary);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}

.footer-v2-btn.btn-split-cta .btn-split-label {
    padding-right: 18px;
    padding-left: 10px;
}

.footer-v2-btn.btn-split-cta .btn-split-icon .icon {
    width: 14px;
    height: 14px;
    object-fit: contain;
    filter: invert(1) brightness(1.2);
}

.footer-copyright {
    background: var(--secondary);
    color: #c3cbdb;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 26px 0;
    font-size: 14px;
    text-align: center;
}

.quick-contact-bar {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 272px;
    z-index: 72;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-radius: 10px;
    overflow: hidden;
    border: 0;
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(10, 17, 32, 0.16);
}

.quick-contact-item {
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
}

.quick-contact-item:hover {
    opacity: 0.92;
}

.quick-contact-item.is-whatsapp {
    background: #10b85b;
}

.quick-contact-item.is-phone {
    background: #138ec6;
}

.quick-contact-item.is-location {
    background: #3c4350;
}

.quick-contact-item.is-reservation {
    background: var(--primary);
}

.quick-contact-icon {
    width: 20px;
    height: 20px;
    display: block;
}

body.reservation-modal-open {
    overflow: hidden;
}

.reservation-modal {
    position: fixed;
    inset: 0;
    background: rgba(12, 16, 26, 0.54);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    z-index: 160;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.reservation-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.reservation-modal-dialog {
    width: min(100%, 460px);
    background: #ffffff;
    border-radius: 14px;
    padding: 18px 16px 16px;
    border: 1px solid #e5eaf1;
    box-shadow: 0 20px 45px rgba(12, 18, 32, 0.22);
    position: relative;
}

.reservation-modal-close {
    position: absolute;
    top: 8px;
    right: 10px;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 999px;
    background: #eef2f8;
    color: rgb(var(--secondary-rgb));
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}

.reservation-modal h3 {
    margin: 0 34px 12px 0;
    color: rgb(var(--secondary-rgb));
    font-size: 22px;
    font-weight: 700;
}

.reservation-modal-contact-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    margin-bottom: 12px;
}

.reservation-modal-phone {
    min-height: 42px;
    padding: 0 12px;
    border-radius: 9px;
    border: 1px solid #dbe3ee;
    color: rgb(var(--secondary-rgb));
    background: #f6f8fc;
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
}

.reservation-modal-wa-btn {
    min-height: 42px;
    padding: 0 12px;
    border-radius: 9px;
    border: 0;
    background: #10b85b;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
}

.reservation-modal-wa-btn img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.reservation-modal-form {
    display: grid;
    gap: 10px;
}

.reservation-modal-field {
    min-height: 44px;
    border: 1px solid #dbe3ee;
    border-radius: 9px;
    background: #ffffff;
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    align-items: center;
}

.reservation-modal-field-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.reservation-modal-field-icon img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.reservation-modal-field input {
    border: 0;
    outline: none;
    width: 100%;
    font-size: 14px;
    color: rgb(var(--secondary-rgb));
    background: transparent;
    padding: 11px 12px 11px 0;
}

.reservation-modal-field input[type="datetime-local"] {
    min-height: 42px;
}

.reservation-modal-submit {
    min-height: 44px;
    border: 0;
    border-radius: 10px;
    background: var(--primary);
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
}

.footer-v2-grid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.footer-v2-col {
    padding-top: 12px;
}

.footer-v2-col h4 {
    margin: 10px 0 13px;
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
}

.footer-v2-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 9px;
}

.footer-v2-col li {
    line-height: 1.45;
}

.footer-v2-col a,
.footer-v2-col p,
.footer-hours span {
    color: #aeb8cb;
    font-size: 14px;
}

.footer-links-list > li > a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 2px 0;
}

.footer-link-icon {
    width: 14px;
    height: 14px;
    object-fit: contain;
    filter: invert(77%) sepia(9%) saturate(428%) hue-rotate(182deg) brightness(92%) contrast(91%);
    opacity: 0.9;
}

.footer-v2-col a:hover {
    color: #ffffff;
}

.footer-dropdown {
    margin: 0;
}

.footer-dropdown summary {
    list-style: none;
    cursor: pointer;
    color: #aeb8cb;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.summary-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-dropdown summary::-webkit-details-marker {
    display: none;
}

.footer-dropdown summary::after {
    content: "";
    width: 7px;
    height: 7px;
    border-right: 1.5px solid #8f9ab0;
    border-bottom: 1.5px solid #8f9ab0;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
    margin-top: -3px;
}

.footer-dropdown[open] summary::after {
    transform: rotate(-135deg);
    margin-top: 2px;
}

.footer-dropdown > ul {
    margin-top: 8px;
    padding-left: 14px;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    gap: 7px;
}

.footer-hours li {
    display: grid;
    gap: 4px;
    margin-bottom: 10px;
}

.footer-hours strong {
    font-size: 14px;
    color: #ffffff;
}

.footer-hours li:last-child {
    margin: 0;
}

.mobile-header,
.mobile-menu-overlay,
.mobile-menu-panel {
    display: none;
}

@media (max-width: 1100px) {
    .desktop-search-panel {
        display: none;
    }

    .hero-slider {
        min-height: calc(100vh - 0px);
        margin-top: -12px;
        padding-top: 0;
    }

    body:not(.inner-page) .hero-slider {
        margin-top: -73px;
        padding-top: 73px;
    }

    .hero-content {
        max-width: 100%;
        padding-right: 0;
    }

    .hero-static-content {
        top: 72px;
        bottom: 24px;
        width: min(1450px, 92%);
        transform: translateX(-50%);
        gap: 36px;
        padding: 0;
    }

    .hero-content h1,
    .hero-content .hero-title {
        font-size: 30px;
    }

    .hero-content p {
        font-size: 15px;
        line-height: 1.55;
    }

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

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        justify-content: center;
        gap: 14px 18px;
        max-width: 560px;
    }

    .hero-stat-item {
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        text-align: center;
        gap: 8px;
    }

    .hero-stat-text {
        align-items: center;
        text-align: center;
    }

    .hero-stat-text strong {
        font-size: 23px;
    }

    .hero-stat-text span {
        font-size: 13px;
    }

    .hero-dots {
        right: 12px;
    }

    .about-section {
        padding: 22px 0 48px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

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

    .about-content p {
        font-size: 15px;
        max-width: none;
    }

    .services-section {
        padding: 4px 0 48px;
    }

    .services-head {
        margin-bottom: 18px;
    }

    .services-head-text h2 {
        font-size: 22px;
    }

    .services-head-text p {
        font-size: 15px;
    }

    .services-columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .services-column {
        display: contents;
    }

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

    .service-card > img {
        min-height: 340px;
    }

    .service-card h3 {
        font-size: 20px;
    }

    .why-us-section {
        padding: 14px 0 56px;
    }

    .why-us-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px 18px;
    }

    .why-us-card {
        padding: 22px 18px;
        min-height: 196px;
        gap: 14px;
    }

    .why-us-card-number {
        font-size: 46px;
        -webkit-text-stroke: 1.45px rgba(var(--secondary-rgb), 0.6);
        text-stroke: 1.45px rgba(var(--secondary-rgb), 0.6);
    }

    .why-us-card h3 {
        font-size: 17px;
    }

    .why-us-card p {
        font-size: 14.8px;
        line-height: 1.64;
    }

    .yazi-1-section {
        padding: 4px 0 58px;
    }

    /* İstanbul … Lojistik: shorthand üst padding'i sıfırlamasın — masaüstü ile aynı üst boşluk */
    .yazi-1-section-istanbul-route {
        padding-top: clamp(38px, 7vw, 74px);
    }

    .yazi-1-content h2 {
        font-size: 22px;
    }

    .yazi-1-content p {
        font-size: 15px;
        line-height: 1.75;
    }

    .yazi-2col-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .regions-section {
        margin-top: -48px;
        margin-bottom: 24px;
        padding: 52px 0 52px;
    }

    .regions-head h2 {
        font-size: 22px;
    }

    .regions-head p {
        font-size: 15px;
    }

    .region-card {
        min-height: 302px;
        padding: 24px 18px 20px;
    }

    .regions-nav {
        display: none;
    }

    .reviews-section {
        margin-top: -13px;
        padding: 52px 0 44px;
    }

    .reviews-head h2 {
        font-size: 22px;
    }

    .reviews-head p {
        font-size: 15px;
    }

    .review-card {
        min-height: 254px;
        padding: 22px 14px 20px;
    }

    .review-card h4 {
        font-size: 16px;
    }

    .reviews-nav {
        display: none;
    }

    .gallery-section {
        padding: 6px 0 62px;
    }

    .gallery-head h2 {
        font-size: 22px;
    }

    .gallery-head p {
        font-size: 15px;
    }

    .gallery-columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery-column {
        display: contents;
    }

    .gallery-item {
        min-height: 200px;
    }

    .gallery-item img {
        min-height: 200px;
    }

    .cta-section {
        padding: 4px 0 66px;
    }

    .cta-box {
        padding: 34px 20px 70px;
    }

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

    .cta-content p {
        font-size: 15px;
    }

    .cta-ticker {
        width: min(520px, 72%);
    }

    .faq-section {
        padding: 8px 0 64px;
    }

    .faq-head h2 {
        font-size: 22px;
    }

    .faq-head p {
        font-size: 15px;
    }


    .footer-v2 {
        background: #14161c;
    }

    .footer-v2-row {
        grid-template-columns: 1fr;
    }

    .footer-v2-brand {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding: 34px 0 34px;
        margin-left: -10px;
        margin-right: -10px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .footer-v2-main {
        padding: 24px 0 34px;
    }

    .footer-v2-top {
        flex-wrap: wrap;
        gap: 16px 24px;
    }

    .footer-v2-top-address {
        max-width: none;
    }

    .footer-v2-btn.btn-split-cta {
        margin-left: 0;
    }

    .footer-v2-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-v2-col {
        padding-top: 0;
    }

    .footer-v2-col + .footer-v2-col {
        padding-top: 8px;
    }

    .footer-v2-col h4 {
        margin-bottom: 16px;
    }

    .footer-v2-brand p,
    .footer-v2-copy-col p {
        max-width: none;
    }

    body {
        padding-top: 73px;
    }

    body:has(.mobile-search-bar.is-open) {
        padding-top: 136px;
    }

    .site-header {
        padding-bottom: 0;
    }

    .navbar-wrap {
        display: none;
    }

    .mobile-header {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 85;
        background: transparent;
        border-top: 0;
        border-bottom: 0;
        box-shadow: none;
        transition: background-color 0.2s ease, border-color 0.2s ease;
        isolation: isolate;
        box-sizing: border-box;
        padding-left: env(safe-area-inset-left, 0px);
        padding-right: env(safe-area-inset-right, 0px);
    }

    .inner-page .mobile-header {
        background: rgb(var(--secondary-rgb));
        border-bottom: 0;
    }

    .mobile-search-bar {
        display: none;
        background: #ffffff;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .mobile-search-bar.is-open {
        display: block;
    }

    .mobile-search-input-wrap {
        min-height: 60px;
        padding: 0 8px 0 10px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .mobile-search-input {
        width: 100%;
        border: 0;
        outline: 0;
        background: transparent;
        color: #111827;
        font-size: 16px;
        font-weight: 500;
    }

    .mobile-search-close {
        width: 44px;
        height: 44px;
        border: 0;
        background: transparent;
        font-size: 28px;
        color: #0f172a;
        cursor: pointer;
        line-height: 1;
    }

    .mobile-search-results {
        display: none;
        max-height: 240px;
        overflow-y: auto;
        background: #ffffff;
    }

    .mobile-search-results.is-visible {
        display: block;
    }

    .mobile-header-row {
        min-height: 76px;
        display: grid;
        grid-template-columns: 44px minmax(0, 1fr) 44px;
        align-items: center;
        gap: 10px;
    }

    .mobile-logo-link {
        min-width: 0;
        max-width: min(244px, 60vw);
        margin: 0 auto;
        padding: 0;
        background: transparent;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        justify-self: center;
    }

    .mobile-logo-link .mobile-logo {
        display: block;
        opacity: 1;
        width: auto !important;
        height: auto !important;
        max-height: 64px !important;
        max-width: min(224px, 58vw);
        object-fit: contain;
    }

    .mobile-icon-btn {
        width: 40px;
        height: 40px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #ffffff;
        border: 0;
        background: transparent;
        padding: 0;
        cursor: pointer;
        opacity: 0.98;
    }

    .mobile-icon-btn .icon {
        width: 20px;
        height: 20px;
        object-fit: contain;
        filter: brightness(0) invert(1);
        opacity: 0.96;
    }

    .mobile-action-svg {
        width: 20px;
        height: 20px;
        display: block;
        fill: currentColor;
        opacity: 0.95;
    }

    .mobile-search-svg {
        width: 19px;
        height: 19px;
    }

    .mobile-whatsapp-icon {
        width: 18px !important;
        height: 18px !important;
    }

    .mobile-menu-toggle {
        width: 40px;
        height: 40px;
        border: 0;
        border-radius: 0;
        background: transparent;
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        padding: 0;
        cursor: pointer;
    }

    .mobile-menu-toggle span {
        width: 18px;
        height: 2px;
        background: #ffffff;
        display: block;
    }

    .mobile-menu-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(17, 18, 22, 0.78);
        opacity: 0;
        visibility: hidden;
        transition: 0.25s ease;
        z-index: 80;
    }

    .mobile-menu-panel {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        width: 100%;
        max-width: 100%;
        height: 100vh;
        background: #ffffff;
        transform: translateX(100%);
        transition: transform 0.25s ease;
        z-index: 90;
        overflow-y: auto;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .mobile-menu-panel::-webkit-scrollbar {
        width: 0;
        height: 0;
        display: none;
    }

    .mobile-menu-panel.is-open {
        transform: translateX(0);
    }

    .mobile-menu-open .mobile-menu-overlay {
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu-open {
        overflow: hidden;
    }

    .mobile-menu-head {
        min-height: 72px;
        padding: 0 7px;
        background: var(--secondary);
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: sticky;
        top: 0;
        z-index: 2;
    }

    .mobile-menu-logo {
        height: 50px;
        width: auto;
        display: block;
    }

    .mobile-menu-close {
        width: 40px;
        height: 40px;
        border: 0;
        border-radius: 50%;
        background: var(--primary);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        position: relative;
        cursor: pointer;
    }

    .mobile-menu-close span {
        position: absolute;
        width: 16px;
        height: 2px;
        background: #ffffff;
        display: block;
    }

    .mobile-menu-close span:first-child {
        transform: rotate(45deg);
    }

    .mobile-menu-close span:last-child {
        transform: rotate(-45deg);
    }

    .mobile-nav-list {
        list-style: none;
        margin: 0;
        padding: 0;
        border-top: 1px solid #e5e7eb;
        border-bottom: 1px solid #e5e7eb;
        background: #ffffff;
    }

    .mobile-nav-list li {
        border-bottom: 1px solid #e8ebf0;
    }

    .mobile-nav-list li:last-child {
        border-bottom: 0;
    }

    .mobile-nav-list a {
        min-height: 62px;
        padding: 0 14px;
        display: flex;
        align-items: center;
        gap: 10px;
        color: #0f172a;
        font-size: 16px;
        font-weight: 400;
        background: #ffffff;
    }

    .mobile-submenu-toggle {
        width: 100%;
        min-height: 62px;
        padding: 0 14px;
        border: 0;
        background: #ffffff;
        color: #0f172a;
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 16px;
        font-weight: 400;
        font-family: inherit;
        cursor: pointer;
    }

    .mobile-submenu-toggle > span:first-child {
        display: inline-flex;
        align-items: center;
        gap: 10px;
    }

    .mobile-submenu-arrow {
        width: 8px;
        height: 8px;
        border-right: 1.5px solid #64748b;
        border-bottom: 1.5px solid #64748b;
        transform: rotate(45deg);
        transition: transform 0.2s ease;
    }

    .mobile-has-children.is-open .mobile-submenu-arrow {
        transform: rotate(-135deg);
    }

    .mobile-submenu {
        list-style: none;
        margin: 0;
        padding: 0;
        display: none;
        border-top: 1px solid #edf1f6;
    }

    .mobile-has-children.is-open .mobile-submenu {
        display: block;
    }

    .mobile-submenu li {
        border-bottom: 1px solid #edf1f6;
    }

    .mobile-submenu li:last-child {
        border-bottom: 0;
    }

    .mobile-submenu a {
        min-height: 50px;
        padding: 0 16px 0 40px;
        display: flex;
        align-items: center;
        gap: 8px;
        color: #334155;
        font-size: 14px;
        font-weight: 400;
        background: #ffffff;
    }

    .mobile-submenu .icon {
        width: 15px;
        height: 15px;
        opacity: 0.72;
    }

    .mobile-nav-list .icon {
        width: 18px;
        height: 18px;
        object-fit: contain;
        filter: invert(14%) sepia(22%) saturate(1116%) hue-rotate(185deg) brightness(95%) contrast(94%);
        opacity: 0.8;
    }

    .mobile-contact-boxes {
        padding: 14px;
        display: grid;
        gap: 10px;
        background: #f3f4f6;
    }

    .mobile-contact-item {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        color: #0f172a;
        font-size: 14px;
        line-height: 1.4;
        background: #ffffff;
        border-radius: 8px;
        padding: 10px 10px;
    }

    .mobile-contact-item .icon {
        width: 17px;
        height: 17px;
        margin-top: 1px;
        object-fit: contain;
        filter: invert(27%) sepia(13%) saturate(418%) hue-rotate(183deg) brightness(89%) contrast(88%);
    }

    .mobile-menu-social {
        margin-top: auto;
        min-height: 82px;
        padding: 0 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
        background: #ffffff;
        border-top: 1px solid #e5e7eb;
    }

    .mobile-social-link {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: var(--secondary);
        color: #ffffff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(19, 29, 50, 0.85);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
    }

    .mobile-social-svg {
        width: 18px;
        height: 18px;
        fill: currentColor;
        display: block;
    }

}

@media (max-width: 1100px) {
    .container {
        width: calc(100% - 20px);
    }

    .menu {
        gap: 12px;
    }

    .menu > li > a {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .services-columns {
        grid-template-columns: 1fr;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .why-us-card {
        min-height: 0;
        padding: 20px 16px;
        gap: 12px;
    }

    .why-us-card-number {
        font-size: 40px;
        -webkit-text-stroke: 1.2px rgba(var(--secondary-rgb), 0.58);
        text-stroke: 1.2px rgba(var(--secondary-rgb), 0.58);
    }

    .why-us-card h3 {
        font-size: 16.6px;
    }

    .why-us-card p {
        font-size: 14.4px;
        line-height: 1.62;
    }

    .yazi-1-section {
        padding: 2px 0 46px;
    }

    .yazi-1-section-istanbul-route {
        padding-top: clamp(38px, 7vw, 74px);
    }

    .regions-section {
        margin-top: -48px;
        margin-bottom: 20px;
        padding: 50px 0 44px;
    }

    .region-card {
        min-height: 286px;
    }

    .regions-mobile-nav {
        margin-top: 14px;
        display: flex;
        justify-content: center;
        gap: 10px;
        padding-bottom: 2px;
    }

    .regions-mobile-nav .regions-nav {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        display: inline-flex;
        width: 40px;
        height: 40px;
        background: #ffffff;
        color: var(--secondary);
        border: 1px solid rgba(19, 29, 50, 0.2);
    }

    .regions-mobile-nav .regions-nav:hover {
        transform: none;
    }

    .reviews-section {
        margin-top: -13px;
        padding: 50px 0 38px;
    }

    .reviews-mobile-nav {
        margin-top: 14px;
        display: flex;
        justify-content: center;
        gap: 10px;
        padding-bottom: 2px;
    }

    .reviews-mobile-nav .reviews-nav {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        display: inline-flex;
        width: 40px;
        height: 40px;
        background: #ffffff;
        color: var(--secondary);
        border: 1px solid rgba(19, 29, 50, 0.2);
    }

    .reviews-mobile-nav .reviews-nav:hover {
        transform: none;
    }

    .review-card {
        min-height: 244px;
    }

    .faq-section {
        padding: 6px 0 52px;
    }

    .faq-item summary {
        padding: 12px 40px 12px 12px;
        min-height: 52px;
    }

    .faq-item summary h3 {
        font-size: 16px;
        padding-left: 40px;
    }

    .faq-item summary::before {
        left: 10px;
        width: 26px;
        height: 26px;
        font-size: 16px;
    }

    .faq-answer {
        font-size: 15px;
        padding: 11px 14px 13px;
    }

    .gallery-section {
        padding: 4px 0 54px;
    }

    .gallery-columns {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .gallery-column {
        gap: 14px;
    }

    .gallery-item {
        min-height: 190px;
    }

    .gallery-item img {
        min-height: 190px;
    }

    .cta-section {
        padding: 34px 0 108px;
    }

    .cta-box {
        padding: 58px 14px 44px;
        text-align: center;
    }

    .cta-support-icon {
        top: 14px;
        right: 14px;
        width: 32px;
        height: 32px;
    }

    .cta-content {
        max-width: none;
    }

    .cta-content h2 {
        font-size: 24px;
    }

    .cta-content p {
        font-size: 15px;
    }

    .cta-phone-btn.btn-split-cta {
        width: 100%;
    }

    .cta-phone-btn.btn-split-cta .btn-split-label {
        justify-content: center;
        flex-wrap: wrap;
        text-align: center;
    }

    .cta-phone-btn.btn-split-cta .btn-split-label strong {
        text-align: center;
    }

    .cta-ticker {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        margin-top: 16px;
    }

    .cta-ticker-track {
        animation-duration: 20s;
    }
}

@media (max-width: 1100px) {
    .contact-home-section {
        padding: 8px 0 66px;
    }

    .contact-home-head h2 {
        font-size: 22px;
    }

    .contact-home-head p {
        font-size: 15px;
    }

    .contact-home-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .contact-form-card h3 {
        font-size: 34px;
    }
}

@media (max-width: 767px) {
    .contact-home-section {
        padding: 6px 0 54px;
    }

    .contact-form-card h3 {
        font-size: 30px;
    }

    .contact-form-layout {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .contact-input-wrap input {
        height: 44px;
    }

    .contact-textarea-wrap textarea {
        min-height: 130px;
    }

    .contact-map-wrap {
        height: 400px;
        margin-top: 16px;
    }
}

@media (min-width: 1101px) {
    .contact-page-form .contact-input-wrap img {
        top: 14px;
        transform: none;
    }

    .photo-gallery-sidebar {
        position: sticky;
        top: 110px;
    }
}

@media (max-width: 1100px) {
    .inner-page .contact-page-hero {
        margin-top: 0;
        padding-top: 28px;
    }

    .contact-page-hero {
        padding: 44px 0 38px;
    }

    .contact-page-hero h1 {
        font-size: 22px;
    }

    .contact-page-map {
        height: 350px;
    }

    .contact-page-card {
        margin-top: -46px;
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 16px;
    }

    .photo-gallery-layout {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .photo-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hizmetlerimiz-services-section .services-columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .reference-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .vehicle-spec-media {
        min-height: 250px;
    }

    .vehicle-spec-title {
        font-size: 27px;
    }

    .vehicle-spec-table th,
    .vehicle-spec-table td {
        font-size: 14px;
        padding: 12px 6px;
    }

    .region-page-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .region-page-card,
    .region-page-link {
        min-height: 0;
    }

}

@media (max-width: 767px) {
    .contact-page-hero {
        padding: 38px 0 34px;
    }

    .contact-page-hero-row {
        align-items: center;
        flex-direction: column;
    }

    .contact-page-hero h1 {
        font-size: 22px;
    }

    .contact-breadcrumb {
        font-size: 13px;
    }

    .contact-page-section {
        padding-bottom: 56px;
    }

    .contact-page-map {
        height: 290px;
    }

    .contact-page-card {
        margin-top: -36px;
        padding: 14px;
        border-radius: 10px;
    }

    .contact-page-info {
        order: 1;
    }

    .contact-page-form {
        order: 2;
    }

    .contact-page-form h2 {
        font-size: 22px;
    }

    .contact-page-form > p {
        font-size: 12px;
    }

    .contact-page-info {
        padding: 16px 12px 12px;
    }

    .photo-gallery-page-section {
        padding: 18px 0 48px;
    }

    .photo-gallery-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

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

    .reference-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .vehicle-spec-media {
        min-height: 190px;
    }

    .vehicle-spec-title {
        font-size: 22px;
        padding: 14px 10px;
    }

    .vehicle-detail-btn {
        height: 36px;
        font-size: 15px;
    }

    .vehicle-spec-table th,
    .vehicle-spec-table td {
        font-size: 13px;
        padding: 10px 5px;
    }

    .region-page-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .region-page-card,
    .region-page-link {
        min-height: 0;
    }

    .region-page-card h4 {
        font-size: 15px;
    }

    .service-page-reviews {
        margin-top: 4px;
        padding: 0;
    }

    .service-page-reviews .review-card {
        min-height: 210px;
        padding: 16px 12px 14px;
    }

    .photo-sidebar-menu h3 {
        font-size: 16px;
    }

    .photo-sidebar-menu a {
        font-size: 15px;
    }

    .photo-sidebar-dropdown summary {
        font-size: 15px;
    }

    .photo-sidebar-submenu a {
        font-size: 15px;
    }

    .photo-sidebar-contact.btn-split-cta .btn-split-label--multiline strong {
        font-size: 18px;
    }
}

@media (max-width: 991.98px) {
    /* Prevent iOS Safari focus zoom on form controls. */
    input,
    textarea,
    select {
        font-size: 16px !important;
    }
}

@media (max-width: 1100px) {
    .menu-showcase-layout {
        grid-template-columns: 1fr;
        gap: 14px;
        align-items: start;
    }

    .menu-showcase-content h2 {
        font-size: 28px;
    }

    .menu-showcase-content p {
        max-width: 680px;
    }

    .menu-showcase-nav.desktop-only {
        display: none;
    }

    .menu-showcase-nav.mobile-only {
        display: flex;
        justify-content: center;
    }

    .menu-showcase-card {
        flex-basis: calc((100% - 14px) / 2);
    }

    .blog-home-card {
        flex-basis: calc((100% - 18px) / 2);
    }

    .blog-page-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .menu-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .faq-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    body {
        padding-bottom: 0 !important;
    }

    .mobile-header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
    }

    .quick-contact-bar {
        position: fixed !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        max-width: none !important;
        border-radius: 0 !important;
        border: 0 !important;
        transform: none !important;
    }

    .quick-contact-item {
        height: 48px;
    }

    .quick-contact-icon {
        width: 20px;
        height: 20px;
    }

    .reservation-modal {
        align-items: flex-end;
        padding: 12px;
    }

    .reservation-modal-dialog {
        width: 100%;
        max-height: calc(100vh - 30px);
        overflow: auto;
        border-radius: 14px 14px 10px 10px;
    }

    .reservation-modal h3 {
        font-size: 20px;
    }

    .reservation-modal-contact-row {
        grid-template-columns: 1fr;
    }

    .menu-showcase-section {
        padding: 22px 0 44px;
    }

    .menu-showcase-content h2 {
        font-size: 26px;
    }

    .menu-showcase-content p {
        font-size: 14.8px;
        line-height: 1.6;
    }

    .menu-showcase-slider {
        gap: 10px;
    }

    .menu-showcase-card {
        flex-basis: calc((100% - 10px) / 2);
    }

    .menu-showcase-meta h3 {
        font-size: 14.6px;
        padding: 0 10px;
    }

    .menu-showcase-preview-btn {
        min-width: 54px;
        padding: 0 8px;
    }

    .menu-showcase-preview-icon {
        width: 17px;
        height: 17px;
    }

    .blog-home-intro-section {
        padding: 8px 0 14px;
    }

    .blog-page-cards-section {
        padding-top: 24px;
    }

    .blog-home-section.blog-page-cards-section {
        padding-top: 24px;
    }

    .blog-home-section {
        padding: 0 0 50px;
    }

    .blog-home-body {
        padding: 11px 11px 13px;
    }

    .blog-home-body h3 {
        font-size: 16px;
    }

    .blog-home-body p {
        font-size: 13px;
    }

    .blog-home-card {
        flex-basis: 100%;
    }

    .blog-page-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .menu-page-intro {
        padding-bottom: 14px;
    }

    .menu-page-section {
        padding: 8px 0 54px;
    }

    .menu-category-section + .menu-category-section {
        margin-top: 20px;
    }

    .menu-category-head h2 {
        font-size: 22px;
    }

    .menu-category-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .menu-category-card-title {
        min-height: 42px;
        font-size: 14.4px;
    }

    .blog-articles-section {
        padding: 2px 0 52px;
    }

    .blog-article-item {
        padding: 15px 14px 13px;
    }

    .blog-article-item h2 {
        font-size: 20px;
    }

    .blog-article-item p {
        margin-top: 10px;
        font-size: 14px;
        line-height: 1.7;
    }

    .blog-article-item h3 {
        font-size: 16px;
        margin-top: 12px;
    }
}

