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

:root {
    --ce-bg: #0d1419;
    --ce-bg-rgb: 13, 21, 25;
    --ce-bg-soft: #131c22;
    --ce-bg-card: #0f171c;
    --ce-accent: #006C35;
    --ce-accent-rgb: 0, 108, 53;
    --ce-accent-dim: rgba(0, 108, 53, 0.25);
    --ce-text: #ffffff;
    --ce-text-muted: rgba(255, 255, 255, 0.88);
    --ce-border: rgba(255, 255, 255, 0.1);
    --ce-border-accent: rgba(0, 108, 53, 0.35);
    --ce-radius: 12px;
    --ce-radius-sm: 8px;
    --ce-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    /* Responsive breakpoints (max-width) */
    --bp-xs: 360px;
    --bp-sm: 480px;
    --bp-md: 768px;
    --bp-lg: 1024px;
    --bp-xl: 1280px;
    --bp-xxl: 1400px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 0;
    background: var(--ce-bg) !important;
    overflow-x: hidden;
    scrollbar-gutter: stable;
    scrollbar-width: thin;
    scrollbar-color: var(--ce-accent) var(--ce-bg-soft);
}
html::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}
html::-webkit-scrollbar-track {
    background: var(--ce-bg-soft);
}
html::-webkit-scrollbar-thumb {
    background: var(--ce-accent);
    border-radius: 10px;
    border: 2px solid var(--ce-bg-soft);
}
html::-webkit-scrollbar-thumb:hover {
    background: rgba(var(--ce-accent-rgb), 0.9);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--ce-bg) !important;
    color: var(--ce-text) !important;
    min-height: 100vh;
    transition: background 0.8s ease-out;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
    width: 100%;
    position: relative;
}

::selection {
    background: var(--ce-accent-dim);
    color: var(--ce-text);
}

:focus-visible {
    outline: 2px solid var(--ce-accent);
    outline-offset: 2px;
}

.intro-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--ce-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.intro-screen.visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.intro-content {
    text-align: center;
}

.intro-logo {
    height: 80px;
    max-height: 80px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    filter: grayscale(100%);
}

.loading-line {
    width: 200px;
    height: 1px;
    background: rgba(128, 128, 128, 0.3);
    margin: 0 auto 40px;
    position: relative;
    overflow: hidden;
    opacity: 0;
}

.loading-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--ce-accent);
}

@keyframes loading {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.main-content {
    opacity: 1;
    transform: translateY(0);
    position: relative;
    z-index: 1;
}

.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    transition: background 0.3s ease;
    transform: translateZ(0);
    will-change: auto;
    mask-image: linear-gradient(to bottom, 
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 1) 60%,
        rgba(0, 0, 0, 0.8) 75%,
        rgba(0, 0, 0, 0.5) 85%,
        rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to bottom, 
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 1) 60%,
        rgba(0, 0, 0, 0.8) 75%,
        rgba(0, 0, 0, 0.5) 85%,
        rgba(0, 0, 0, 0) 100%);
}

.navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom, 
        transparent 0%,
        rgba(0, 0, 0, 0.05) 30%,
        rgba(0, 0, 0, 0.1) 60%,
        rgba(0, 0, 0, 0.15) 100%);
    pointer-events: none;
    z-index: -1;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    mask-image: linear-gradient(to bottom, 
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 1) 60%,
        rgba(0, 0, 0, 0.8) 75%,
        rgba(0, 0, 0, 0.5) 85%,
        rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to bottom, 
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 1) 60%,
        rgba(0, 0, 0, 0.8) 75%,
        rgba(0, 0, 0, 0.5) 85%,
        rgba(0, 0, 0, 0) 100%);
}

.navbar-left {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    flex: 1;
    justify-content: flex-start;
}

.navbar-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}
.navbar-logo:hover {
    color: inherit;
}

.logo-image {
    height: 80px;
    max-height: 80px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), height 0.5s cubic-bezier(0.4, 0, 0.2, 1), filter 0.8s ease-out;
    filter: grayscale(100%);
}

.logo-image.revealed {
    filter: grayscale(0%);
}

.contact-logo {
    filter: grayscale(0%) !important;
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-menu {
    display: flex;
    gap: 3rem;
    list-style: none;
    margin: 0;
    padding: 0;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-menu a {
    color: var(--ce-text);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 0.8rem 2rem;
    border: 1px solid var(--ce-border-accent);
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: all var(--ce-transition);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar.scrolled .navbar-menu a {
    color: var(--ce-bg);
    border: 1px solid rgba(var(--ce-bg-rgb), 0.2);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.navbar-menu a::before {
    display: none;
}

.navbar-menu a::after {
    display: none;
}

.navbar-menu a:hover {
    background: var(--ce-accent-dim);
    border-color: var(--ce-accent);
    transform: scale(1.1);
    color: var(--ce-accent);
}

.navbar.scrolled .navbar-menu a:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(var(--ce-bg-rgb), 0.4);
    transform: scale(1.1);
    color: var(--ce-bg);
}

.navbar-menu a:active {
    transform: scale(1.05);
}

.hero-wrapper {
    position: relative;
    width: 100%;
    min-height: 100vh;
}

.hero {
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: opacity 0.6s ease-out;
    z-index: 1;
}

/* Responsive hero: tablet ve mobilde tam ekran kaplama */
@media (max-width: 1024px) {
    .hero {
        min-height: 100vh;
        min-height: 100dvh;
        height: 100vh;
        height: 100dvh;
        max-height: 100vh;
        max-height: 100dvh;
        overflow: hidden;
    }
    .hero-background,
    .hero-video-wrapper {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        min-width: 100%;
        min-height: 100%;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: -webkit-fill-available;
        min-height: 100dvh;
        height: 100vh;
        height: 100dvh;
        max-height: 100dvh;
        overflow: hidden;
    }
    .hero-background,
    .hero-video-wrapper {
        position: absolute;
        inset: 0;
        min-width: 100%;
        min-height: 100%;
        width: 100%;
        height: 100%;
    }
    .hero-video-inner {
        min-width: 100%;
        min-height: 100%;
        transform: translate(-50%, -50%) scale(4);
    }
    .hero-video,
    .hero-video-native,
    .hero-video-yt,
    .hero-video-fallback {
        object-fit: cover;
        min-width: 100%;
        min-height: 100%;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: -webkit-fill-available;
        min-height: 100dvh;
    }
    .hero-video-inner {
        transform: translate(-50%, -50%) scale(4);
    }
}

/* Sol kenar: ince vurgu çizgisi */
.hero::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, transparent 0%, var(--ce-accent) 15%, var(--ce-accent) 85%, transparent 100%);
    opacity: 0.85;
    z-index: 10;
    pointer-events: none;
}

/* Alt kenar: section geçiş çizgisi */
.hero::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--ce-accent) 20%, var(--ce-accent) 80%, transparent 100%);
    opacity: 0.6;
    z-index: 10;
    pointer-events: none;
}

/* Köşe süsleri: ince L çizgileri */
.hero .hero-corner {
    position: absolute;
    width: 48px;
    height: 48px;
    border-color: var(--ce-accent);
    border-style: solid;
    border-width: 0;
    opacity: 0.5;
    z-index: 10;
    pointer-events: none;
}
.hero .hero-corner-tl { top: 24px; left: 24px; border-top-width: 2px; border-left-width: 2px; }
.hero .hero-corner-tr { top: 24px; right: 24px; border-top-width: 2px; border-right-width: 2px; }
.hero .hero-corner-bl { bottom: 24px; left: 24px; border-bottom-width: 2px; border-left-width: 2px; }
.hero .hero-corner-br { bottom: 24px; right: 24px; border-bottom-width: 2px; border-right-width: 2px; }

.hero.scrolled {
    opacity: 1;
}

.hero-content.scrolled {
    transform: none;
}

.hero.scrolled .hero-title {
    opacity: 1 !important;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100%;
    background-color: var(--ce-bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    transform-origin: center center;
    overflow: hidden;
}

.hero-video-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    background-color: var(--ce-bg);
    filter: grayscale(100%);
    --mouse-x: 50%;
    --mouse-y: 50%;
    --mask-radius: 400px;
    mask-image: radial-gradient(
        circle var(--mask-radius) at var(--mouse-x) var(--mouse-y),
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0.95) 25%,
        rgba(255, 255, 255, 0.7) 40%,
        rgba(255, 255, 255, 0.4) 55%,
        rgba(255, 255, 255, 0.2) 65%,
        rgba(255, 255, 255, 0.1) 75%,
        rgba(255, 255, 255, 0) 100%
    );
    -webkit-mask-image: radial-gradient(
        circle var(--mask-radius) at var(--mouse-x) var(--mouse-y),
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0.95) 25%,
        rgba(255, 255, 255, 0.7) 40%,
        rgba(255, 255, 255, 0.4) 55%,
        rgba(255, 255, 255, 0.2) 65%,
        rgba(255, 255, 255, 0.1) 75%,
        rgba(255, 255, 255, 0) 100%
    );
    transition: filter 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    /* YouTube UI elementlerini gizle */
    clip-path: inset(0);
}

/* İç sarmalayıcı: merkezleme + hafif taşma (iframe’in % bazlı translate sorununu önler) */
.hero-video-inner {
    position: absolute;
    left: 50%;
    top: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%) scale(1.28);
    transform-origin: center center;
    z-index: 0;
    background-color: var(--ce-bg);
}
/* Video hero section içinde tam ortada */
.hero-video {
    position: absolute;
    inset: 0;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 1 !important;
    display: block;
    visibility: visible !important;
    border: none;
    pointer-events: none;
    background-color: var(--ce-bg);
}

/* Yerel 4K video: başta gizli, yüklenince gösterilir */
.hero-video-native {
    display: none;
}
.hero-video-wrapper.hero-using-native .hero-video-native {
    display: block;
}
.hero-video-wrapper.hero-using-native .hero-video-yt {
    display: none !important;
}

/* Köşedeki siyah çerçeve kaldırıldı */
.hero-video-branding-cover {
    display: none !important;
}


.hero-video-fallback {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: 0;
    display: none;
}

@media (max-width: 1024px) {
    .hero-video-inner {
        transform: translate(-50%, -50%) scale(3);
    }
    .hero-video-branding-cover {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .hero-video-inner {
        transform: translate(-50%, -50%) scale(4);
    }
    .hero-video-branding-cover {
        display: none !important;
    }
    .hero-video {
        transition: filter 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }
}

@media (max-width: 480px) {
    .hero {
        max-height: 100dvh;
        overflow: hidden;
    }
    .hero-video-inner {
        transform: translate(-50%, -50%) scale(4);
    }
    .hero-video-branding-cover {
        display: none !important;
    }
    .hero .hero-corner {
        width: 32px;
        height: 32px;
        opacity: 0.4;
    }
    .hero .hero-corner-tl { top: 16px; left: 16px; }
    .hero .hero-corner-tr { top: 16px; right: 16px; }
    .hero .hero-corner-bl { bottom: 16px; left: 16px; }
    .hero .hero-corner-br { bottom: 16px; right: 16px; }
}

.hero-video-wrapper.revealed {
    filter: grayscale(0%);
    --mask-radius: 2000px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.hero-video.revealed {
    /* For iframe compatibility */
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    z-index: 2;
    pointer-events: none;
}

/* Hero dinamik katman – site uyumlu animasyonlar */
.hero-dynamic {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
}

.hero-dynamic-gradient {
    position: absolute;
    inset: -20%;
    background: radial-gradient(
        ellipse 120% 80% at 30% 20%,
        rgba(var(--ce-accent-rgb), 0.08) 0%,
        transparent 50%
    ), radial-gradient(
        ellipse 80% 120% at 70% 80%,
        rgba(var(--ce-accent-rgb), 0.05) 0%,
        transparent 45%
    );
    animation: heroDynamicGradient 12s ease-in-out infinite;
}

@keyframes heroDynamicGradient {
    0%, 100% { opacity: 1; transform: scale(1) translate(0, 0); }
    50% { opacity: 0.85; transform: scale(1.05) translate(2%, 1%); }
}

/* Köşe süsleri hafif pulse */
.hero .hero-corner {
    transition: opacity var(--ce-transition);
}
.hero .hero-corner-tl,
.hero .hero-corner-br {
    animation: heroCornerPulse 4s ease-in-out infinite;
}
.hero .hero-corner-tr,
.hero .hero-corner-bl {
    animation: heroCornerPulse 4s ease-in-out infinite 1s;
}

@keyframes heroCornerPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.75; }
}

/* Scroll göstergesi – aşağı kaydır */
.hero-scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--ce-accent);
    text-decoration: none;
    opacity: 0.9;
    transition: opacity var(--ce-transition);
}

.hero-scroll-hint:hover {
    opacity: 1;
}

.hero-scroll-hint:focus-visible {
    outline: 2px solid var(--ce-accent);
    outline-offset: 4px;
}

.hero-scroll-hint-line {
    display: block;
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--ce-accent), transparent);
    border-radius: 2px;
    animation: heroScrollHintBounce 2s ease-in-out infinite;
}

@keyframes heroScrollHintBounce {
    0%, 100% { transform: scaleY(1); transform-origin: top; opacity: 1; }
    50% { transform: scaleY(0.6); transform-origin: top; opacity: 0.6; }
}

/* Hero bilgi formu – hero-wrapper içinde sağda, hero’nun üzerinde */
.hero-form-box {
    position: absolute;
    top: 50%;
    left: 3rem;
    right: auto;
    transform: translateY(-50%);
    z-index: 100;
    width: 380px;
    max-width: calc(100vw - 4rem);
    padding: 1.75rem;
    background: rgba(13, 21, 25, 0.55);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--ce-accent);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    pointer-events: auto;
}
.hero-form-title {
    margin: 0 0 0.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.3;
}
.hero-form-title-accent {
    display: block;
    color: var(--ce-accent);
    text-transform: uppercase;
}
.hero-form-title-main {
    display: block;
    color: var(--ce-text);
    text-transform: uppercase;
}
.hero-form-desc {
    margin: 0 0 1.25rem;
    font-size: 0.8125rem;
    color: var(--ce-text-muted);
    line-height: 1.5;
}
.hero-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.hero-form-field {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.hero-form-field:first-of-type { padding-top: 0; }
.hero-form-field--textarea {
    align-items: flex-start;
}
.hero-form-icon {
    flex-shrink: 0;
    color: var(--ce-accent);
}
.hero-form-icon--top { margin-top: 0.6rem; }
.hero-form-input {
    flex: 1;
    min-width: 0;
    padding: 0.25rem 0;
    font-size: 0.9375rem;
    color: var(--ce-text);
    background: transparent;
    border: none;
    outline: none;
    font-family: inherit;
}
.hero-form-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}
.hero-form-textarea {
    resize: vertical;
    min-height: 72px;
    line-height: 1.5;
}
.hero-form-checkbox-wrap {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 1rem;
    margin-bottom: 1.25rem;
}
.hero-form-checkbox {
    flex-shrink: 0;
    width: 1.125rem;
    height: 1.125rem;
    margin-top: 0.2rem;
    accent-color: var(--ce-accent);
    cursor: pointer;
}
.hero-form-checkbox-label {
    font-size: 0.8125rem;
    color: var(--ce-text-muted);
    line-height: 1.45;
    cursor: pointer;
}
.hero-form-kvkk-link {
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    color: var(--ce-accent);
    text-decoration: underline;
    cursor: pointer;
    text-decoration-skip-ink: auto;
}
.hero-form-kvkk-link:hover {
    color: var(--ce-text);
}
.hero-form-submit {
    width: 100%;
    padding: 0.875rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ce-bg);
    background: var(--ce-accent);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background var(--ce-transition), transform var(--ce-transition);
}
.hero-form-submit:hover {
    background: rgba(var(--ce-accent-rgb), 0.9);
    transform: translateY(-1px);
}
.hero-form-submit:active {
    transform: translateY(0);
}

