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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 0;
    background: #000000 !important;
    overflow-x: hidden;
    scrollbar-gutter: stable;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #000000 !important;
    color: #ffffff !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;
}

.intro-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0a;
    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;
    width: auto;
    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: #ffffff;
}

@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;
}

.logo-image {
    height: 80px;
    width: auto;
    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: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 0.8rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    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: #0a0a0a;
    border: 1px solid rgba(10, 10, 10, 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: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
    color: #ffffff;
}

.navbar.scrolled .navbar-menu a:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(10, 10, 10, 0.4);
    transform: scale(1.1);
    color: #0a0a0a;
}

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

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

.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%;
    background-color: #000;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    transform-origin: center center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 1 !important;
    display: block;
    visibility: visible !important;
    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);
}

@media (max-width: 768px) {
    .hero-video {
        transition: filter 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }
}

.hero-video.revealed {
    filter: grayscale(0%);
    --mask-radius: 2000px;
}

.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;
}

.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: rgba(0, 0, 0, 0.3);
    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(10, 10, 10, 0.2);
    background: rgba(255, 255, 255, 0.1);
}

.navbar.scrolled .language-switcher:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(10, 10, 10, 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(10, 10, 10, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: rgba(10, 10, 10, 0.8);
}

.navbar.scrolled .language-option:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(10, 10, 10, 0.4);
    color: rgba(10, 10, 10, 1);
}

.navbar.scrolled .language-option.active {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(10, 10, 10, 0.4);
    color: rgba(10, 10, 10, 1);
}

.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(10, 10, 10, 0.2);
}

.navbar.scrolled .navbar-menu-button:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(10, 10, 10, 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: rgba(255, 255, 255, 1);
    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(10, 10, 10, 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: #0a0a0a;
}

.navbar.scrolled .navbar-search-input {
    color: #0a0a0a;
}

.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(10, 10, 10, 0.3);
}

.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: #0a0a0a;
}

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

.content-intro {
    max-width: 1200px;
    width: 100%;
    text-align: center;
    position: relative;
    transition: opacity 0.3s ease;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    margin: 0 auto;
    padding: 9rem 2rem 0 2rem;
    z-index: 3;
}

.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;
        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;
    }
    
    .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;
    }
}

.content-section {
position: relative;
    width: 100%;
    min-height: 400vh;
    background: #000000;
    overflow: hidden;
    z-index: 5;
    margin-top: -2rem;
    padding-bottom: 0;
    margin-bottom: 0;
}