/* Mobil: formu açan buton – sadece küçük ekranda görünür */
.hero-form-toggle-btn {
    display: none;
    position: absolute;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 90;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--ce-bg);
    background: var(--ce-accent);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 108, 53, 0.4);
    transition: background var(--ce-transition), transform var(--ce-transition), box-shadow var(--ce-transition);
}
.hero-form-toggle-btn:hover {
    background: rgba(var(--ce-accent-rgb), 0.9);
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 108, 53, 0.45);
}
.hero-form-toggle-btn:focus-visible {
    outline: 2px solid var(--ce-accent);
    outline-offset: 3px;
}
.hero-form-toggle-btn[aria-expanded="true"] .hero-form-toggle-btn-icon {
    transform: rotate(45deg);
}
.hero-form-toggle-btn-icon {
    flex-shrink: 0;
    transition: transform var(--ce-transition);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (prefers-reduced-motion: reduce) {
    .hero-dynamic-gradient,
    .hero .hero-corner-tl,
    .hero .hero-corner-tr,
    .hero .hero-corner-bl,
    .hero .hero-corner-br {
        animation: none;
    }
    .hero-scroll-hint-line {
        animation: none;
    }
}

.hero-scroll-hint.hidden {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

@media (max-width: 768px) {
    .hero-scroll-hint { bottom: 1.5rem; }
    .hero-scroll-hint-line { height: 36px; }
    .hero-form-toggle-btn {
        display: flex;
    }
    .hero-form-box {
        left: 1rem;
        right: 1rem;
        max-width: none;
        width: calc(100% - 2rem);
        padding: 1.25rem;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-50%) scale(0.95);
        transition: opacity var(--ce-transition), visibility var(--ce-transition), transform var(--ce-transition);
    }
    .hero-form-box.hero-form-box--open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(-50%) scale(1);
    }
}
@media (max-width: 480px) {
    .hero-form-toggle-btn {
        bottom: 4rem;
        padding: 0.75rem 1.25rem;
        font-size: 0.8125rem;
    }
    .hero-form-box.hero-form-box--open {
        max-height: calc(100dvh - 6rem);
        overflow-y: auto;
    }
    .hero-form-title { font-size: 1rem; }
    .hero-form-desc { font-size: 0.75rem; margin-bottom: 1rem; }
    .hero-form-submit { padding: 0.75rem 1rem; font-size: 0.8125rem; }
}

.video-touch-button {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    padding: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    pointer-events: none;
    z-index: 1000;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), left 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), top 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    white-space: nowrap;
    animation: touchFloat 3s ease-in-out infinite;
    box-shadow: 
        0 0 20px rgba(255, 255, 255, 0.2),
        0 0 40px rgba(255, 255, 255, 0.1),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.video-touch-button::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: pulseRing 2s ease-in-out infinite;
}

.video-touch-button.visible {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.video-touch-button.visible::before {
    opacity: 1;
}

.video-touch-button.hidden {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
    pointer-events: none;
}

@keyframes touchFloat {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1) translateY(0) rotate(0deg);
    }
    25% {
        transform: translate(-50%, -50%) scale(1.08) translateY(-8px) rotate(2deg);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05) translateY(-12px) rotate(0deg);
    }
    75% {
        transform: translate(-50%, -50%) scale(1.08) translateY(-8px) rotate(-2deg);
    }
}

@keyframes pulseRing {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.15);
        opacity: 0.2;
    }
}

.touch-text {
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse 85% 75% at 50% 50%, transparent 35%, rgba(0, 0, 0, 0.2) 65%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 0;
    pointer-events: none;
}

.language-switcher-wrapper {
    position: relative;
    z-index: 10010;
}

/* Language Overlay - Same design as nav-overlay */
.language-overlay {
    position: fixed;
    top: calc(2rem + 50px + 1rem); 
    right: 4rem; 
    left: auto;
    width: 450px;
    max-width: 90vw;
    height: 0;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(70px);
    -webkit-backdrop-filter: blur(70px);
    z-index: 10008;
    overflow: hidden;
    transition: height 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), width 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    transform: none !important;
    will-change: height, width;
    transform-origin: top right;
    padding: 0;
}

.language-overlay.active {
    height: auto;
    max-height: calc(100vh - calc(2rem + 50px + 1rem) - 2rem);
    min-height: 200px;
    width: 450px;
    max-width: 90vw;
    opacity: 1;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(70px);
    -webkit-backdrop-filter: blur(70px);
    transition: height 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), width 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.language-overlay-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 2rem 2.5rem;
    box-sizing: border-box;
    overflow-y: auto;
    color: #ffffff;
    transform: none !important;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
}

.language-overlay.active .language-overlay-content {
    opacity: 1;
    transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
}

.language-overlay-menu {
    width: 100%;
}

.language-overlay-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.language-overlay-menu li {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.language-overlay.active .language-overlay-menu li {
    opacity: 1;
    transform: translateY(0);
}

.language-overlay.active .language-overlay-menu li:nth-child(1) {
    transition-delay: 0.15s;
}

.language-overlay.active .language-overlay-menu li:nth-child(2) {
    transition-delay: 0.25s;
}

.language-overlay.active .language-overlay-menu li:nth-child(3) {
    transition-delay: 0.35s;
}

.language-overlay:not(.active) .language-overlay-menu li {
    opacity: 0;
    transform: translateY(-30px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.language-overlay:not(.active) .language-overlay-menu li:nth-child(3) {
    transition-delay: 0s;
}

.language-overlay:not(.active) .language-overlay-menu li:nth-child(2) {
    transition-delay: 0.1s;
}

.language-overlay:not(.active) .language-overlay-menu li:nth-child(1) {
    transition-delay: 0.2s;
}

.language-overlay:not(.active) .language-overlay-content {
    transition: opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
}

.language-switcher {
    position: relative;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10010;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.language-switcher:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.language-switcher:active {
    transform: scale(1.05);
}

.language-switcher.active {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.navbar.scrolled .language-switcher {
    border: 1px solid rgba(var(--ce-bg-rgb), 0.2);
    background: rgba(255, 255, 255, 0.1);
}

.navbar.scrolled .language-switcher:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(var(--ce-bg-rgb), 0.4);
}

.world-icon {
    width: 24px;
    height: 24px;
    display: block;
    animation: rotateWorld 8s linear infinite;
    transition: transform 0.3s ease;
    transform-origin: center center;
    filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.3));
}

.language-switcher:hover .world-icon {
    animation-duration: 2s;
}

.language-switcher.active .world-icon {
    animation-duration: 1s;
}

@keyframes rotateWorld {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.language-dropdown {
    position: fixed;
    top: calc(2rem + 50px + 1rem); 
    right: 4rem; 
    left: auto;
    width: 450px;
    max-width: 90vw;
    height: 0;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(70px);
    -webkit-backdrop-filter: blur(70px);
    z-index: 10008;
    overflow: hidden;
    transition: height 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), width 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    transform: none !important;
    will-change: height, width;
    transform-origin: top right;
    padding: 0;
}

.language-dropdown.active {
    height: auto;
    max-height: calc(100vh - calc(2rem + 50px + 1rem) - 2rem);
    min-height: 300px;
    width: 450px;
    max-width: 90vw;
    opacity: 1;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(70px);
    -webkit-backdrop-filter: blur(70px);
    transition: height 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), width 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.language-dropdown-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 2rem 2.5rem;
    box-sizing: border-box;
    overflow-y: auto;
    color: #ffffff;
    transform: none !important;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
}

.language-dropdown.active .language-dropdown-content {
    opacity: 1;
    transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
}

.language-time-info {
    margin-top: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s;
}

.language-dropdown.active .language-time-info {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s;
}

.language-time {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.language-date {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: lowercase;
    letter-spacing: 0.05em;
}

.language-dropdown:not(.active) .language-time-info {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
    opacity: 0;
    transform: translateY(-10px);
}

.language-menu {
    width: 100%;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.language-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.language-menu li {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.language-dropdown.active .language-menu li {
    opacity: 1;
    transform: translateY(0);
}

.language-dropdown.active .language-menu li:nth-child(1) {
    transition-delay: 0.15s;
}

.language-dropdown.active .language-menu li:nth-child(2) {
    transition-delay: 0.25s;
}

.language-dropdown.active .language-menu li:nth-child(3) {
    transition-delay: 0.35s;
}

.language-dropdown:not(.active) .language-menu li {
    opacity: 0;
    transform: translateY(-30px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.language-dropdown:not(.active) .language-menu li:nth-child(3) {
    transition-delay: 0s;
}

.language-dropdown:not(.active) .language-menu li:nth-child(2) {
    transition-delay: 0.1s;
}

.language-dropdown:not(.active) .language-menu li:nth-child(1) {
    transition-delay: 0.2s;
}

.language-dropdown:not(.active) .language-dropdown-content {
    transition: opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
}


.language-buttons {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 10011;
}

.language-buttons.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.language-option {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    position: relative;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: left;
}

.language-option:hover {
    color: rgba(255, 255, 255, 1);
    padding-left: 1rem;
}

.language-option.active {
    color: rgba(255, 255, 255, 1);
}

.language-option.active {
    color: rgba(255, 255, 255, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
}

.navbar.scrolled .language-option {
    border: 1px solid rgba(var(--ce-bg-rgb), 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: rgba(var(--ce-bg-rgb), 0.9);
}

.navbar.scrolled .language-option:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(var(--ce-bg-rgb), 0.4);
    color: rgb(var(--ce-bg-rgb));
}

.navbar.scrolled .language-option.active {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(var(--ce-bg-rgb), 0.4);
    color: rgb(var(--ce-bg-rgb));
}

.lang-flag {
    font-size: 1.2rem;
    line-height: 1;
    flex-shrink: 0;
    display: inline-block;
    font-style: normal;
    vertical-align: middle;
}

.lang-name {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.navbar-menu-button {
    position: relative;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
    padding: 0;
    outline: none;
    flex-shrink: 0;
}

.navbar-menu-button:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.navbar.scrolled .navbar-menu-button {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(var(--ce-bg-rgb), 0.2);
}

.navbar.scrolled .navbar-menu-button:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(var(--ce-bg-rgb), 0.4);
}

.nav-icon {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 24px;
    height: 18px;
    position: relative;
}

.nav-line {
    width: 100%;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-nav-button.active .nav-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-nav-button.active .nav-line:nth-child(2) {
    opacity: 0;
    transition: opacity 0.2s ease-out;
}

.hero-nav-button.active .nav-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body.menu-open {
    overflow-x: hidden;
}

body.menu-open .hero-title {
    font-size: clamp(1.8rem, 4.5vw, 4.5rem) !important;
    transition: font-size 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

body.menu-open .navbar-menu {
    transform: translateX(calc(50px + 1rem)) !important; 
    opacity: 0 !important;
    pointer-events: none !important;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease-out !important;
}

@media (max-width: 500px) {
    body.menu-open .navbar-menu {
        transform: translateX(calc(45px + 1rem)) !important; 
        opacity: 0 !important;
        pointer-events: none !important;
        transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease-out !important;
    }
}

.nav-overlay {
    position: fixed;
    top: calc(2rem + 50px + 1rem); 
    right: 4rem; 
    left: auto;
    width: 450px;
    max-width: 90vw;
    height: 0;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(70px);
    -webkit-backdrop-filter: blur(70px);
    z-index: 10008;
    overflow: hidden;
    transition: height 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), width 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    transform: none !important;
    will-change: height, width;
    transform-origin: top right;
    padding: 0;
}

.nav-overlay.active {
    height: auto;
    max-height: calc(100vh - calc(2rem + 50px + 1rem) - 2rem);
    min-height: 300px;
    width: 450px;
    max-width: 90vw;
    opacity: 1;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(70px);
    -webkit-backdrop-filter: blur(70px);
    transition: height 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), width 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-overlay-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 2rem 2.5rem;
    box-sizing: border-box;
    overflow-y: auto;
    color: #ffffff;
    transform: none !important;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
}

.nav-overlay.active .nav-overlay-content {
    opacity: 1;
    transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
}

.nav-time-info {
    margin-top: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s;
}

.nav-overlay.active .nav-time-info {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s;
}

.nav-time {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.nav-date {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: lowercase;
    letter-spacing: 0.05em;
}

.nav-overlay-menu {
    width: 100%;
    margin-bottom: 2rem;
}

.nav-menu-section {
    margin-bottom: 2.5rem;
}

.nav-section-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.nav-overlay-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.nav-overlay-menu li {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-overlay.active .nav-overlay-menu li {
    opacity: 1;
    transform: translateY(0);
}

.nav-overlay.active .nav-overlay-menu li:nth-child(1) {
    transition-delay: 0.15s;
}

.nav-overlay.active .nav-overlay-menu li:nth-child(2) {
    transition-delay: 0.25s;
}

.nav-overlay.active .nav-overlay-menu li:nth-child(3) {
    transition-delay: 0.35s;
}

.nav-overlay.active .nav-overlay-menu li:nth-child(4) {
    transition-delay: 0.45s;
}

.nav-overlay.active .nav-overlay-menu li:nth-child(5) {
    transition-delay: 0.55s;
}

.nav-overlay:not(.active) .nav-overlay-menu li {
    opacity: 0;
    transform: translateY(-30px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-overlay:not(.active) .nav-overlay-menu li:nth-child(5) {
    transition-delay: 0s;
}

.nav-overlay:not(.active) .nav-overlay-menu li:nth-child(4) {
    transition-delay: 0.1s;
}

.nav-overlay:not(.active) .nav-overlay-menu li:nth-child(3) {
    transition-delay: 0.2s;
}

.nav-overlay:not(.active) .nav-overlay-menu li:nth-child(2) {
    transition-delay: 0.3s;
}

.nav-overlay:not(.active) .nav-overlay-menu li:nth-child(1) {
    transition-delay: 0.4s;
}

.nav-overlay:not(.active) .nav-time-info {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
    opacity: 0;
    transform: translateY(-10px);
}

.nav-overlay:not(.active) .nav-overlay-content {
    transition: opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
}

.nav-link {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    padding: 0.5rem 0;
    position: relative;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: left;
}

.nav-link:hover {
    color: var(--ce-accent);
    padding-left: 1rem;
}

.nav-info-boxes {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: auto;
    padding-top: 2rem;
}

.nav-info-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.nav-info-box:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.nav-info-label {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.nav-info-text {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

.nav-info-subtext {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
    line-height: 1.4;
}

.hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    will-change: transform;
    transform: translate3d(0, 0, 0);
    text-align: center;
    color: #ffffff;
    padding: 4rem;
    box-sizing: border-box;
    will-change: transform, opacity;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    max-height: 100vh;
    overflow: visible;
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    perspective: 1000px;
    mask-image: linear-gradient(to top, 
        rgba(0, 0, 0, 1) 0%, 
        rgba(0, 0, 0, 1) 70%, 
        rgba(0, 0, 0, 0.8) 85%, 
        rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to top, 
        rgba(0, 0, 0, 1) 0%, 
        rgba(0, 0, 0, 1) 70%, 
        rgba(0, 0, 0, 0.8) 85%, 
        rgba(0, 0, 0, 0) 100%);
}

.hero-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: clamp(2.5rem, 6vw, 6rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    text-transform: none;
    white-space: nowrap;
    line-height: 1;
    filter: none;
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: font-size 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    max-width: 100%;
    overflow: visible;
    text-overflow: clip;
    padding: 0;
    will-change: opacity, transform, filter;
    position: relative;
    display: block;
    text-align: center;
    margin: 0;
    box-sizing: border-box;
    color: #ffffff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-title-inner {
    position: relative;
    display: inline-block;
    width: auto;
    max-width: 100%;
    text-align: center;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.hero-title-text {
    position: relative;
    display: inline-block;
    z-index: 2;
    text-align: center;
    line-height: 1;
    white-space: nowrap;
    width: auto;
    max-width: none;
    overflow: visible;
    transform-style: preserve-3d;
}

.hero-title-char {
    display: inline-block;
    position: relative;
    opacity: 1;
    transform: translateY(0) translateZ(0) rotateX(0deg);
    filter: none;
    -webkit-text-stroke: none;
    -webkit-text-fill-color: #ffffff;
    transition: none;
    transform-style: preserve-3d;
    transform-origin: bottom center;
    text-shadow: 
        0 0 0 rgba(255, 255, 255, 0.5),
        0 2px 0 rgba(255, 255, 255, 0.3),
        0 4px 0 rgba(255, 255, 255, 0.2),
        0 6px 0 rgba(255, 255, 255, 0.1),
        0 8px 0 rgba(255, 255, 255, 0.05),
        2px 2px 4px rgba(0, 0, 0, 0.3),
        4px 4px 8px rgba(0, 0, 0, 0.2);
}

.hero-title-char::before {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 100%;
    height: 12px;
    background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 0.15) 0%, 
        rgba(255, 255, 255, 0.08) 50%, 
        rgba(255, 255, 255, 0) 100%);
    transform: translateZ(-15px) rotateX(90deg);
    transform-origin: top center;
    opacity: 0.7;
    z-index: -1;
}

.hero-title-char::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 2px;
    height: 12px;
    background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 0.2) 0%, 
        rgba(255, 255, 255, 0.1) 50%, 
        rgba(255, 255, 255, 0) 100%);
    transform: translateZ(-15px) translateX(-1px);
    opacity: 0.5;
    z-index: -1;
}

.hero-title-line {
    display: none;
}

.hero-title-char.animated {
    -webkit-text-stroke: 2px #ffffff;
    -webkit-text-fill-color: #ffffff;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8));
}

.navbar-search-box {
    position: absolute;
    left: calc(80px + 3rem); 
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.8rem 2rem;
    width: 400px;
    height: 48px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), padding 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    z-index: 10;
}

.navbar-search-box.active {
    width: calc(100vw - 8rem - 200px - 150px - 3rem); 
    max-width: calc(100% - 400px);
    cursor: text;
}

.navbar.scrolled .navbar-search-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
    border: 1px solid rgba(var(--ce-bg-rgb), 0.2);
}

.navbar-search-input {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ffffff;
    background: transparent;
    border: none;
    outline: none;
    width: 100%;
    text-align: left;
    caret-color: #ffffff;
    position: relative;
    cursor: inherit;
}

.navbar-search-box.active .navbar-search-input {
    caret-color: #ffffff;
}

.navbar.scrolled .navbar-search-box.active .navbar-search-input {
    caret-color: var(--ce-bg);
}

.navbar.scrolled .navbar-search-input {
    color: var(--ce-bg);
}

.navbar-search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.navbar.scrolled .navbar-search-input::placeholder {
    color: rgba(var(--ce-bg-rgb), 0.5);
}

.navbar-search-cursor {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.2rem;
    font-weight: 300;
    color: #ffffff;
    animation: blink 1s infinite;
    position: absolute;
    left: 2rem;
    pointer-events: none;
    transition: left 0.1s ease;
}

.navbar.scrolled .navbar-search-cursor {
    color: var(--ce-bg);
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

.content-intro {
    max-width: 1200px;
    width: 100%;
    text-align: center;
    position: relative;
    transition: opacity var(--ce-transition);
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    margin: 0 auto;
    padding: 9rem 2rem 0 2rem;
    z-index: 3;
}
.content-intro-main {
    position: relative;
}
.content-intro-main::after {
    content: '';
    display: block;
    width: 64px;
    height: 3px;
    background: linear-gradient(90deg, var(--ce-accent), transparent);
    margin: 1.25rem auto 0;
    border-radius: 2px;
    opacity: 0.9;
}

.content-intro-script {
    font-family: 'Great Vibes', 'Dancing Script', cursive;
    font-size: 3.5rem;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
    margin-bottom: 0.5rem;
    line-height: 1;
    letter-spacing: 2px;
    opacity: 1;
    will-change: transform, opacity;
}

.content-intro-main {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 4.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: -1px;
    opacity: 1;
    will-change: transform, opacity;
}

.content-intro-description {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    color: #ffffff;
    margin: 0;
    line-height: 1.8;
    letter-spacing: 0.5px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

@keyframes subtitleScriptAnimation {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.7);
        filter: blur(10px);
    }
    50% {
        opacity: 0.7;
        transform: translateY(-10px) scale(1.05);
        filter: blur(3px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0px);
    }
}

@keyframes subtitleMainAnimation {
    0% {
        opacity: 0;
        transform: translateY(60px) scale(0.8);
        filter: blur(10px);
    }
    50% {
        opacity: 0.8;
        transform: translateY(-15px) scale(1.08);
        filter: blur(2px);
    }
    70% {
        opacity: 0.9;
        transform: translateY(5px) scale(0.98);
        filter: blur(0px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0px);
    }
}

@keyframes subtitleDescriptionAnimation {
    0% {
        opacity: 0;
        transform: translateY(40px);
        filter: blur(8px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0px);
    }
}

@media (max-width: 768px) {
    
    .intro-logo {
        height: 60px;
        max-height: 60px;
        max-width: 150px;
        margin-bottom: 30px;
    }
    
    .loading-line {
        width: 150px;
        margin-bottom: 30px;
    }
    
    .language-switcher {
        width: 45px;
        height: 45px;
    }
    
    .world-icon {
        width: 20px;
        height: 20px;
    }
    
    .language-option {
        padding: 0.5rem 0;
        font-size: clamp(1.1rem, 4vw, 1.5rem);
        gap: 0.75rem;
    }
    
    .navbar-menu-button {
        width: 45px;
        height: 45px;
    }
    
    .nav-icon {
        width: 18px;
        height: 14px;
        gap: 4px;
    }
    
    .navbar {
        padding: 1rem 1.5rem;
    }

    .navbar-logo {
        font-size: 1.2rem;
    }
    
    .logo-image {
        height: 70px;
        max-height: 70px;
        max-width: 180px;
    }
    
    .navbar-right {
        gap: 1rem;
    }

    .navbar-menu {
        gap: 1rem;
    }

    .navbar-menu a {
        font-size: 0.75rem;
        padding: 0.6rem 1.5rem;
        letter-spacing: 2px;
    }
    
    .nav-overlay {
        top: calc(1.5rem + 45px + 1rem);
        right: 2rem;
    }
    
    .nav-overlay.active {
        width: 320px;
        max-width: 80vw;
        height: auto;
        max-height: calc(100vh - calc(1.5rem + 45px + 1rem) - 2rem);
        min-height: 250px;
    }
    
    .nav-overlay-content {
        width: 100%;
        padding: 2rem 2rem;
    }
    
    .nav-link {
        font-size: clamp(1.1rem, 4vw, 1.5rem);
    }
    
    .language-overlay {
        top: calc(1.5rem + 45px + 1rem);
        right: 2rem;
    }
    
    .language-overlay.active {
        width: 320px;
        max-width: 80vw;
        height: auto;
        max-height: calc(100vh - calc(1.5rem + 45px + 1rem) - 2rem);
        min-height: 200px;
    }
    
    .language-overlay-content {
        width: 100%;
        padding: 2rem 2rem;
    }
    
    .hero {
        height: 100vh;
        min-height: 100vh;
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 5vw, 2.5rem);
        letter-spacing: -0.02em;
        width: 100%;
        max-width: 100%;
        white-space: nowrap;
        overflow: visible;
        text-overflow: clip;
    }
    
    .hero-content {
        padding: 1.5rem 0;
    }
    
    .hero-search-box {
        min-width: 300px;
        padding: 1rem 2rem;
    }
    
    .hero-search-input {
        font-size: 2rem;
    }
    
    .hero-search-cursor {
        font-size: 2rem;
    }
    
    .hero-subtitle-content {
        padding: 2rem 1rem 1rem 1rem;
    }

    .content-intro-script {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .content-intro-main {
        font-size: 2rem;
        letter-spacing: 0px;
        margin-bottom: 1.5rem;
    }

    .content-intro-description {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* ========== Hakkımızda Section (Fin-Erth tarzı iki sütun + timeline) ========== */
.about-section {
    width: 100%;
    position: relative;
    z-index: 5;
    overflow: hidden;
    background: var(--ce-bg);
    padding: 5rem 0 12rem;
    margin-top: 3rem;
}
.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--ce-accent), transparent);
    opacity: 0.6;
    z-index: 1;
}

.about-section-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(30, 55, 65, 0.4) 0%, transparent 50%),
                radial-gradient(ellipse 100% 80% at 80% 20%, rgba(20, 45, 55, 0.25) 0%, transparent 45%);
    pointer-events: none;
    animation: aboutBgPulse 8s ease-in-out infinite;
}

@keyframes aboutBgPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.85; }
}

.about-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2.5rem;
    position: relative;
    z-index: 1;
}