.content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 250px;
    background: linear-gradient(180deg, 
        rgba(0, 0, 0, 0.95) 0%,
        rgba(0, 0, 0, 0.85) 20%,
        rgba(0, 0, 0, 0.7) 40%,
        rgba(0, 0, 0, 0.5) 60%,
        rgba(0, 0, 0, 0.3) 75%,
        rgba(0, 0, 0, 0.15) 85%,
        rgba(0, 0, 0, 0.05) 92%,
        rgba(0, 0, 0, 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(0, 0, 0, 0.95) 0%,
        rgba(0, 0, 0, 0.85) 20%,
        rgba(0, 0, 0, 0.7) 40%,
        rgba(0, 0, 0, 0.5) 60%,
        rgba(0, 0, 0, 0.3) 75%,
        rgba(0, 0, 0, 0.15) 85%,
        rgba(0, 0, 0, 0.05) 92%,
        rgba(0, 0, 0, 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: #000000;
    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(5rem, 12vw, 10rem);
    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 40s 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: 160vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: #000000;
    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: url('../assets/acc.png');
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

@media (max-width: 768px) {
    .content-section-bg {
        background-attachment: scroll;
        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(0, 0, 0, 0.95) 0%,
        rgba(0, 0, 0, 0.85) 20%,
        rgba(0, 0, 0, 0.7) 40%,
        rgba(0, 0, 0, 0.5) 60%,
        rgba(0, 0, 0, 0.3) 75%,
        rgba(0, 0, 0, 0.15) 85%,
        rgba(0, 0, 0, 0.05) 92%,
        rgba(0, 0, 0, 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(0, 0, 0, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1;
}


/* Services Section */
.services-section {
    width: 100%;
    position: relative;
    background: #000000;
    padding: 2rem 0 8rem 0;
    margin: 0;
    min-height: auto;
    overflow: visible;
    z-index: 11;
}

.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: rgba(255, 255, 255, 0.6);
    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 rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 3rem 2.5rem;
    transition: all 0.3s ease;
    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: rgba(255, 255, 255, 0.15);
    transform: translate3d(0, -4px, 0);
    background: rgba(255, 255, 255, 0.05);
}

.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;
}

.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 0.5rem 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 0.5rem 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: #666;
    line-height: 1.8;
}

.faq-section {
    width: 100%;
    position: relative;
    background: #000000;
    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: rgba(255, 255, 255, 0.6);
    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: #666;
    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: #333;
}

.faq-item-answer {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.7;
    color: #666;
    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 10rem 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(2.5rem, 7vw, 5rem);
    }
}

@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(2rem, 6vw, 4rem);
    }

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

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

.footer {
    width: 100%;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 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;
}

.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: #000000;
    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-info {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-info-item {
    padding: 2.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.contact-info-item:hover {
    transform: translateX(10px);
}

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

.contact-info-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.contact-info-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.contact-info-text {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

.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: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

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

.form-submit {
    padding: 1.2rem 3.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.1) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    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(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.15) 100%);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 
        0 6px 24px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

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

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

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

@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;
    }
    
    .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;
    }
    
    .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: 200vh;
        padding: 4rem 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(3rem, 15vw, 8rem);
    }
    
    .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;
    }
    
    .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;
    }
    
    .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;
    }
    
    .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: 150vh;
        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(2.5rem, 18vw, 6rem);
    }
    
    .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: #000000;
    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: #666;
    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-item {
        padding: 1.5rem;
    }
    
    .contact-info-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 1rem;
    }
    
    .contact-info-title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .contact-info-text {
        font-size: 0.9rem;
    }
    
    .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-item {
        padding: 1.25rem;
    }
    
    .contact-info-icon {
        width: 36px;
        height: 36px;
        margin-bottom: 0.75rem;
    }
    
    .contact-info-title {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }
    
    .contact-info-text {
        font-size: 0.85rem;
    }
    
    .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(4rem, 9vw, 7rem);
        -webkit-text-stroke: 2.5px #5d4037;
        text-stroke: 2.5px #5d4037;
    }
    
    .house-carousel-track {
        animation-duration: 35s;
    }
}

@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(2.5rem, 8vw, 5.5rem);
        -webkit-text-stroke: 2px #5d4037;
        text-stroke: 2px #5d4037;
        letter-spacing: 0.08em;
    }
    
    .house-carousel-track {
        animation-duration: 28s;
    }
    
    .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(2rem, 7vw, 4.5rem);
        -webkit-text-stroke: 1.5px #5d4037;
        text-stroke: 1.5px #5d4037;
        letter-spacing: 0.06em;
    }
    
    .house-carousel-track {
        animation-duration: 22s;
    }
    
    .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(1.75rem, 6vw, 3.5rem);
        -webkit-text-stroke: 1px #5d4037;
        text-stroke: 1px #5d4037;
        letter-spacing: 0.04em;
    }
    
    .house-carousel-track {
        animation-duration: 18s;
    }
    
    .twm_category_bx {
        padding: 0.4rem 0.625rem;
    }
}

/* Content Section Responsive */
@media (max-width: 1024px) {
    .content-section {
        padding: 6rem 0 8rem 0;
        min-height: 140vh;
        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 6rem 0;
        min-height: auto;
    }
    
    .content-section-bg {
        background-size: cover;
        background-attachment: scroll;
        filter: blur(5px);
        -webkit-filter: blur(5px);
        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 4rem 0;
        min-height: auto;
        overflow: hidden;
        isolation: isolate;
    }
    
    .content-section-bg {
        background-size: cover;
        background-attachment: scroll;
        filter: blur(5px);
        -webkit-filter: blur(5px);
        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: #0a0a0a;
    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 #0a0a0a;
    transition: background 0.3s ease;
}

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

::-webkit-scrollbar-corner {
    background: #0a0a0a;
}

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

/* Firefox Scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.2) #0a0a0a;
}

/* 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;
    }
}