.about-layout {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 4rem;
    align-items: start;
    width: 100%;
}

/* Sol sütun: başlık + metin */
.about-col-left {
    min-width: 0;
    transition: transform var(--ce-transition);
}

.about-col-left:hover {
    transform: translateY(-4px);
}

.about-header {
    text-align: left;
    margin-bottom: 2rem;
    padding-bottom: 0;
    border-bottom: none;
}

.about-subtitle-text {
    display: block;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ce-accent);
    margin-bottom: 0.75rem;
}

.about-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: clamp(2rem, 4.2vw, 3rem);
    font-weight: 600;
    color: #fff;
    margin: 0 0 1.5rem;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.about-body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.0625rem;
    font-weight: 400;
    line-height: 1.85;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
    width: 100%;
}

.about-body p {
    margin: 0 0 1.25rem;
}

.about-body p:last-of-type {
    margin-bottom: 0;
}

.about-body ul,
.about-body-list {
    margin: 0.75rem 0 1.25rem;
    padding: 0 0 0 1.25rem;
    list-style: none;
}

.about-body ul li,
.about-body-list li {
    position: relative;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.88);
    transition: transform 0.2s ease, color 0.2s ease;
}

.about-body ul li:hover,
.about-body-list li:hover {
    transform: translateX(4px);
    color: rgba(255, 255, 255, 1);
}

.about-body ul li::before,
.about-body-list li::before {
    content: '';
    position: absolute;
    left: -1rem;
    top: 0.6em;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
}

.about-body ul li:last-child,
.about-body-list li:last-child {
    margin-bottom: 0;
}

/* Sağ sütun: timeline */
.about-col-right {
    min-width: 0;
    transition: transform var(--ce-transition);
}

.about-col-right:hover {
    transform: translateY(-4px);
}

.about-timeline {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.88);
    text-align: left;
    width: 100%;
}

.about-timeline p {
    margin: 0 0 1.25rem;
}

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

.about-timeline ul {
    margin: 1rem 0 1.5rem;
    padding: 0 0 0 2rem;
    list-style: none;
    position: relative;
}

.about-timeline ul::before {
    content: '';
    position: absolute;
    left: 0.35rem;
    top: 0.5em;
    bottom: 0.5em;
    width: 1px;
    background: rgba(255, 255, 255, 0.12);
}

.about-timeline ul li {
    position: relative;
    margin-bottom: 1.25rem;
    padding-left: 0;
}

.about-timeline ul li:last-child {
    margin-bottom: 0;
}

.about-timeline ul li {
    transition: transform 0.25s ease, color 0.2s ease;
}

.about-timeline ul li:hover {
    transform: translateX(6px);
    color: rgba(255, 255, 255, 1);
}

.about-timeline ul li::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 0.45em;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.about-timeline ul li:hover::before {
    background: var(--ce-accent);
    transform: scale(1.35);
    box-shadow: 0 0 0 4px var(--ce-accent-dim);
}

.about-timeline ul li:nth-child(2)::before {
    width: 14px;
    height: 14px;
    left: -2.2rem;
    top: 0.35em;
    background: var(--ce-accent);
    box-shadow: 0 0 0 3px var(--ce-accent-dim);
}

.about-timeline ul li:nth-child(2):hover::before {
    transform: scale(1.2);
    box-shadow: 0 0 0 5px var(--ce-accent-dim);
}

.about-card-content {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.88);
    text-align: left;
    width: 100%;
}

.about-card-content p {
    margin: 0 0 1.25rem;
}

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

.about-card-content strong {
    color: #fff;
    font-weight: 500;
}

.about-card-content ul {
    margin: 1rem 0 1.5rem;
    padding: 0 0 0 2rem;
    list-style: none;
    position: relative;
}

.about-card-content ul::before {
    content: '';
    position: absolute;
    left: 0.35rem;
    top: 0.5em;
    bottom: 0.5em;
    width: 1px;
    background: rgba(255, 255, 255, 0.12);
}

.about-card-content ul li {
    position: relative;
    margin-bottom: 1.25rem;
    padding-left: 0;
}

.about-card-content ul li:last-child {
    margin-bottom: 0;
}

.about-card-content ul li::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 0.45em;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.about-card-content ul li:nth-child(2)::before {
    width: 14px;
    height: 14px;
    left: -2.2rem;
    top: 0.35em;
    background: var(--ce-accent);
    box-shadow: 0 0 0 3px var(--ce-accent-dim);
}

@media (max-width: 768px) {
    .about-section {
        padding: 4rem 0 9rem;
        margin-top: 1rem;
    }
    .about-inner {
        padding: 0 1.25rem;
    }
    .about-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .about-header {
        margin-bottom: 1.5rem;
    }
    .about-subtitle-text {
        font-size: 0.65rem;
        letter-spacing: 0.18em;
    }
    .about-title {
        font-size: clamp(1.7rem, 4vw, 2.4rem);
        margin-bottom: 1.25rem;
    }
    .about-body,
    .about-timeline,
    .about-card-content {
        font-size: 0.9375rem;
        line-height: 1.75;
    }
    .about-body p,
    .about-timeline p,
    .about-card-content p {
        margin-bottom: 1rem;
    }
}

.content-section {
    position: relative;
    width: 100%;
    min-height: auto;
    background: var(--ce-bg);
    overflow: hidden;
    z-index: 5;
    margin-top: 0;
    padding-bottom: 7rem;
    margin-bottom: 0;
}

.content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 250px;
    background: linear-gradient(180deg, 
        rgba(var(--ce-bg-rgb), 0.95) 0%,
        rgba(var(--ce-bg-rgb), 0.85) 20%,
        rgba(var(--ce-bg-rgb), 0.7) 40%,
        rgba(var(--ce-bg-rgb), 0.5) 60%,
        rgba(var(--ce-bg-rgb), 0.3) 75%,
        rgba(var(--ce-bg-rgb), 0.15) 85%,
        rgba(var(--ce-bg-rgb), 0.05) 92%,
        rgba(var(--ce-bg-rgb), 0) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 10;
    pointer-events: none;
}

.content-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(0deg, 
        rgba(var(--ce-bg-rgb), 0.95) 0%,
        rgba(var(--ce-bg-rgb), 0.85) 20%,
        rgba(var(--ce-bg-rgb), 0.7) 40%,
        rgba(var(--ce-bg-rgb), 0.5) 60%,
        rgba(var(--ce-bg-rgb), 0.3) 75%,
        rgba(var(--ce-bg-rgb), 0.15) 85%,
        rgba(var(--ce-bg-rgb), 0.05) 92%,
        rgba(var(--ce-bg-rgb), 0) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1;
    pointer-events: none;
}

.content-section-background {
    display: none;
}

.content-section-video {
    display: none;
}

.house-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ce-bg);
    overflow: hidden;
    padding: 1rem 0;
}

.section-full.twm-category-carousal-area {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.twm-category-carousal-mid-media {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
    padding: 0;
    z-index: 3;
    margin: 4rem 0;
}

.twm-category-carousal-mid-media {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
    padding: 0;
    z-index: 3;
    margin: 4rem 0;
    cursor: none;
}

.twm-category-carousal-mid-media img {
    width: 55%;
    max-width: 700px;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) drop-shadow(0 30px 60px rgba(0, 0, 0, 0.4)) drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    position: relative;
    z-index: 1;
}

.twm_category_bx {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 2rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.twm_category_bx:hover {
    transform: scale(1.05);
}

.twm-category-name {
    font-family: "Urbanist", serif;
    font-size: clamp(6rem, 15vw, 12rem);
    font-weight: 900;
    letter-spacing: 0.1em;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
    line-height: 1;
    filter: drop-shadow(4px 4px 8px rgba(0, 0, 0, 0.3));
}

.house-carousel-top {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    overflow: hidden;
    padding: 0;
    z-index: 2;
    pointer-events: none;
    transform: translateY(-120%);
}

.house-carousel-bottom {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    overflow: hidden;
    padding: 0;
    z-index: 4;
    pointer-events: none;
    transform: translateY(40%);
}

.house-carousel-track {
    display: flex;
    width: max-content;
    animation: scroll 100s linear infinite;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-fill-mode: both;
    will-change: transform;
}

.house-carousel-rtl {
    animation-direction: reverse;
}

.house-carousel-ltr {
    animation-direction: normal;
}

.house-carousel-item {
    flex-shrink: 0;
    width: auto;
}

.house-carousel-top .house-carousel-item {
    margin-left: 30px;
}

.house-carousel-top .house-carousel-item:first-child {
    margin-left: 0;
}

.house-carousel-bottom .house-carousel-item {
    margin-right: 30px;
}

.house-carousel-bottom .house-carousel-item:first-child {
    margin-right: 0;
}

.house-carousel-item .twm-category-name {
    color: #ffffff;
    -webkit-text-stroke: 3px #5d4037;
    text-stroke: 3px #5d4037;
}


@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.vert-move {
    animation: verticalMove 3s ease-in-out infinite;
}

@keyframes verticalMove {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.content-section {
    position: relative;
    width: 100%;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: var(--ce-bg);
    padding: 8rem 0 14rem 0;
    margin-top: 0;
    margin-bottom: 0;
    overflow: hidden;
    z-index: 1;
    isolation: isolate;
}

.content-section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: none;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

@media (max-width: 768px) {
    .content-section-bg {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        overflow: hidden;
        clip-path: inset(0);
    }
    
    .content-section {
        overflow: hidden;
        isolation: isolate;
    }
}

.content-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(0deg, 
        rgba(var(--ce-bg-rgb), 0.95) 0%,
        rgba(var(--ce-bg-rgb), 0.85) 20%,
        rgba(var(--ce-bg-rgb), 0.7) 40%,
        rgba(var(--ce-bg-rgb), 0.5) 60%,
        rgba(var(--ce-bg-rgb), 0.3) 75%,
        rgba(var(--ce-bg-rgb), 0.15) 85%,
        rgba(var(--ce-bg-rgb), 0.05) 92%,
        rgba(var(--ce-bg-rgb), 0) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 10;
    pointer-events: none;
}

.content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--ce-bg-rgb), 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1;
}


/* Services Section */
.services-section {
    width: 100%;
    position: relative;
    background: var(--ce-bg);
    padding: 2rem 0 8rem 0;
    margin: 0;
    min-height: auto;
    overflow: visible;
    z-index: 11;
}
.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--ce-accent), transparent);
    opacity: 0.6;
    z-index: 1;
}

.services-section.container-full {
    width: 100%;
}

.services-section .container-fluid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

.services-header {
    text-align: center;
    margin-bottom: 6rem;
}

.services-subtitle {
    margin-bottom: 1.5rem;
}

.services-subtitle-text {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ce-accent);
    display: inline-block;
}

.services-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 2rem 0;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.services-description {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
    letter-spacing: 0.3px;
}

.services-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    margin-top: 4rem;
    position: relative;
    padding: 0 2rem;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y pinch-zoom;
    direction: ltr;
}

@media (max-width: 768px) {
    .services-carousel-wrapper {
        overflow-x: auto;
        overflow-y: hidden;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 0 1rem;
        touch-action: pan-x;
        overscroll-behavior-x: contain;
        scroll-padding: 0 1rem;
    }
    
    .services-carousel-wrapper::-webkit-scrollbar {
        display: none;
    }
    
    .services-carousel {
        scroll-snap-type: none;
    }
    
    .service-card {
        scroll-snap-align: center;
        scroll-snap-stop: always;
        width: calc(100vw - 3rem);
        max-width: 380px;
    }
    
    .services-scroll-hint {
        position: absolute;
        right: 2rem;
        top: 50%;
        transform: translate3d(0, -50%, 0);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 50px;
        padding: 0.75rem;
        width: 48px;
        height: 48px;
        color: rgba(255, 255, 255, 0.9);
        z-index: 10;
        pointer-events: none;
        animation: scrollHintPulse 2s ease-in-out infinite;
        transition: opacity 0.3s ease, transform 0.3s ease;
        will-change: transform, opacity;
    }
    
    .services-scroll-hint svg {
        width: 20px;
        height: 20px;
        animation: scrollHintArrow 1.5s ease-in-out infinite;
    }
    
    [dir="rtl"] .services-scroll-hint {
        left: 2rem;
        right: auto;
    }
    
    [dir="rtl"] .services-scroll-hint.hidden {
        transform: translate3d(-10px, -50%, 0);
    }
    
    [dir="rtl"] .services-scroll-hint svg {
        transform: scaleX(-1);
        animation: scrollHintArrowRTL 1.5s ease-in-out infinite;
    }
    
    .services-scroll-hint.hidden {
        opacity: 0;
        transform: translate3d(10px, -50%, 0);
        pointer-events: none;
    }
    
    @keyframes scrollHintPulse {
        0%, 100% {
            opacity: 1;
        }
        50% {
            opacity: 0.7;
        }
    }
    
    @keyframes scrollHintArrow {
        0%, 100% {
            transform: translateX(0);
        }
        50% {
            transform: translateX(5px);
        }
    }
    
    @keyframes scrollHintArrowRTL {
        0%, 100% {
            transform: scaleX(-1) translateX(0);
        }
        50% {
            transform: scaleX(-1) translateX(-5px);
        }
    }
}

.services-carousel {
    display: flex;
    gap: 2rem;
    width: max-content;
    will-change: transform;
    cursor: grab;
    touch-action: pan-x;
    transform: translate3d(0, 0, 0);
    direction: ltr;
}

.services-carousel:active {
    cursor: grabbing;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--ce-border);
    border-radius: var(--ce-radius);
    padding: 3rem 2.5rem;
    transition: border-color var(--ce-transition), transform var(--ce-transition), background var(--ce-transition), box-shadow var(--ce-transition);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    width: 380px;
    min-height: 400px;
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.service-card:hover {
    border-color: var(--ce-border-accent);
    transform: translate3d(0, -4px, 0);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(var(--ce-accent-rgb), 0.1);
}

.service-card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.service-card-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
}

.service-card:hover .service-card-icon {
    color: rgba(255, 255, 255, 1);
}

.service-card-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: #ffffff;
    margin: 0 0 1.5rem 0;
    letter-spacing: -0.01em;
    line-height: 1.4;
}

.service-card-description {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    letter-spacing: 0.01em;
    flex: 1;
}

.about-vision-mission-container {
    display: flex;
    width: 100%;
    max-width: 1600px;
    gap: 2rem;
    padding: 4rem 2rem;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.about-vision-mission-item {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                background 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                border-color 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, box-shadow;
    transform: scale(1);
}

.about-vision-mission-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.03);
    z-index: 10;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.about-vision-mission-item:not(:hover) {
    transform: scale(1);
}

.about-vision-mission-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
}

.about-vision-mission-content {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    letter-spacing: 0.5px;
}

.about-vision-mission-content p {
    margin-bottom: 1.2rem;
}

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

.about-vision-mission-content ul {
    margin: 1.2rem 0;
    padding-left: 1.5rem;
    list-style: none;
}

.about-vision-mission-content ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
}

.about-vision-mission-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
    line-height: 1.8;
}

.about-vision-mission-content ul li:last-child {
    margin-bottom: 0;
}

.project-galleries-row {
    display: flex;
    width: 100%;
    max-width: 1320px;
    margin: 5.5rem auto 0 auto;
    padding: 0 2rem;
    gap: 2.5rem;
    position: relative;
    z-index: 4;
}

.project-gallery {
    flex: 1;
    min-width: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    transition: flex 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                border-color 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
}

/* Hangi galeriye gelinirse o alan genişlesin */
@media (min-width: 901px) {
    .project-galleries-row:hover .project-gallery:hover {
        flex: 1.45;
    }
    .project-galleries-row:hover .project-gallery:not(:hover) {
        flex: 0.55;
    }
}

.project-gallery:hover {
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 56px -16px rgba(0, 0, 0, 0.45),
                0 0 0 1px rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.03);
}

.project-gallery-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: clamp(1rem, 2vw, 1.35rem);
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 1.25rem 0;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.98;
}

.project-gallery-title::after {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.5), transparent);
    margin-top: 0.5rem;
}

.project-gallery-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 18px;
    background: var(--ce-bg);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04),
                0 12px 40px -12px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.4s ease,
                border-color 0.4s ease;
}

.project-gallery:hover .project-gallery-slider-wrapper {
    transform: translateY(-4px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05),
                0 20px 48px -14px rgba(0, 0, 0, 0.55);
    border-color: rgba(255, 255, 255, 0.08);
}

.project-gallery-track {
    display: flex;
    flex-wrap: nowrap;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.project-gallery-slide {
    flex: 0 0 100%;
    min-width: 0;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    position: relative;
}

.project-gallery-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.2) 0%, transparent 40%);
    pointer-events: none;
}

.project-gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                filter 0.5s ease;
}

.project-gallery-slider-wrapper:hover .project-gallery-slide img {
    transform: scale(1.04);
    filter: brightness(1.03);
}

.project-gallery-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    min-height: 14rem;
    background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(255, 255, 255, 0.04) 0%, transparent 60%),
                linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.08) 100%);
}

.project-gallery-placeholder::after {
    display: none;
}

.project-gallery-placeholder-folder {
    width: 4rem;
    height: 4rem;
    color: rgba(255, 255, 255, 0.35);
}

.project-gallery-placeholder-folder svg {
    width: 100%;
    height: 100%;
    display: block;
}

.project-gallery-placeholder-text {
    margin: 0;
    padding: 0 1.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-align: center;
}

.project-gallery-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.35rem;
    margin-top: 1rem;
}

.project-gallery-dots .dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: width 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.project-gallery-dots .dot:hover {
    background: rgba(255, 255, 255, 0.4);
}

.project-gallery-dots .dot.active {
    width: 18px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.9);
}

.project-gallery-prev,
.project-gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease, transform 0.25s ease, opacity 0.25s ease, border-color 0.25s ease;
    z-index: 2;
    opacity: 0.85;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.project-gallery-prev:hover,
.project-gallery-next:hover {
    background: rgba(0, 0, 0, 0.55);
    border-color: rgba(255, 255, 255, 0.18);
    opacity: 1;
    transform: translateY(-50%) scale(1.05);
}

.project-gallery-slider-wrapper:hover .project-gallery-prev,
.project-gallery-slider-wrapper:hover .project-gallery-next {
    opacity: 1;
}

.project-gallery-prev {
    left: 0.6rem;
}

.project-gallery-next {
    right: 0.6rem;
}

@media (max-width: 900px) {
    .project-galleries-row {
        flex-direction: column;
        gap: 3rem;
        margin-top: 4.5rem;
        padding: 0 1.5rem;
    }
    .project-gallery {
        padding: 1.25rem;
        border-radius: 22px;
    }
    .project-gallery:not(:first-of-type) {
        margin-top: 0;
    }
    .project-gallery-slider-wrapper {
        border-radius: 16px;
    }
}

@media (max-width: 480px) {
    .project-galleries-row {
        padding: 0 1rem;
        margin-top: 3.5rem;
        gap: 2.5rem;
    }
    .project-gallery {
        padding: 1rem;
        border-radius: 18px;
    }
    .project-gallery-title {
        letter-spacing: 0.08em;
    }
    .project-gallery-slide {
        aspect-ratio: 4 / 3;
    }
    .project-gallery-slider-wrapper {
        border-radius: 14px;
    }
    .project-gallery-prev,
    .project-gallery-next {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        left: 0.5rem;
        right: 0.5rem;
    }
    .project-gallery-dots .dot.active {
        width: 16px;
    }
}

.branch-cards-container {
    display: flex;
    width: 100%;
    max-width: 1600px;
    height: 70vh;
    min-height: 600px;
    gap: 1.5rem;
    padding: 0 2rem;
    overflow: hidden;
    position: relative;
    margin: 4rem auto 0 auto;
    z-index: 4;
}

.branch-card {
    flex: 1;
    position: relative;
    height: 100%;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                border-color 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: flex, transform;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: scale(1);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 2;
}

/* Desktop'ta okları gizle */
.branch-card-touch-hint {
    display: none;
}

.branch-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 0;
    pointer-events: none;
}

.branch-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
    pointer-events: none;
    border-radius: 12px;
}

.branch-card:hover {
    flex: 2;
    transform: scale(1.03);
    z-index: 10;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.branch-card:hover::before {
    opacity: 1;
}

.branch-card:not(:hover) {
    flex: 1;
    transform: scale(1);
}

.branch-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transform: scale(1);
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    z-index: 1;
    background: transparent;
}

.branch-card-bg-image {
    position: absolute;
    top: 0;
    width: 200%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
    z-index: 0;
    opacity: 0.7;
    pointer-events: none;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                filter 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, filter;
    transform: scale(1);
    filter: brightness(0.85);
}

/* Branch card görselleri kaldırıldı */

.branch-card:nth-child(1) .branch-card-bg-image {
    left: 0;
}

.branch-card:nth-child(2) .branch-card-bg-image {
    left: -100%;
}

.branch-card:hover .branch-card-bg-image {
    transform: scale(1.15);
    filter: brightness(1);
}

.branch-card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.2) 50%,
        rgba(0, 0, 0, 0.6) 100%);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0.6;
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
    pointer-events: none;
}

.branch-card:hover .branch-card-image::after {
    opacity: 0.4;
}

.branch-card-image img:not(.branch-card-bg-image),
.branch-card-image iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                filter 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, filter;
    transform: scale(1);
    filter: brightness(0.85);
    pointer-events: none;
}

.branch-card-image iframe {
    border: none;
    position: absolute;
    top: 0;
    left: 0;
}

.branch-card:hover .branch-card-image img:not(.branch-card-bg-image),
.branch-card:hover .branch-card-image iframe {
    transform: scale(1.15);
    filter: brightness(1);
}

.branch-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 2.5rem;
    background: transparent;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.branch-card-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 2rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    display: block;
}

.branch-card-content {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    letter-spacing: 0.3px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                margin-top 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.branch-card-content p {
    margin-bottom: 1rem;
}

.branch-card-content p:last-child {
    margin-bottom: 0;
}

.branch-card-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
    list-style: none;
}

.branch-card-content ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.6rem;
}

.branch-card-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    line-height: 1.7;
}

.branch-card:hover .branch-card-content {
    max-height: 500px;
    opacity: 1;
    margin-top: 0.5rem;
}

.branch-card:hover .branch-card-title {
    margin-bottom: 1.5rem;
}

@media (max-width: 1024px) {
    /* Tablet ve mobilde okları göster */
    .branch-card-touch-hint {
        display: flex;
    }
    
    .about-vision-mission-container {
        gap: 1.5rem;
        padding: 3rem 1.5rem;
    }
    
    .about-vision-mission-item {
        min-width: 280px;
        padding: 2rem;
    }
    
    .about-vision-mission-title {
        font-size: 1.6rem;
    }
    
    .about-vision-mission-content {
        font-size: 0.95rem;
    }
    
    .services-section {
        padding: 5rem 0 6rem 0;
    }
    
    .services-header {
        margin-bottom: 4rem;
    }
    
    .services-title {
        font-size: clamp(2rem, 4.5vw, 2.5rem);
    }
    
    .services-section .container-fluid {
        padding: 0 2rem;
    }
    
    .services-carousel-wrapper {
        padding: 0 1.5rem;
        margin-top: 3.5rem;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        touch-action: pan-x;
    }
    
    .services-carousel-wrapper::-webkit-scrollbar {
        display: none;
    }
    
    .service-card {
        width: 360px;
        min-height: 380px;
        padding: 2.5rem 2rem;
        flex-shrink: 0;
    }
    
    .service-card-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 1.5rem;
    }
    
    .service-card-title {
        font-size: 1.3rem;
        margin-bottom: 1.25rem;
    }
    
    .service-card-description {
        font-size: 0.95rem;
        line-height: 1.65;
    }
    
    .branch-cards-container {
        height: 65vh;
        min-height: 550px;
        gap: 1rem;
        padding: 0 1.5rem;
    }
    
    .branch-card:hover {
        flex: 1.8;
    }
    
    .branch-card-title {
        font-size: 2.2rem;
        letter-spacing: 3px;
    }
    
    .branch-card:hover .branch-card-title {
        font-size: 2.6rem;
        letter-spacing: 4px;
    }
    
    .branch-card-overlay {
        padding: 2.5rem 2rem;
    }
    
    .branch-card:hover .branch-card-overlay {
        padding: 3rem 2rem;
    }
}

@media (max-width: 768px) {
    .about-vision-mission-container {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem 1rem;
    }
    
    .about-vision-mission-item {
        min-width: 100%;
        max-width: 100%;
        padding: 1.5rem;
    }
    
    .about-vision-mission-title {
        font-size: 1.4rem;
    }
    
    .about-vision-mission-content {
        font-size: 0.9rem;
    }
    
    .content-section {
        padding: 2rem 0 7rem 0;
    }
    
    .services-section {
        padding: 3rem 0 4rem 0;
        margin-top: 6rem;
    }
    
    .services-section .container-fluid {
        padding: 0 1.5rem;
    }
    
    .services-header {
        margin-bottom: 3rem;
        margin-top: 2rem;
    }
    
    .services-title {
        font-size: clamp(1.75rem, 4vw, 2.5rem);
        margin-bottom: 1rem;
    }
    
    .services-description {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .services-carousel-wrapper {
        padding: 0 1rem;
        margin-top: 3rem;
        -webkit-overflow-scrolling: touch;
        touch-action: pan-y pinch-zoom;
    }
    
    .services-carousel {
        gap: 1.5rem;
    }
    
    .service-card {
        width: calc(100vw - 4rem);
        max-width: 320px;
        min-height: 360px;
        padding: 2rem 1.5rem;
    }
    
    .service-card-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 1.5rem;
    }
    
    .service-card-title {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .service-card-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .branch-cards-container {
        flex-direction: column;
        height: auto;
        min-height: auto;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .branch-card {
        flex: 1;
        width: 100%;
        height: 50vh;
        min-height: 400px;
    }
    
    .branch-card:hover {
        flex: 1;
        transform: scale(1);
    }
    
    .branch-card:hover {
        flex: 1.6;
        transform: scale(1.02);
    }
    
    .branch-card-title {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }
    
    .branch-card-content {
        font-size: 0.85rem;
    }
    
    .branch-card:hover .branch-card-title {
        font-size: 2.2rem;
        letter-spacing: 3px;
    }
    
    .branch-card-overlay {
        padding: 2rem 1.5rem;
    }
    
    .branch-card:hover .branch-card-overlay {
        padding: 2.5rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .about-vision-mission-container {
        padding: 1.5rem 0.75rem;
        gap: 1rem;
    }
    
    .about-vision-mission-item {
        padding: 1.25rem;
    }
    
    .about-vision-mission-title {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .about-vision-mission-content {
        font-size: 0.85rem;
        line-height: 1.6;
    }
    
    .content-section {
        padding: 1.5rem 0 6rem 0;
    }
    
    .services-section {
        padding: 2rem 0 3rem 0;
        margin-top: 5rem;
    }
    
    .services-section .container-fluid {
        padding: 0 1rem;
    }
    
    .services-header {
        margin-bottom: 2rem;
        margin-top: 1.5rem;
    }
    
    .services-subtitle-text {
        font-size: 0.75rem;
    }
    
    .services-title {
        font-size: clamp(1.5rem, 3.5vw, 2rem);
        margin-bottom: 0.75rem;
    }
    
    .services-description {
        font-size: 0.9rem;
        padding: 0;
        line-height: 1.6;
    }
    
    .services-carousel-wrapper {
        padding: 0 0.5rem;
        margin-top: 2rem;
        -webkit-overflow-scrolling: touch;
        touch-action: pan-y pinch-zoom;
    }
    
    .services-carousel {
        gap: 1rem;
    }
    
    .service-card {
        width: calc(100vw - 2rem);
        max-width: 280px;
        min-height: 320px;
        padding: 1.5rem 1.25rem;
    }
    
    .service-card-icon {
        width: 32px;
        height: 32px;
        margin-bottom: 0.75rem;
    }
    
    .service-card-title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .service-card-description {
        font-size: 0.8rem;
        line-height: 1.5;
    }
    
    .branch-cards-container {
        flex-direction: column;
        height: auto;
        min-height: auto;
        gap: 1rem;
        padding: 0 0.75rem;
    }
    
    .branch-card {
        width: 100%;
        height: 45vh;
        min-height: 350px;
    }
    
    .branch-card:hover {
        flex: 1;
        transform: scale(1);
    }
    
    .branch-card-title {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }
    
    .branch-card-content {
        font-size: 0.8rem;
    }
    
    .branch-card:hover .branch-card-title {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }
    
    .branch-card-overlay {
        padding: 1.5rem 1rem;
    }
    
    .branch-card:hover .branch-card-overlay {
        padding: 2rem 1rem;
    }
}

.content-container {
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

.content-container h2 {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 8px;
    color: #ffffff;
    margin-bottom: 2rem;
}

.content-container p {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--ce-text-muted);
    line-height: 1.8;
}

.faq-section {
    width: 100%;
    position: relative;
    background: var(--ce-bg);
    padding: 8rem 0;
    margin: 0;
    min-height: auto;
    overflow: visible;
}

.faq-section.container-full {
    width: 100%;
}

.faq-section .container-fluid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
    padding-top: 0;
}

.faq-content-wrap {
    width: 100%;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-header {
    text-align: center;
    margin-top: 0;
    margin-bottom: 6rem;
    padding-top: 0;
}

.faq-subtitle {
    margin-bottom: 1.5rem;
}

.faq-subtitle-text {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ce-accent);
    position: relative;
    display: inline-block;
    opacity: 1;
    will-change: transform, opacity;
}

.faq-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    margin: 0;
    opacity: 1;
    will-change: transform, opacity;
}

.faq-title span {
    display: inline-block;
    margin: 0 0.5rem;
    position: relative;
}

.faq-content-head {
    display: none;
}

.faq-content-left {
    opacity: 0;
    transform: translateY(30px);
}

.faq-content-text {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.8;
    color: #666;
    letter-spacing: 0.5px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    perspective: 1000px;
    transform-style: preserve-3d;
    position: relative;
    overflow: visible;
}

.faq-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 3rem;
    padding: 2rem 0;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    opacity: 1;
    transform: rotateX(0deg) translateY(0);
    transform-origin: bottom center;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    position: relative;
    z-index: 1;
    will-change: transform, opacity;
}

.faq-item:nth-child(1) {
    z-index: 5;
}

.faq-item:nth-child(2) {
    z-index: 4;
}

.faq-item:nth-child(3) {
    z-index: 3;
}

.faq-item:nth-child(4) {
    z-index: 2;
}

.faq-item:nth-child(5) {
    z-index: 1;
}

.faq-item:last-child {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
}

.faq-item:hover {
    transform: translateY(-5px) rotateX(0deg);
    transition: transform 0.3s ease;
}

.faq-item.closing {
    opacity: 1;
    transform: rotateX(-90deg) translateY(-30px);
    pointer-events: none;
    transform-origin: bottom center;
    z-index: 10;
}

.faq-item.opening {
    opacity: 1;
    transform: rotateX(0deg) translateY(0);
    transform-origin: bottom center;
}

.faq-item-left {
    display: flex;
    align-items: flex-start;
}

.faq-item-number {
    font-size: 2.5rem;
    font-weight: 300;
    color: #ffffff;
    opacity: 0.3;
    letter-spacing: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover .faq-item-number {
    opacity: 1;
    color: #ffffff;
}

.faq-item-right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item-question {
    font-size: 1.5rem;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover .faq-item-question {
    color: #ffffff;
    transform: translateX(5px);
}

.faq-item-content {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.faq-item-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    opacity: 1;
    margin-top: 0.25rem;
    color: var(--ce-accent);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover .faq-item-icon {
    opacity: 1;
    transform: scale(1.1);
    color: var(--ce-accent);
}

.faq-item-answer {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--ce-text-muted);
    letter-spacing: 0.3px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.7;
}

.faq-item:hover .faq-item-answer {
    opacity: 1;
    color: #ffffff;
}

@media (max-width: 1024px) {
    .faq-header {
        margin-bottom: 4rem;
    }
    
    .faq-title {
        font-size: 2.5rem;
    }
    
    .faq-content-head {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .faq-section .container-fluid {
        padding: 0 2rem;
    }
}

@media (max-width: 768px) {
    .content-06 {
        padding: 5rem 0;
    }
    
    .faq-item {
        grid-template-columns: 60px 1fr;
        gap: 2rem;
        transition: all 0.3s ease;
    }
    
    .faq-item-number {
        font-size: 2rem;
        color: rgba(255, 255, 255, 0.3);
        transition: all 0.3s ease;
    }
    
    .faq-item-question {
        font-size: 1.25rem;
        color: rgba(255, 255, 255, 0.5);
        transition: all 0.3s ease;
    }
    
    .faq-item-answer {
        color: rgba(255, 255, 255, 0.4);
        transition: all 0.3s ease;
    }
    
    .faq-item.active .faq-item-number {
        color: #ffffff;
        opacity: 1;
    }
    
    .faq-item.active .faq-item-question {
        color: #ffffff;
    }
    
    .faq-item.active .faq-item-answer {
        color: #ffffff;
        opacity: 1;
    }
    
    .faq-item-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .faq-item-icon {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .faq-item {
        grid-template-columns: 50px 1fr;
        gap: 1.5rem;
        transition: all 0.3s ease;
    }
    
    .faq-item-number {
        font-size: 1.75rem;
        color: rgba(255, 255, 255, 0.3);
        transition: all 0.3s ease;
    }
    
    .faq-item-question {
        font-size: 1.1rem;
        color: rgba(255, 255, 255, 0.5);
        transition: all 0.3s ease;
    }
    
    .faq-item-answer {
        color: rgba(255, 255, 255, 0.4);
        transition: all 0.3s ease;
        font-size: 0.9rem;
    }
    
    .faq-item.active .faq-item-number {
        color: #ffffff;
        opacity: 1;
    }
    
    .faq-item.active .faq-item-question {
        color: #ffffff;
    }
    
    .faq-item.active .faq-item-answer {
        color: #ffffff;
        opacity: 1;
    }
}

@media (max-width: 1024px) {
    .content-section {
        padding: 6rem 0 7rem 0;
    }
    
    .services-section {
        padding: 6rem 0;
    }
    
    .faq-section {
        padding: 6rem 0;
    }
    
    
    .house-section {
        padding: 2rem 0;
    }
    
    .press-news-section {
        padding: 6rem 0;
    }
    
    .house-container {
        max-width: 95%;
    }

    .house-image-wrapper {
        width: 60%;
    }

    .house-category-name {
        font-size: clamp(3rem, 8vw, 6rem);
    }
}

@media (max-width: 768px) {
    .house-container {
        max-width: 100%;
        padding: 0 1rem;
    }

    .house-main-content {
        min-height: 50vh;
    }

    .house-image-wrapper {
        width: 80%;
    }

    .house-category-name {
        font-size: clamp(2.5rem, 7vw, 5rem);
    }

    .house-category-box {
        padding: 0.5rem 2rem;
    }

    .house-carousel-track {
        gap: 3rem;
    }
}

.footer {
    width: 100%;
    background: linear-gradient(180deg, var(--ce-bg) 0%, var(--ce-bg-soft) 100%);
    color: #ffffff;
    padding: 5rem 0 2.5rem 0;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    width: 100%;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
    justify-content: center;
    text-decoration: none;
    color: inherit;
}
.footer-logo:hover {
    color: inherit;
}

.footer-logo-img {
    height: 100px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.1);
    transition: transform 0.3s ease;
}

.footer-logo-img:hover {
    transform: scale(1.05);
}

.footer-logo-text {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 4px;
    color: #ffffff;
    margin: 0;
}

.footer-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    width: 100%;
    justify-items: center;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-align: center;
    min-width: 0;
    flex: 1 1 0;
    width: 100%;
}

.footer-title {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 3px;
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 1rem;
    width: 100%;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    transition: width 0.3s ease;
}

.footer-column:hover .footer-title::after {
    width: 60px;
    left: 50%;
    transform: translateX(-50%);
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
    text-align: center;
    width: 100%;
}

.footer-list li {
    font-size: 0.95rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    transition: color 0.3s ease, transform 0.2s ease;
}

.footer-list li:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-list a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.2s ease;
    display: inline-block;
}

.footer-list a:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-bottom .footer-logo {
    order: -1;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    z-index: 0;
}

.footer-copyright {
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
    text-transform: uppercase;
}

@media (max-width: 1024px) {
    .footer {
        padding: 6rem 0 3rem 0;
    }
    
    .footer-logo-img {
        height: 85px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .footer-logo {
        align-items: center;
        text-align: center;
    }

    .footer-info {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-column {
        align-items: center;
        text-align: center;
    }

    .footer-container {
        padding: 0 2rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 5rem 0 2.5rem 0;
    }

    .footer-content {
        gap: 2rem;
        margin-bottom: 2rem;
        padding-bottom: 2rem;
        text-align: center;
    }
    
    .footer-logo {
        align-items: center;
        text-align: center;
    }

    .footer-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-column {
        align-items: center;
        text-align: center;
    }

    .footer-logo-img {
        height: 70px;
    }

    .footer-logo-text {
        font-size: 1rem;
        letter-spacing: 2px;
    }
}

.contact-section {
    width: 100%;
    min-height: 100vh;
    background: var(--ce-bg);
    padding: 10rem 0 4rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.contact-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 4rem;
}

.contact-header {
    text-align: center;
    margin-bottom: 5rem;
}

.contact-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: 6px;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.contact-subtitle {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

/* Contact sayfası – soldaki iletişim alanı (baştan yazıldı) */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--ce-radius);
    transition: background var(--ce-transition), border-color var(--ce-transition);
}

.contact-info-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
}

.contact-info-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--ce-accent-rgb), 0.12);
    border-radius: var(--ce-radius-sm);
    color: var(--ce-accent);
}

.contact-info-block {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.contact-info-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.contact-info-value {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    text-decoration: none;
    transition: color var(--ce-transition);
}

.contact-info-email:hover,
.contact-info-phone:hover {
    color: var(--ce-accent);
}

.contact-form-wrapper {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3.5rem;
    border-radius: 24px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 300;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--ce-accent);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px var(--ce-accent-dim);
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
}

.form-submit {
    padding: 1.2rem 3.5rem;
    background: linear-gradient(135deg, var(--ce-accent-dim) 0%, rgba(0, 108, 53, 0.15) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: var(--ce-accent);
    border: 1px solid var(--ce-accent);
    border-radius: 50px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.form-submit:hover {
    background: linear-gradient(135deg, rgba(0, 108, 53, 0.35) 0%, rgba(0, 108, 53, 0.2) 100%);
    border-color: var(--ce-accent);
    color: var(--ce-text);
    transform: translateY(-2px);
    box-shadow: 
        0 6px 24px rgba(0, 0, 0, 0.3),
        0 0 20px var(--ce-accent-dim);
}

.form-submit:active {
    transform: translateY(0);
}

.form-submit svg {
    transition: transform 0.3s ease;
}

.form-submit:hover svg {
    transform: translateX(4px);
}

/* Contact – gönderim sonrası bildirim modal (tasarıma uyumlu) */
.contact-modal {
    position: fixed;
    inset: 0;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--ce-transition), visibility var(--ce-transition);
}

.contact-modal.contact-modal--open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.contact-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
}

.contact-modal-box {
    position: relative;
    width: 100%;
    max-width: 420px;
    padding: 2.5rem 2rem;
    background: var(--ce-bg-card);
    border: 1px solid var(--ce-border);
    border-radius: var(--ce-radius);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05);
    text-align: center;
    transform: scale(0.95);
    transition: transform var(--ce-transition);
}

.contact-modal.contact-modal--open .contact-modal-box {
    transform: scale(1);
}

.contact-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--ce-border);
    border-radius: var(--ce-radius-sm);
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: background var(--ce-transition), color var(--ce-transition), border-color var(--ce-transition);
}

.contact-modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--ce-text);
    border-color: var(--ce-border-accent);
}

.contact-modal-icon {
    margin-bottom: 1.25rem;
    color: var(--ce-accent);
}

.contact-modal--error .contact-modal-icon {
    color: #e57373;
}

.contact-modal-icon svg {
    display: block;
    margin: 0 auto;
}

.contact-modal-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--ce-text);
    margin-bottom: 0.75rem;
}

.contact-modal-text {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.6;
    color: var(--ce-text-muted);
    margin-bottom: 1.5rem;
}

.contact-modal-btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    background: var(--ce-accent-dim);
    border: 1px solid var(--ce-accent);
    border-radius: 50px;
    color: var(--ce-accent);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background var(--ce-transition), color var(--ce-transition), border-color var(--ce-transition), transform var(--ce-transition);
}

.contact-modal-btn:hover {
    background: var(--ce-accent);
    color: var(--ce-bg);
    transform: translateY(-2px);
}

/* KVKK Aydınlatma Metni modal (form bildirimi) */
.kvkk-modal {
    position: fixed;
    inset: 0;
    z-index: 10002;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--ce-transition), visibility var(--ce-transition);
}
.kvkk-modal.kvkk-modal--open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.kvkk-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
}
.kvkk-modal-box {
    position: relative;
    width: 100%;
    max-width: 520px;
    max-height: calc(100vh - 3rem);
    padding: 2rem 1.75rem;
    background: var(--ce-bg-card);
    border: 1px solid var(--ce-border-accent);
    border-radius: var(--ce-radius);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
    transform: scale(0.95);
    transition: transform var(--ce-transition);
    display: flex;
    flex-direction: column;
}
.kvkk-modal.kvkk-modal--open .kvkk-modal-box {
    transform: scale(1);
}
.kvkk-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--ce-border);
    border-radius: var(--ce-radius-sm);
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: background var(--ce-transition), color var(--ce-transition);
}
.kvkk-modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--ce-text);
}
.kvkk-modal-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--ce-text);
    margin: 0 2.5rem 1rem 0;
    padding-right: 0.5rem;
}
.kvkk-modal-body {
    flex: 1;
    overflow-y: auto;
    font-size: 0.875rem;
    line-height: 1.65;
    color: var(--ce-text-muted);
    margin-bottom: 1.5rem;
    padding-right: 0.25rem;
}
.kvkk-modal-body p {
    margin: 0 0 0.75rem;
}
.kvkk-modal-body p:last-child {
    margin-bottom: 0;
}
.kvkk-modal-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
    flex-shrink: 0;
}
.kvkk-modal-btn {
    padding: 0.65rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: var(--ce-radius-sm);
    cursor: pointer;
    transition: background var(--ce-transition), color var(--ce-transition), border-color var(--ce-transition);
}
.kvkk-modal-btn--secondary {
    background: transparent;
    border: 1px solid var(--ce-border);
    color: var(--ce-text-muted);
}
.kvkk-modal-btn--secondary:hover {
    border-color: var(--ce-border-accent);
    color: var(--ce-text);
}
.kvkk-modal-btn--primary {
    background: var(--ce-accent);
    border: 1px solid var(--ce-accent);
    color: var(--ce-bg);
}
.kvkk-modal-btn--primary:hover {
    background: rgba(var(--ce-accent-rgb), 0.9);
}

@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-container {
        padding: 0 2rem;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 6rem 0 3rem 0;
    }

    .contact-title {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }

    .contact-subtitle {
        font-size: 1rem;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }
}

@media (max-width: 1400px) {
    .container-fluid,
    .footer-container,
    .contact-container {
        padding: 0 3rem;
    }
}

@media (max-width: 1024px) {
    .hero {
        padding: 2rem 0;
    }
    
    .hero-content {
        padding: 3rem 2rem;
    }
    
    .navbar-search-box {
        left: calc(60px + 2rem);
        width: 320px;
        height: 44px;
        padding: 0.7rem 1.5rem;
    }
    
    .navbar-search-box.active {
        width: calc(100vw - 6rem - 60px - 2rem - 120px - 1.5rem);
        max-width: calc(100% - 300px);
    }
    
    .navbar-search-input {
        font-size: 1rem;
    }
    
    .navbar-search-cursor {
        font-size: 1rem;
        left: 1.5rem;
    }
    
    .content-section {
        padding: 6rem 0 7rem 0;
    }
    
    .services-section {
        padding: 6rem 0;
    }
    
    .faq-section {
        padding: 6rem 0;
    }
    
    
    .house-section {
        padding: 2rem 0;
    }
    
    .press-news-section {
        padding: 6rem 0;
    }
    
    .navbar {
        padding: 1.5rem 3rem;
    }
    
    .logo-image {
        height: 60px;
        max-height: 60px;
        max-width: 150px;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 7vw, 5rem);
    }
    
    .content-intro {
        padding: 3.5rem 2rem 2rem 2rem;
    }
    
    .content-intro-main {
        font-size: 3.5rem;
    }
    
    .content-intro-script {
        font-size: 3rem;
    }
    
    .house-carousel-top {
        transform: translateY(-110%);
    }
    
    .house-carousel-bottom {
        transform: translateY(50%);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 1.5rem 0;
    }
    
    .hero-content {
        padding: 2.5rem 1.5rem;
    }
    
    .navbar-search-box {
        left: calc(50px + 1.5rem);
        width: calc(100vw - 4rem - 50px - 1.5rem - 50px - 1rem);
        max-width: calc(100% - 120px);
        height: 40px;
        padding: 0.6rem 1.2rem;
    }
    
    .navbar-search-box.active {
        width: calc(100vw - 4rem - 50px - 1.5rem - 50px - 1rem);
        max-width: calc(100% - 120px);
    }
    
    .navbar-search-input {
        font-size: 0.9rem;
    }
    
    .navbar-search-cursor {
        font-size: 0.9rem;
        left: 1.2rem;
    }
    
    .content-section {
        min-height: auto;
        padding: 4rem 0 7rem 0;
    }
    
    .services-section {
        padding: 4rem 0;
    }
    
    .faq-section {
        padding: 4rem 0;
    }
    
    
    .house-section {
        padding: 1.5rem 0;
    }
    
    .press-news-section {
        padding: 4rem 0;
    }
    
    .content-06 {
        padding: 5rem 0;
        min-height: auto;
    }
    
    .content-06 .container-fluid {
        padding: 0 1.5rem;
    }
    
    .faq-header {
        margin-bottom: 3rem;
    }
    
    .faq-title {
        font-size: 1.75rem;
    }
    
    .faq-content-head {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 4rem;
    }
    
    .faq-content-text {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .faq-item {
        grid-template-columns: 50px 1fr;
        gap: 1.5rem;
        padding: 1.5rem 0;
        margin-bottom: 2rem;
    }
    
    .faq-item-number {
        font-size: 1.8rem;
    }
    
    .faq-item-question {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .faq-item-answer {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .faq-item-icon {
        width: 20px;
        height: 20px;
    }
    
    .house-section {
        padding: 0.5rem 0;
        min-height: auto;
    }
    
    .section-full.twm-category-carousal-area {
        padding: 2rem 1rem;
        min-height: auto;
    }
    
    .twm-category-carousal-mid-media {
        min-height: 40vh;
        margin: 2rem 0;
    }
    
    .twm-category-carousal-mid-media img {
        width: 70%;
        max-width: 500px;
    }
    
    .house-carousel-top {
        transform: translateY(-100%);
    }
    
    .house-carousel-bottom {
        transform: translateY(60%);
    }
    
    .twm-category-name {
        font-size: clamp(3.5rem, 16vw, 9rem);
    }
    
    .footer-container {
        padding: 0 1.5rem;
    }
    
    .footer {
        padding: 4rem 0 2rem 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
        padding-bottom: 2rem;
        text-align: center;
    }
    
    .footer-logo {
        align-items: center;
        text-align: center;
    }
    
    .footer-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-column {
        align-items: center;
        text-align: center;
    }
    
    .footer-logo-img {
        height: 60px;
    }
    
    .footer-title {
        font-size: 0.8rem;
    }
    
    .footer-list {
        gap: 1rem;
    }
    
    .footer-list li,
    .footer-list a {
        font-size: 0.9rem;
    }
    
    .footer-copyright {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 1rem 1.5rem;
    }
    
    .navbar-menu {
        display: none;
    }
    
    .navbar-search-box {
        display: none;
    }
    
    .logo-image {
        height: 70px;
        max-height: 70px;
        max-width: 180px;
    }
    
    .contact-logo {
        height: 70px;
    }
    
    .navbar-menu-button {
        width: 40px;
        height: 40px;
    }
    
    .nav-icon {
        width: 18px;
        height: 14px;
    }
    
    .navbar-search-input {
        font-size: 0.75rem;
    }
    
    .navbar-search-cursor {
        font-size: 0.75rem;
        left: 0.8rem;
    }
    
    .content-section {
        padding: 3rem 0 7rem 0;
    }
    
    .services-section {
        padding: 3rem 0;
    }
    
    .faq-section {
        padding: 3rem 0;
    }
    
    
    .house-section {
        padding: 1rem 0;
    }
    
    .press-news-section {
        padding: 3rem 0;
    }
    
    .navbar-menu-button {
        width: 40px;
        height: 40px;
    }
    
    .nav-icon {
        width: 16px;
        height: 12px;
        gap: 3px;
    }
    
    .navbar-right {
        gap: 0.75rem;
    }
    
    .nav-overlay {
        top: calc(1rem + 40px + 0.75rem);
        right: 1rem;
    }
    
    .nav-overlay.active {
        width: 280px;
        max-width: 85vw;
        height: auto;
        max-height: calc(100vh - calc(1rem + 40px + 0.75rem) - 2rem);
        min-height: 200px;
    }
    
    .nav-overlay-content {
        width: 100%;
        padding: 2rem 1.5rem;
    }
    
    .nav-link {
        font-size: clamp(1rem, 5vw, 1.3rem);
        padding: 0.75rem 0;
    }
    
    .language-overlay {
        top: calc(1rem + 40px + 0.75rem);
        right: 1rem;
    }
    
    .language-overlay.active {
        width: 280px;
        max-width: 85vw;
        height: auto;
        max-height: calc(100vh - calc(1rem + 40px + 0.75rem) - 2rem);
        min-height: 150px;
    }
    
    .language-overlay-content {
        width: 100%;
        padding: 2rem 1.5rem;
    }
    
    .navbar {
        padding: 0.8rem 1rem;
    }
    
    .logo-image {
        height: 60px;
        max-height: 60px;
        max-width: 150px;
    }
    
    .navbar-menu a {
        font-size: 0.7rem;
        padding: 0.5rem 1rem;
        letter-spacing: 1px;
    }
    
    .language-switcher {
        width: 40px;
        height: 40px;
    }
    
    .world-icon {
        width: 18px;
        height: 18px;
    }
    
    .language-option {
        padding: 0.75rem 0;
        font-size: clamp(1rem, 5vw, 1.3rem);
        gap: 0.75rem;
    }
    
    .hero-title {
        font-size: clamp(1.2rem, 4.5vw, 2rem);
        width: 100%;
        max-width: 100%;
        white-space: nowrap;
        overflow: visible;
        text-overflow: clip;
        padding: 0;
    }
    
    .navbar-search-box {
        left: calc(40px + 1rem);
        width: 180px;
        height: 36px;
        padding: 0.5rem 1rem;
    }
    
    .navbar-search-box.active {
        width: calc(100vw - 2rem - 40px - 1rem - 80px - 0.75rem);
        max-width: calc(100% - 150px);
    }
    
    .navbar-search-input {
        font-size: 0.8rem;
    }
    
    .navbar-search-cursor {
        font-size: 0.8rem;
        left: 1rem;
    }
    
    .hero-search-box {
        min-width: 250px;
        padding: 0.8rem 1.5rem;
    }
    
    .hero-search-input {
        font-size: 1.5rem;
    }
    
    .hero-search-cursor {
        font-size: 1.5rem;
    }
    
    .hero-subtitle-content {
        padding: 1.5rem 0.5rem 1rem 0.5rem;
    }
    
    .content-intro-main {
        font-size: 1.75rem;
        padding: 0 0.5rem;
    }
    
    .content-intro-script {
        font-size: 1.75rem;
    }
    
    .content-intro-description {
        font-size: 0.85rem;
        padding: 0 0.5rem;
    }
    
    .content-section {
        min-height: auto;
        margin-top: 5rem;
    }
    
    .content-06 {
        padding: 4rem 0;
    }
    
    .content-06 .container-fluid {
        padding: 0 1rem;
    }
    
    .faq-title {
        font-size: 1.75rem;
    }
    
    .faq-item {
        grid-template-columns: 40px 1fr;
        gap: 1rem;
        padding: 1rem 0;
    }
    
    .faq-item-number {
        font-size: 1.5rem;
    }
    
    .faq-item-question {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .faq-item-answer {
        font-size: 0.85rem;
    }
    
    .faq-item-content {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .house-section {
        min-height: 70vh;
    }
    
    .section-full.twm-category-carousal-area {
        padding: 1rem 0.5rem;
        min-height: 70vh;
    }
    
    .twm-category-carousal-mid-media {
        min-height: 35vh;
        margin: 1.5rem 0;
    }
    
    .twm-category-carousal-mid-media img {
        width: 80%;
        max-width: 400px;
    }
    
    .house-carousel-top {
        transform: translateY(-95%);
    }
    
    .house-carousel-bottom {
        transform: translateY(65%);
    }
    
    .twm-category-name {
        font-size: clamp(3rem, 20vw, 7rem);
    }
    
    .footer-container {
        padding: 0 1rem;
    }
    
    .footer {
        padding: 3.5rem 0 1.5rem 0;
    }
    
    .footer-logo-img {
        height: 55px;
    }
    
    .footer-content {
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-logo {
        align-items: center;
        text-align: center;
    }
    
    .footer-info {
        gap: 1.5rem;
    }
    
    .footer-column {
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        height: 100vh;
    }
    
}

@media (min-width: 1920px) {
    .container-fluid,
    .footer-container,
    .contact-container {
        max-width: 1600px;
    }
    
    .hero-title {
        font-size: clamp(3.5rem, 6vw, 5.5rem);
    }
}

@media (hover: none) and (pointer: coarse) {
    .navbar-menu a:hover {
        transform: none;
    }
    
    .floating-card:hover {
        transform: none;
    }
    
    .twm_category_bx:hover {
        transform: none;
    }
    
    .close {
        width: 44px;
        height: 44px;
    }
    
    .navbar-menu a {
        padding: 1rem 2rem;
    }
}

@media (max-width: 1366px) {
    .floating-wrapper {
        max-width: 1400px;
    }
    
    .content-06 .container-fluid,
    .footer-container {
        max-width: 1200px;
    }
}

@media (min-width: 992px) and (max-width: 1024px) {
    .hero-title {
        font-size: clamp(3rem, 6vw, 4.5rem);
    }
    
    .floating-wrapper {
        padding: 4rem 3rem;
        gap: 2.5rem;
    }
    
    .card-image-wrapper {
        height: 280px;
    }
}

@media (min-width: 481px) and (max-width: 767px) {
    .navbar {
        padding: 1rem 2rem;
    }
    
    .hero-title {
        font-size: clamp(2.2rem, 8vw, 3.5rem);
    }
    
    .content-intro-main {
        font-size: 2.25rem;
    }
    
    .floating-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .card-image-wrapper {
        height: 220px;
    }
}

@media print {
    .intro-screen,
    .navbar,
    .house-carousel-top,
    .house-carousel-bottom,
    .hero-background {
        display: none !important;
    }
    
    .main-content {
        opacity: 1 !important;
    }
    
    body {
        background: #ffffff !important;
    }
    
    .hero {
        height: auto;
        min-height: auto;
    }
    
    .section {
        page-break-inside: avoid;
    }
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-image,
    .intro-logo,
    .footer-logo-img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .vert-move {
        animation: none;
    }
    
    .house-carousel-track {
        animation: none;
    }
}

@media (prefers-color-scheme: dark) {
    
}

.press-news-section {
    width: 100%;
    position: relative;
    background: var(--ce-bg);
    padding: 12rem 0 8rem 0;
    overflow: hidden;
}

.press-news-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 4rem;
    position: relative;
}

.press-news-header {
    text-align: center;
    margin-bottom: 6rem;
}

.press-news-subtitle {
    margin-bottom: 1.5rem;
}

.press-subtitle-text {
    opacity: 1;
    will-change: transform, opacity;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ce-accent);
    position: relative;
    display: inline-block;
}

.press-news-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    margin: 0;
}

.press-news-title span {
    display: inline-block;
    margin: 0 0.5rem;
    position: relative;
    transform-style: preserve-3d;
    will-change: transform, opacity;
}

.press-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.press-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
    height: 100%;
}

.press-card-link:hover {
    transform: translateY(-5px);
}

.press-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    will-change: transform, opacity, scale;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    height: 100%;
}

.press-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.press-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.press-card:hover::before {
    opacity: 1;
}

.press-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.press-card-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.press-card-logo-image {
    display: none;
    max-height: 65px;
    max-width: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.95;
    transition: opacity 0.3s ease;
}

.press-card-logo-image[src]:not([src=""]) {
    display: block;
}

.press-card-logo-text {
    display: block;
}

.press-card-logo-image[src]:not([src=""]) ~ .press-card-logo-text {
    display: none;
}

.press-card:hover .press-card-logo-image {
    opacity: 1;
}

.press-card-date {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

.press-card-stars {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 1.5rem;
    transform-style: preserve-3d;
}

.press-card-stars svg {
    will-change: transform;
    transform-style: preserve-3d;
}

.press-card-stars svg {
    width: 18px;
    height: 18px;
    fill: #ffc107;
    opacity: 0.9;
}

.press-card-text {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 2rem 0;
    flex: 1;
    font-style: italic;
}

.press-card-footer {
    display: flex;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.press-card-category {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 1024px) {
    .press-news-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .press-news-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .press-news-section {
        padding: 6rem 0;
    }
    
    .press-news-container {
        padding: 0 2rem;
    }
    
    .press-news-header {
        margin-bottom: 3rem;
    }
    
    .press-news-title {
        font-size: 2rem;
    }
    
    .press-news-title span {
        display: block;
        margin: 0.25rem 0;
    }
    
    .press-news-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 3rem;
    }
    
    .press-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .press-news-section {
        padding: 3rem 0;
    }
    
    .press-news-container {
        padding: 0 1.5rem;
    }
    
    .press-news-title {
        font-size: 1.75rem;
    }
    
    .press-card {
        padding: 1.5rem;
    }
    
    .press-card-logo {
        font-size: 1.25rem;
    }
    
    .press-card-logo-image {
        max-height: 55px;
        max-width: 160px;
    }
    
    .press-card-text {
        font-size: 0.9375rem;
    }
}

/* Accordion section yorum satırına alındı - CSS stilleri kaldırıldı */

/* Accordion section yorum satırına alındı - CSS stilleri kaldırıldı */

/* RTL (Right-to-Left) Support for Arabic */
[dir="rtl"] {
    direction: rtl;
}

/* RTL'de section'lar RTL olacak - ayna etkisiyle sağdan sola */
[dir="rtl"] .content-section,
[dir="rtl"] .services-section,
[dir="rtl"] .faq-section,
[dir="rtl"] .press-news-section,
[dir="rtl"] .container-fluid,
[dir="rtl"] .container-full,
[dir="rtl"] .content-intro,
[dir="rtl"] .branch-cards-container,
[dir="rtl"] .branch-card {
    direction: rtl;
}

/* House section ayna etkisinde olmayacak - her zaman LTR */
[dir="rtl"] .house-section,
[dir="rtl"] .section-full.twm-category-carousal-area,
[dir="rtl"] .twm-category-carousal-area {
    direction: ltr !important;
}

[dir="rtl"] .navbar {
    direction: ltr;
}

[dir="rtl"] .navbar-left {
    flex-direction: row;
}

[dir="rtl"] .navbar-right {
    flex-direction: row;
}

[dir="rtl"] .navbar-search-box {
    left: calc(80px + 3rem);
    right: auto;
}


[dir="rtl"] .nav-overlay {
    right: 4rem;
    left: auto;
}

[dir="rtl"] .nav-overlay-menu ul {
    align-items: flex-end;
}

[dir="rtl"] .nav-link {
    text-align: right;
}

[dir="rtl"] .nav-link:hover {
    padding-left: 0;
    padding-right: 1rem;
}

[dir="rtl"] .nav-section-title {
    text-align: right;
}

[dir="rtl"] .nav-time-info {
    text-align: right;
}

[dir="rtl"] .nav-time,
[dir="rtl"] .nav-date {
    text-align: right;
}

[dir="rtl"] .language-overlay-menu ul {
    align-items: flex-end;
}

[dir="rtl"] .language-option {
    text-align: right;
    justify-content: flex-end;
    flex-direction: row-reverse;
}

[dir="rtl"] .language-option:hover {
    padding-left: 0;
    padding-right: 1rem;
}

[dir="rtl"] .language-option .lang-flag {
    margin-left: 0.75rem;
    margin-right: 0;
}

[dir="rtl"] .services-carousel {
    direction: rtl;
}

[dir="rtl"] .services-carousel-wrapper {
    direction: rtl;
}

[dir="ltr"] .services-carousel,
[dir="ltr"] .services-carousel-wrapper {
    direction: ltr;
}

[dir="rtl"] .faq-item {
    direction: rtl;
}

[dir="rtl"] .faq-item-right {
    text-align: right;
}

[dir="rtl"] .footer-info {
    direction: rtl;
}

[dir="rtl"] .press-news-container {
    direction: rtl;
}

[dir="rtl"] .press-news-header {
    direction: rtl;
    text-align: right;
}

[dir="rtl"] .press-news-grid {
    direction: rtl;
}

[dir="rtl"] .services-title {
    direction: rtl;
    text-align: right;
    opacity: 1 !important;
    visibility: visible !important;
}

[dir="rtl"] .services-title span {
    opacity: 1 !important;
    visibility: visible !important;
}

[dir="rtl"] .service-card {
    direction: rtl;
    text-align: right;
}

[dir="rtl"] .service-card-icon {
    align-self: flex-start;
    margin-bottom: 2rem;
    margin-left: 0;
    margin-right: 0;
}

[dir="rtl"] .service-card-title {
    direction: rtl;
    text-align: right;
}

[dir="rtl"] .service-card-description {
    direction: rtl;
    text-align: right;
}

[dir="rtl"] .faq-title {
    direction: rtl;
    text-align: right;
    opacity: 1 !important;
    visibility: visible !important;
}

[dir="rtl"] .faq-title span {
    display: inline-block;
    opacity: 1 !important;
    visibility: visible !important;
}

[dir="rtl"] .press-news-subtitle {
    direction: rtl;
    text-align: right;
}

[dir="rtl"] .press-news-title {
    direction: rtl;
    text-align: right;
    opacity: 1 !important;
    visibility: visible !important;
}

[dir="rtl"] .press-news-title span {
    display: inline-block;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Press Card RTL Düzenlemeleri */
[dir="rtl"] .press-card {
    direction: rtl;
    text-align: right;
}

[dir="rtl"] .press-card-header {
    flex-direction: row-reverse;
    justify-content: space-between;
}

[dir="rtl"] .press-card-logo {
    flex-direction: row-reverse;
}

[dir="rtl"] .press-card-text {
    direction: rtl;
    text-align: right;
}

[dir="rtl"] .press-card-footer {
    justify-content: flex-end;
}

[dir="rtl"] .press-card-category {
    direction: rtl;
    text-align: right;
}

[dir="rtl"] .press-card-stars {
    flex-direction: row-reverse;
    justify-content: flex-start;
}

/* House carousel animasyon yönü RTL için düzeltildi - metinler değişmeyecek */
[dir="rtl"] .house-carousel-rtl {
    animation-direction: normal !important;
}

[dir="rtl"] .house-carousel-ltr {
    animation-direction: reverse !important;
}

/* RTL'de house carousel kelimelerinin görünür olmasını sağla */
[dir="rtl"] .house-carousel-item .twm-category-name {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: #ffffff !important;
}

@media (max-width: 1024px) {
    [dir="rtl"] .navbar-search-box {
        left: calc(60px + 2rem);
        right: auto;
    }
    
    [dir="rtl"] .nav-overlay {
        right: 2rem;
        left: auto;
    }
}

@media (max-width: 768px) {
    [dir="rtl"] .nav-overlay {
        right: 2rem;
        left: auto;
    }
    
    [dir="rtl"] .navbar-search-box {
        left: calc(50px + 1.5rem);
        right: auto;
    }
}

@media (max-width: 480px) {
    [dir="rtl"] .nav-overlay {
        right: 1rem;
        left: auto;
    }
    
    [dir="rtl"] .navbar-search-box {
        left: calc(40px + 1rem);
        right: auto;
    }
}

/* ============================================
   COMPREHENSIVE RESPONSIVE STYLES
   ============================================ */

/* Hero Section Responsive */
@media (max-width: 1024px) {
    .hero-section {
        padding: 8rem 2rem 4rem 2rem;
    }
    
    .hero-title {
        font-size: clamp(2rem, 5vw, 5rem);
        white-space: normal;
    }
    
    .hero-title-text {
        white-space: normal;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 2rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 6rem 1.5rem 3rem 1.5rem;
        min-height: 80vh;
    }
    
    .hero-title {
        font-size: clamp(1.75rem, 4.5vw, 4rem);
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        padding: 0 1.5rem;
        margin-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 5rem 1rem 2rem 1rem;
        min-height: 70vh;
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 4vw, 3rem);
        letter-spacing: -0.01em;
    }
    
    .hero-subtitle {
        font-size: 0.875rem;
        padding: 0 1rem;
        margin-top: 1rem;
    }
}

/* Services Section Responsive */
@media (max-width: 768px) {
    .services-section {
        padding: 3rem 0 4rem 0;
    }
    
    .services-section .container-fluid {
        padding: 0 1.5rem;
    }
    
    .services-header {
        margin-bottom: 3rem;
    }
    
    .services-subtitle-text {
        font-size: 0.8rem;
    }
    
    .services-title {
        font-size: clamp(1.75rem, 4vw, 2.5rem);
        margin-bottom: 1rem;
    }
    
    .services-description {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .services-carousel-wrapper {
        padding: 0 1rem;
        margin-top: 3rem;
    }
    
    .service-card {
        width: 300px;
        min-height: 340px;
        padding: 2rem 1.5rem;
    }
    
    .service-card-icon {
        width: 36px;
        height: 36px;
        margin-bottom: 1rem;
    }
    
    .service-card-title {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .service-card-description {
        font-size: 0.875rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 2rem 0 3rem 0;
    }
    
    .services-section .container-fluid {
        padding: 0 1rem;
    }
    
    .services-header {
        margin-bottom: 2rem;
    }
    
    .services-subtitle-text {
        font-size: 0.75rem;
    }
    
    .services-title {
        font-size: clamp(1.5rem, 3.5vw, 2rem);
        margin-bottom: 0.75rem;
    }
    
    .services-description {
        font-size: 0.9rem;
        padding: 0;
    }
    
    .services-carousel-wrapper {
        padding: 0 0.5rem;
        margin-top: 2rem;
    }
    
    .services-scroll-hint {
        right: 0.75rem;
        padding: 0.5rem 0.875rem;
        font-size: 0.75rem;
    }
    
    [dir="rtl"] .services-scroll-hint {
        left: 0.75rem;
        right: auto;
    }
    
    [dir="rtl"] .services-scroll-hint {
        left: 0.75rem;
        right: auto;
    }
    
    .services-scroll-hint svg {
        width: 16px;
        height: 16px;
    }
    
    .service-card {
        width: 280px;
        min-height: 320px;
        padding: 1.5rem 1.25rem;
    }
    
    .service-card-icon {
        width: 32px;
        height: 32px;
        margin-bottom: 0.75rem;
    }
    
    .service-card-title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .service-card-description {
        font-size: 0.8rem;
        line-height: 1.5;
    }
}

/* FAQ Section Responsive */
@media (max-width: 768px) {
    .faq-section {
        padding: 3rem 0 4rem 0;
    }
    
    .faq-section .container-fluid {
        padding: 0 1.5rem;
    }
    
    .faq-header {
        margin-bottom: 3rem;
    }
    
    .faq-title {
        font-size: clamp(1.75rem, 4vw, 2.5rem);
    }
    
    .faq-title span {
        margin: 0 0.25rem;
        display: inline-block;
    }
    
    .faq-item {
        grid-template-columns: 50px 1fr;
        gap: 1.5rem;
        padding: 1.5rem 0;
        margin-bottom: 2rem;
    }
    
    .faq-item-number {
        font-size: 1.75rem;
    }
    
    .faq-item-question {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .faq-item-answer {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .faq-item-icon {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 2rem 0 3rem 0;
    }
    
    .faq-section .container-fluid {
        padding: 0 1rem;
    }
    
    .faq-header {
        margin-bottom: 2rem;
    }
    
    .faq-title {
        font-size: clamp(1.5rem, 3.5vw, 2rem);
    }
    
    .faq-title span {
        margin: 0 0.15rem;
        display: block;
    }
    
    .faq-item {
        grid-template-columns: 40px 1fr;
        gap: 1rem;
        padding: 1.25rem 0;
        margin-bottom: 1.5rem;
    }
    
    .faq-item-number {
        font-size: 1.5rem;
    }
    
    .faq-item-question {
        font-size: 1rem;
        margin-bottom: 0.5rem;
        letter-spacing: 0.5px;
    }
    
    .faq-item-answer {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .faq-item-icon {
        width: 16px;
        height: 16px;
    }
}

/* Press News Section Responsive */
@media (max-width: 480px) {
    .press-news-section {
        padding: 2rem 0;
    }
    
    .press-news-container {
        padding: 0 1rem;
    }
    
    .press-news-header {
        margin-bottom: 2rem;
    }
    
    .press-news-subtitle {
        margin-bottom: 1rem;
    }
    
    .press-subtitle-text {
        font-size: 0.75rem;
    }
    
    .press-news-title {
        font-size: clamp(1.5rem, 3.5vw, 1.75rem);
    }
    
    .press-news-title span {
        display: block;
        margin: 0.15rem 0;
    }
    
    .press-news-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .press-card {
        padding: 1.5rem;
    }
    
    .press-card-header {
        margin-bottom: 1rem;
        padding-bottom: 1rem;
    }
    
    .press-card-logo {
        font-size: 1.25rem;
    }
    
    .press-card-logo-image {
        max-height: 50px;
        max-width: 140px;
    }
    
    .press-card-date {
        font-size: 0.8rem;
    }
    
    .press-card-stars {
        margin-bottom: 1rem;
    }
    
    .press-card-stars svg {
        width: 16px;
        height: 16px;
    }
    
    .press-card-text {
        font-size: 0.9rem;
        margin: 0 0 1.5rem 0;
        line-height: 1.6;
    }
    
    .press-card-footer {
        padding-top: 1rem;
    }
    
    .press-card-category {
        font-size: 0.8rem;
    }
}

/* Contact Section Responsive */
@media (max-width: 768px) {
    .contact-section {
        padding: 5rem 0 3rem 0;
    }
    
    .contact-container {
        padding: 0 1.5rem;
    }
    
    .contact-header {
        margin-bottom: 3rem;
    }
    
    .contact-title {
        font-size: clamp(2rem, 4vw, 2.5rem);
        letter-spacing: 3px;
        margin-bottom: 1rem;
    }
    
    .contact-subtitle {
        font-size: 0.95rem;
        letter-spacing: 1.5px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info {
        gap: 2rem;
    }
    
    .contact-info-card {
        padding: 1.25rem 1rem;
    }
    
    .contact-info-icon {
        width: 40px;
        height: 40px;
    }
    
    .contact-info-label {
        font-size: 0.7rem;
    }
    
    .contact-info-value {
        font-size: 0.95rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-label {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .form-input,
    .form-textarea {
        font-size: 0.9rem;
        padding: 0.75rem 1rem;
    }
    
    .form-submit {
        padding: 0.875rem 2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 4rem 0 2rem 0;
    }
    
    .contact-container {
        padding: 0 1rem;
    }
    
    .contact-header {
        margin-bottom: 2rem;
    }
    
    .contact-title {
        font-size: clamp(1.5rem, 3.5vw, 2rem);
        letter-spacing: 2px;
        margin-bottom: 0.75rem;
    }
    
    .contact-subtitle {
        font-size: 0.875rem;
        letter-spacing: 1px;
    }
    
    .contact-content {
        gap: 2rem;
    }
    
    .contact-info {
        gap: 1.5rem;
    }
    
    .contact-info-card {
        padding: 1rem 0.9rem;
    }
    
    .contact-info-icon {
        width: 36px;
        height: 36px;
    }
    
    .contact-info-label {
        font-size: 0.65rem;
    }
    
    .contact-info-value {
        font-size: 0.9rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem 1rem;
    }
    
    .form-group {
        margin-bottom: 1.25rem;
    }
    
    .form-label {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
    
    .form-input,
    .form-textarea {
        font-size: 0.85rem;
        padding: 0.625rem 0.875rem;
    }
    
    .form-submit {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
    }
}

/* House Section Responsive */
@media (max-width: 1024px) {
    .house-section {
        padding: 3rem 0;
        min-height: 70vh;
    }
    
    .section-full.twm-category-carousal-area {
        padding: 3rem 1.5rem;
        min-height: 70vh;
    }
    
    .twm-category-carousal-mid-media {
        min-height: 40vh;
        margin: 2.5rem 0;
    }
    
    .twm-category-carousal-mid-media img {
        width: 65%;
        max-width: 600px;
    }
    
    .house-carousel-top {
        transform: translateY(-110%);
    }
    
    .house-carousel-bottom {
        transform: translateY(35%);
    }
    
    .house-carousel-top .house-carousel-item {
        margin-left: 25px;
    }
    
    .house-carousel-bottom .house-carousel-item {
        margin-right: 25px;
    }
    
    .house-carousel-item .twm-category-name {
        font-size: clamp(5rem, 11vw, 8.5rem);
        -webkit-text-stroke: 2.5px #5d4037;
        text-stroke: 2.5px #5d4037;
    }
    
    .house-carousel-track {
        animation-duration: 85s;
    }
}

@media (max-width: 768px) {
    .house-section {
        padding: 2rem 0;
        min-height: 65vh;
    }
    
    .section-full.twm-category-carousal-area {
        padding: 2rem 1rem;
        min-height: 65vh;
    }
    
    .twm-category-carousal-mid-media {
        min-height: 40vh;
        margin: 2.5rem 0;
    }
    
    .twm-category-carousal-mid-media img {
        width: 70%;
        max-width: 450px;
    }
    
    .house-carousel-top {
        transform: translateY(-100%);
    }
    
    .house-carousel-bottom {
        transform: translateY(28%);
    }
    
    .house-carousel-top .house-carousel-item {
        margin-left: 18px;
    }
    
    .house-carousel-bottom .house-carousel-item {
        margin-right: 18px;
    }
    
    .house-carousel-item .twm-category-name {
        font-size: clamp(3rem, 9.5vw, 6.5rem);
        -webkit-text-stroke: 2px #5d4037;
        text-stroke: 2px #5d4037;
        letter-spacing: 0.08em;
    }
    
    .house-carousel-track {
        animation-duration: 72s;
    }
    
    .twm_category_bx {
        padding: 0.5rem 1.25rem;
    }
}

@media (max-width: 480px) {
    .house-section {
        padding: 1.5rem 0;
        min-height: 55vh;
    }
    
    .section-full.twm-category-carousal-area {
        padding: 1.5rem 0.75rem;
        min-height: 55vh;
    }
    
    .twm-category-carousal-mid-media {
        min-height: 35vh;
        margin: 2rem 0;
    }
    
    .twm-category-carousal-mid-media img {
        width: 80%;
        max-width: 380px;
    }
    
    .house-carousel-top {
        transform: translateY(-92%);
    }
    
    .house-carousel-bottom {
        transform: translateY(23%);
    }
    
    .house-carousel-top .house-carousel-item {
        margin-left: 12px;
    }
    
    .house-carousel-bottom .house-carousel-item {
        margin-right: 12px;
    }
    
    .house-carousel-item .twm-category-name {
        font-size: clamp(2.5rem, 8vw, 5.25rem);
        -webkit-text-stroke: 1.5px #5d4037;
        text-stroke: 1.5px #5d4037;
        letter-spacing: 0.06em;
    }
    
    .house-carousel-track {
        animation-duration: 58s;
    }
    
    .twm_category_bx {
        padding: 0.5rem 0.875rem;
    }
}

@media (max-width: 360px) {
    .house-section {
        padding: 1rem 0;
        min-height: 50vh;
    }
    
    .section-full.twm-category-carousal-area {
        padding: 1rem 0.5rem;
        min-height: 50vh;
    }
    
    .twm-category-carousal-mid-media {
        min-height: 30vh;
        margin: 1.5rem 0;
    }
    
    .twm-category-carousal-mid-media img {
        width: 85%;
        max-width: 320px;
    }
    
    .house-carousel-top {
        transform: translateY(-88%);
    }
    
    .house-carousel-bottom {
        transform: translateY(20%);
    }
    
    .house-carousel-top .house-carousel-item {
        margin-left: 10px;
    }
    
    .house-carousel-bottom .house-carousel-item {
        margin-right: 10px;
    }
    
    .house-carousel-item .twm-category-name {
        font-size: clamp(2.25rem, 7vw, 4.25rem);
        -webkit-text-stroke: 1px #5d4037;
        text-stroke: 1px #5d4037;
        letter-spacing: 0.04em;
    }
    
    .house-carousel-track {
        animation-duration: 46s;
    }
    
    .twm_category_bx {
        padding: 0.4rem 0.625rem;
    }
}

/* Content Section Responsive */
@media (max-width: 1024px) {
    .content-section {
        padding: 6rem 0 7rem 0;
        min-height: auto;
        background-attachment: scroll;
    }
    
    .content-intro {
        padding: 6rem 2rem 0 2rem;
    }
    
    .content-intro-main {
        font-size: clamp(2.5rem, 6vw, 4.5rem);
    }
    
    .content-intro-script {
        font-size: clamp(2rem, 5vw, 3.5rem);
    }
    
    .content-intro-description {
        font-size: clamp(0.95rem, 2vw, 1.1rem);
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    .content-section {
        padding: 4rem 0 7rem 0;
        min-height: auto;
    }
    
    .content-section-bg {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
    }
    
    .content-section::before {
        height: 200px;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        background: linear-gradient(180deg, 
            rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 0, 0, 0.75) 25%,
            rgba(0, 0, 0, 0.6) 50%,
            rgba(0, 0, 0, 0.4) 70%,
            rgba(0, 0, 0, 0.2) 85%,
            rgba(0, 0, 0, 0.05) 95%,
            rgba(0, 0, 0, 0) 100%);
    }
    
    .content-section::after {
        height: 200px;
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        background: linear-gradient(0deg, 
            rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 0, 0, 0.75) 25%,
            rgba(0, 0, 0, 0.6) 50%,
            rgba(0, 0, 0, 0.4) 70%,
            rgba(0, 0, 0, 0.2) 85%,
            rgba(0, 0, 0, 0.05) 95%,
            rgba(0, 0, 0, 0) 100%);
        z-index: 1;
    }
    
    .branch-cards-container {
        z-index: 4;
        position: relative;
    }
    
    .content-intro {
        padding: 4rem 1.5rem 0 1.5rem;
    }
    
    .content-intro-main {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 1.5rem;
    }
    
    .content-intro-script {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
        margin-bottom: 0.5rem;
    }
    
    .content-intro-description {
        font-size: clamp(0.9rem, 3vw, 1rem);
        padding: 0 0.5rem;
        line-height: 1.6;
    }
    
    .branch-cards-container {
        flex-direction: column;
        height: auto;
        min-height: auto;
        margin-top: 3rem;
        padding: 0 1rem;
        gap: 1.5rem;
    }
    
    .branch-card {
        width: 100%;
        height: auto;
        min-height: 300px;
        transition: height 0.5s ease;
    }
    
    .branch-card:hover {
        flex: 1;
        transform: scale(1);
    }
    
    /* Mobilde dokun butonu */
    .branch-card-touch-hint {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border: none;
        border-radius: 0;
        padding: 0;
        color: #ffffff;
        z-index: 10;
        pointer-events: none;
        animation: touchHintPulse 2s ease-in-out infinite;
        transition: opacity 0.3s ease;
        width: 24px;
        height: 24px;
    }
    
    .branch-card-touch-hint svg {
        width: 100%;
        height: 100%;
        color: #ffffff;
    }
    
    .branch-card.active .branch-card-touch-hint {
        opacity: 0;
        pointer-events: none;
    }
    
    @keyframes touchHintPulse {
        0%, 100% {
            opacity: 1;
            transform: scale(1) translateX(0);
        }
        50% {
            opacity: 0.8;
            transform: scale(1) translateX(5px);
        }
    }
    
    [dir="rtl"] .branch-card-touch-hint {
        left: 1rem;
        right: auto;
    }
    
    [dir="rtl"] .branch-card-touch-hint svg {
        transform: scaleX(-1);
    }
    
    /* Mobilde active kart için stiller */
    .branch-card.active {
        height: auto;
        min-height: auto;
    }
    
    .branch-card.active .branch-card-overlay {
        position: relative;
        padding: 2.5rem 1.5rem;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        min-height: auto;
    }
    
    .branch-card.active .branch-card-content {
        max-height: none;
        opacity: 1;
        margin-top: 0.5rem;
        height: auto;
    }
    
    .branch-card.active .branch-card-title {
        margin-bottom: 1.5rem;
    }
    
    .branch-card.active .branch-card-image {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        z-index: 0;
    }
    
    .branch-card.active .branch-card-overlay {
        z-index: 2;
        position: relative;
    }
    
    /* Mobilde yazıları daha okunaklı yap */
    .branch-card-title {
        font-size: 1.8rem;
        letter-spacing: 2px;
        color: #ffffff;
        text-shadow: 0 2px 15px rgba(0, 0, 0, 0.9);
        font-weight: 600;
    }
    
    .branch-card-content {
        font-size: 1rem;
        line-height: 1.8;
        color: rgba(255, 255, 255, 0.95);
        font-weight: 400;
    }
    
    .branch-card-content p {
        margin-bottom: 1.25rem;
    }
    
    .branch-card-content ul li {
        margin-bottom: 0.75rem;
        color: rgba(255, 255, 255, 0.95);
    }
}

@media (max-width: 480px) {
    .content-section {
        padding: 3rem 0 7rem 0;
        min-height: auto;
        overflow: hidden;
        isolation: isolate;
    }
    
    .content-section-bg {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        overflow: hidden;
        clip-path: inset(0);
    }
    
    .content-section::before {
        height: 150px;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        background: linear-gradient(180deg, 
            rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 0, 0, 0.75) 25%,
            rgba(0, 0, 0, 0.6) 50%,
            rgba(0, 0, 0, 0.4) 70%,
            rgba(0, 0, 0, 0.2) 85%,
            rgba(0, 0, 0, 0.05) 95%,
            rgba(0, 0, 0, 0) 100%);
    }
    
    .content-section::after {
        height: 180px;
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        background: linear-gradient(0deg, 
            rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 0, 0, 0.75) 25%,
            rgba(0, 0, 0, 0.6) 50%,
            rgba(0, 0, 0, 0.4) 70%,
            rgba(0, 0, 0, 0.2) 85%,
            rgba(0, 0, 0, 0.05) 95%,
            rgba(0, 0, 0, 0) 100%);
        z-index: 0;
    }
    
    .branch-cards-container {
        z-index: 4;
        position: relative;
    }
    
    .content-intro {
        padding: 3rem 1rem 0 1rem;
    }
    
    .content-intro-main {
        font-size: clamp(1.5rem, 7vw, 2.25rem);
        margin-bottom: 1rem;
        letter-spacing: -0.5px;
    }
    
    .content-intro-script {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-bottom: 0.5rem;
    }
    
    .content-intro-description {
        font-size: 0.85rem;
        padding: 0;
        line-height: 1.5;
        letter-spacing: 0.3px;
    }
    
    .branch-cards-container {
        flex-direction: column;
        height: auto;
        min-height: auto;
        margin-top: 2rem;
        padding: 0 0.75rem;
        gap: 1rem;
    }
    
    .branch-card {
        width: 100%;
        height: auto;
        min-height: 280px;
        transition: height 0.5s ease;
    }
    
    .branch-card:hover {
        flex: 1;
        transform: scale(1);
    }
    
    /* Mobilde dokun butonu */
    .branch-card-touch-hint {
        top: 0.75rem;
        right: 0.75rem;
        padding: 0;
        width: 20px;
        height: 20px;
    }
    
    [dir="rtl"] .branch-card-touch-hint {
        left: 0.75rem;
        right: auto;
    }
    
    [dir="rtl"] .branch-card-touch-hint svg {
        transform: scaleX(-1);
    }
    
    /* Mobilde active kart için stiller */
    .branch-card.active {
        height: auto;
        min-height: auto;
    }
    
    .branch-card.active .branch-card-overlay {
        position: relative;
        padding: 2rem 1rem;
        background: rgba(0, 0, 0, 0.75);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        min-height: auto;
    }
    
    .branch-card.active .branch-card-content {
        max-height: none;
        opacity: 1;
        margin-top: 0.5rem;
        height: auto;
    }
    
    .branch-card.active .branch-card-title {
        margin-bottom: 1.25rem;
    }
    
    .branch-card.active .branch-card-image {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        z-index: 0;
    }
    
    .branch-card.active .branch-card-overlay {
        z-index: 2;
        position: relative;
    }
    
    /* Mobilde yazıları daha okunaklı yap */
    .branch-card-title {
        font-size: 1.5rem;
        letter-spacing: 2px;
        color: #ffffff;
        text-shadow: 0 2px 15px rgba(0, 0, 0, 0.9);
        font-weight: 600;
    }
    
    .branch-card-content {
        font-size: 0.95rem;
        line-height: 1.8;
        color: rgba(255, 255, 255, 0.95);
        font-weight: 400;
    }
    
    .branch-card-content p {
        margin-bottom: 1rem;
    }
    
    .branch-card-content ul li {
        margin-bottom: 0.7rem;
        color: rgba(255, 255, 255, 0.95);
    }
}

/* General Typography Responsive */
@media (max-width: 768px) {
    body {
        font-size: 15px;
    }
    
    h1, h2, h3, h4, h5, h6 {
        line-height: 1.2;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }
    
    h1, h2, h3, h4, h5, h6 {
        line-height: 1.1;
    }
}

/* ============================================
   CHROME & WINDOWS SPECIFIC OPTIMIZATIONS
   ============================================ */

/* Chrome Scrollbar Styling */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: var(--ce-bg);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    border: 2px solid var(--ce-bg);
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

::-webkit-scrollbar-corner {
    background: var(--ce-bg);
}

/* Windows / Edge Scrollbar Styling */
@supports (-ms-ime-align: auto) {
    * {
        scrollbar-width: thin;
        scrollbar-color: rgba(255, 255, 255, 0.2) var(--ce-bg);
    }
}

/* Firefox Scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.2) var(--ce-bg);
}

/* Windows Font Rendering Optimization */
@supports (-ms-ime-align: auto) {
    body {
        -ms-font-feature-settings: "liga" 1, "kern" 1;
        text-rendering: optimizeLegibility;
    }
}

/* Chrome Font Rendering */
body {
    text-rendering: optimizeLegibility;
    -webkit-font-feature-settings: "liga", "kern";
    font-feature-settings: "liga", "kern";
}

/* Windows High DPI Display Optimization */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: optimizeLegibility;
    }
    
    img, video {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Chrome Hardware Acceleration */
.navbar,
.hero-video,
.branch-card,
.service-card,
.press-card {
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Windows Touch Optimization */
@media (pointer: coarse) {
    button,
    a,
    .navbar-menu-button,
    .language-switcher,
    .video-touch-button,
    .branch-card,
    .service-card,
    .press-card-link {
        -ms-touch-action: manipulation;
        touch-action: manipulation;
    }
}

/* Chrome Print Optimization */
@media print {
    * {
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
        color-adjust: exact;
    }
}

/* Edge Legacy Support */
@supports (-ms-ime-align: auto) {
    .navbar {
        -ms-overflow-style: -ms-autohiding-scrollbar;
    }
    
    video {
        -ms-interpolation-mode: bicubic;
    }
}

/* Chrome Performance Hints */
.hero-video,
.branch-card-image img,
.service-card,
.press-card {
    content-visibility: auto;
    contain-intrinsic-size: auto 500px;
}

/* Windows 10/11 Dark Mode Support */
@media (prefers-color-scheme: dark) {
    :root {
        color-scheme: dark;
    }
}

/* Chrome Autofill Styling */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    -webkit-text-fill-color: #ffffff;
    -webkit-box-shadow: 0 0 0px 1000px rgba(0, 0, 0, 0.5) inset;
    box-shadow: 0 0 0px 1000px rgba(0, 0, 0, 0.5) inset;
    transition: background-color 5000s ease-in-out 0s;
    color: #ffffff;
}

/* Windows Input Styling */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    -ms-ime-align: auto;
}

/* Chrome Focus Visible (Keyboard Navigation) */
*:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
    border-radius: 2px;
}

/* Windows High Contrast Mode Support */
@media (prefers-contrast: high) {
    * {
        border-color: currentColor;
    }
    
    button,
    a {
        border: 1px solid currentColor;
    }
}

/* Chrome Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Windows Tablet Optimization */
@media (min-width: 768px) and (max-width: 1024px) and (pointer: coarse) {
    .navbar {
        padding: 1.5rem 2rem;
    }
    
    button,
    .navbar-menu-button,
    .language-switcher {
        min-height: 44px;
        min-width: 44px;
    }
}

/* Chrome Mobile Address Bar Fix */
@media (max-width: 768px) {
    .hero {
        min-height: -webkit-fill-available;
        min-height: 100vh;
        min-height: 100dvh;
    }
}

/* Windows Surface Optimization */
@supports (-ms-ime-align: auto) {
    .hero-video {
        -ms-high-contrast-adjust: none;
    }
}

