    /* Reset and Base Styles */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
        line-height: 1.6;
        color: #333;
        overflow-x: hidden;
        background: white;
        padding-top: 0;
    }

    /* Sticky Header Styles */
    .header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 2000;
        padding: 30px 0;
        transition: all 0.2s ease;
        background: transparent;
    }

    .header.scrolled {
        background: rgba(255, 255, 255, 0.80); /* Şeffaflık 0.80 */
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding: 15px 0;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    }

    .logo-image {
        height: 84px; /* 1920px ve üzeri için yükseklik */
        width: 194px; /* 1920px ve üzeri için genişlik (84 * 2.3) */
        transition: all 0.2s ease;
    }

    /* Desktop hero content visibility - mobile elements hidden by default */
    .hero-description .mobile-text,
    .hero-title .mobile-title {
        display: none;
    }

    .hero-description .desktop-text,
    .hero-title .desktop-title {
        display: block;
    }

    .logo a {
        display: inline-block;
        text-decoration: none;
        transition: all 0.2s ease;
    }

    .logo a:hover {
        opacity: 0.8;
    }

    .main-nav {
        display: flex;
        gap: 40px;
        align-items: center;
    }

    .nav-link {
        color: white;
        text-decoration: none;
        font-size: 16px;
        font-weight: 400;
        letter-spacing: 0.5px;
        transition: all 0.2s ease;
        position: relative;
        opacity: 0.7;
        font-family: 'Plus Jakarta Sans', sans-serif;
        display: inline-block;
        height: 24px; /* Sabit yükseklik - tüm linkler aynı */
        line-height: 24px; /* Yazıyı ortala */
        vertical-align: top; /* Üstten hizala */
    }
    
    /* EN linki için alt çizgi - sabit yükseklik içinde */
    .nav-link-en::after {
        content: '';
        position: absolute;
        bottom: -6px; /* Link'in altında çizgi */
        left: 0;
        width: 100%;
        height: 2px;
        background-color: white;
    }
    
    /* Scrolled state için EN çizgi rengi */
    .header.scrolled .nav-link-en::after {
        background-color: #666;
    }

    .nav-link.active {
        opacity: 1;
        font-weight: 400;
    }

    .nav-link:hover,
    .nav-link:active,
    .nav-link:focus {
        color: #a4b6bb;
    }

    /* Scrolled state navigation colors */
    .header.scrolled .nav-link {
        color: #666;
    }

    .header.scrolled .nav-link.active {
        color: black;
    }

    .header.scrolled .nav-link:hover,
    .header.scrolled .nav-link:active,
    .header.scrolled .nav-link:focus {
        color: #333;
    }

    .nav-link.active:hover,
    .nav-link.active:active,
    .nav-link.active:focus {
        color: white;
    }

    .header.scrolled .nav-link.active:hover,
    .header.scrolled .nav-link.active:active,
    .header.scrolled .nav-link.active:focus {
        color: black;
    }

    /* EN menüsü için alt çizgi - eski kural kaldırıldı, ::after ile yapılıyor */

    .header.scrolled .nav-link.active:hover,
    .header.scrolled .nav-link.active:active,
    .header.scrolled .nav-link.active:focus {
        color: black;
    }

    .mobile-menu-toggle {
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 8px;
        transition: all 0.2s ease;
    }

    .mobile-menu-toggle img {
        width: 24px;
        height: 12px;
        transition: all 0.2s ease;
    }
    
    /* Scroll yapıldığında hamburger menü ikonu siyah olsun */
    .header.scrolled .mobile-menu-toggle img {
        content: url('../images/menu1.png') !important;
    }
    


    .mobile-menu-toggle.active img {
        transform: rotate(90deg);
    }

    .mobile-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: #000000 !important; /* Tam siyah, hiçbir şeffaflık yok */
        padding: 0;
        z-index: 9999;
        overflow-y: auto;
        pointer-events: auto;
        /* Net görüntü için */
        transform: translateZ(0) !important;
        -webkit-transform: translateZ(0) !important;
        backface-visibility: hidden !important;
        -webkit-backface-visibility: hidden !important;
        -webkit-font-smoothing: antialiased !important;
        -moz-osx-font-smoothing: grayscale !important;
    }

    .mobile-menu.show {
        display: block;
    }

    /* Mobile menu header - force clickability */
    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 25px 25px 15px 25px; /* Üst 25px header ile aynı, alt 15px (daha az) */
        border-bottom: none; /* Alt çizgi kaldırıldı */
        position: relative;
        z-index: 99999 !important;
        pointer-events: auto !important;
        background: #000000; /* Tam siyah, şeffaflık yok */
    }
    
    .mobile-menu-logo {
        pointer-events: auto !important;
        cursor: pointer !important;
        z-index: 99998 !important;
        position: relative !important;
        background: transparent !important; /* Şeffaf, parent'ın siyah background'u kullan */
        min-height: 52px !important;
        min-width: 120px !important;
        display: block !important;
    }
    
    .mobile-menu-logo img {
        width: 120px !important;
        height: 52px !important;
        pointer-events: none !important; /* Let parent handle clicks */
        display: block !important;
        transition: all 0.2s ease; /* Normal logo ile aynı transition */
        object-fit: contain !important; /* Ezilmeyi önle - oran koru */
        max-width: 120px !important;
        max-height: 52px !important;
    }
    
    /* Mobil menü logo boyutları - çözünürlüklere göre */
    @media (max-width: 320px) {
        .mobile-menu-logo {
            min-width: 110px !important;
            min-height: 47px !important;
        }
        .mobile-menu-logo img {
            width: 110px !important;
            height: 47px !important;
            object-fit: contain !important; /* Ezilmeyi önle */
            max-width: 110px !important;
            max-height: 47px !important;
        }
    }
    
    @media (min-width: 321px) and (max-width: 375px) {
        .mobile-menu-logo {
            min-width: 110px !important;
            min-height: 47px !important;
        }
        .mobile-menu-logo img {
            width: 110px !important;
            height: 47px !important;
            object-fit: contain !important; /* Ezilmeyi önle */
            max-width: 110px !important;
            max-height: 47px !important;
        }
    }
    
    @media (min-width: 414px) and (max-width: 414px) {
        .mobile-menu-logo {
            min-width: 120px !important;
            min-height: 52px !important;
        }
        .mobile-menu-logo img {
            width: 120px !important;
            height: 52px !important;
        }
    }
    
    /* iPhone 13/14/15 için özel ayarlar - 390px */
    @media (min-width: 390px) and (max-width: 393px) {
        .mobile-menu-logo {
            min-width: 120px !important;
            min-height: 52px !important;
        }
        .mobile-menu-logo img {
            width: 120px !important;
            height: 52px !important;
            object-fit: contain !important; /* Ezilmeyi önle */
            max-width: 120px !important;
            max-height: 52px !important;
        }
    }
    
    /* iPhone 12 Pro/13/14/15 için - 414px */
    @media (min-width: 414px) and (max-width: 414px) {
        .mobile-menu-logo {
            min-width: 120px !important;
            min-height: 52px !important;
        }
        .mobile-menu-logo img {
            width: 120px !important;
            height: 52px !important;
            object-fit: contain !important; /* Ezilmeyi önle */
            max-width: 120px !important;
            max-height: 52px !important;
        }
    }
    
    @media (min-width: 430px) {
        .mobile-menu-logo {
            min-width: 120px !important;
            min-height: 52px !important;
        }
        .mobile-menu-logo img {
            width: 120px !important;
            height: 52px !important;
            object-fit: contain !important; /* Ezilmeyi önle */
            max-width: 120px !important;
            max-height: 52px !important;
        }
    }
    
    .mobile-menu-close {
        background: transparent !important; /* Şeffaf, parent'ın siyah background'u kullan */
        border: none !important;
        cursor: pointer !important;
        padding: 0px !important; /* Padding'i kaldır */
        position: relative !important;
        z-index: 99997 !important;
        pointer-events: auto !important;
        display: block !important;
        width: 19px !important; /* Buton boyutunu görsel boyutu ile aynı yap */
        height: 19px !important;
        min-height: 19px !important;
        min-width: 19px !important;
        max-height: 19px !important;
        max-width: 19px !important;
    }
    
    .mobile-menu-close img {
        width: 19px !important;
        height: 19px !important;
        min-width: 19px !important;
        min-height: 19px !important;
        max-width: 19px !important;
        max-height: 19px !important;
        pointer-events: none !important; /* Let parent handle clicks */
        display: block !important;
        object-fit: contain !important;
        image-rendering: -webkit-optimize-contrast !important;
        image-rendering: crisp-edges !important;
    }
    
    /* Tüm mobil cihazlarda net görüntü için özel kurallar */
    @media (max-width: 768px) {
        .mobile-menu-close img {
            width: 19px !important;
            height: 19px !important;
            min-width: 19px !important;
            min-height: 19px !important;
            max-width: 19px !important;
            max-height: 19px !important;
            image-rendering: pixelated !important;
            image-rendering: -moz-crisp-edges !important;
            image-rendering: crisp-edges !important;
            -ms-interpolation-mode: nearest-neighbor !important;
            transform: translateZ(0) !important;
            backface-visibility: hidden !important;
            -webkit-backface-visibility: hidden !important;
        }
        
        /* Sosyal medya SVG ikonları - Instagram 40x40 */
        .social-icon img[src*="mdi_instagram.svg"] {
            width: 40px !important;
            height: 40px !important;
            min-width: 40px !important;
            min-height: 40px !important;
            max-width: 40px !important;
            max-height: 40px !important;
            image-rendering: pixelated !important;
            image-rendering: -moz-crisp-edges !important;
            image-rendering: crisp-edges !important;
            -ms-interpolation-mode: nearest-neighbor !important;
            transform: translateZ(0) !important;
            backface-visibility: hidden !important;
            -webkit-backface-visibility: hidden !important;
        }
        
        .social-icon img[src*="linkedin.svg"] {
            width: 35px !important;
            height: 35px !important;
            min-width: 35px !important;
            min-height: 35px !important;
            max-width: 35px !important;
            max-height: 35px !important;
            margin-top: 3px !important; /* Instagram'a göre dikey ortalama (40-35)/2 = 2.5px ≈ 3px */
            image-rendering: pixelated !important;
            image-rendering: -moz-crisp-edges !important;
            image-rendering: crisp-edges !important;
            -ms-interpolation-mode: nearest-neighbor !important;
            transform: translateZ(0) !important;
            backface-visibility: hidden !important;
            -webkit-backface-visibility: hidden !important;
        }
        
        /* Mobil menü logosu da net olsun */
        .mobile-menu-logo img {
            image-rendering: pixelated !important;
            image-rendering: -moz-crisp-edges !important;
            image-rendering: crisp-edges !important;
            -ms-interpolation-mode: nearest-neighbor !important;
            transform: translateZ(0) !important;
            backface-visibility: hidden !important;
            -webkit-backface-visibility: hidden !important;
        }
    }
    
    /* Force clickability for mobile menu header elements */
    .mobile-menu-header * {
        pointer-events: auto;
    }
    
    .mobile-menu-logo * {
        pointer-events: none; /* Let parent handle clicks */
    }
    
    .mobile-menu-close * {
        pointer-events: none; /* Let parent handle clicks */
    }
    
    /* Mobile menu navigation */
    .mobile-menu-nav {
        padding: 25px 0; /* Daha az üst padding çünkü çizgi kaldırıldı */
    }

    .mobile-nav-link {
        display: block;
        color: white;
        text-decoration: none;
        font-size: 20px;
        font-weight: 500; /* Medium - daha ince */
        font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif !important;
        letter-spacing: 0.5px;
        padding: 18px 25px; /* Header ile aynı sol/sağ boşluk */
        transition: all 0.2s ease;
        border-bottom: none; /* Eski çizgiyi kaldır */
        position: relative; /* Pseudo-element için */
    }
    
    /* Menü elemanlarının altındaki çizgi - contact divider ile aynı genişlikte */
    .mobile-nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 25px; /* Sol boşluk */
        right: 25px; /* Sağ boşluk */
        height: 1px;
        background-color: #484848;
    }
    
    /* EN menüsü için alt çizgi - sadece yazı genişliğinde */
    .mobile-nav-link[href="#"]:last-of-type::after {
        content: '';
        position: absolute;
        bottom: 16px;
        left: 25px; /* Header ile aynı sol boşluk */
        right: auto; /* Diğer çizgilerden farklı olarak sadece yazı genişliğinde */
        width: 24px; /* EN yazısının tam genişliği */
        height: 2px;
        background-color: white;
    }

    .mobile-nav-link.active {
        background: transparent; /* Arka plan rengini kaldır, hep siyah kalsın */
    }
    
    /* Mobile menu contact info */
    .mobile-menu-contact {
        position: absolute;
        bottom: 40px;
        left: 25px; /* Header ile aynı sol boşluk */
        right: 25px; /* Header ile aynı sağ boşluk */
    }
    
    .mobile-contact-item {
        color: white;
        font-size: 15px;
        font-weight: 400; /* Regular */
        font-family: 'Plus Jakarta Sans', sans-serif;
        margin-bottom: 15px;
        text-decoration: none;
        display: block;
    }
    
    .mobile-contact-address {
        color: white;
        font-size: 15px;
        font-weight: 400; /* Regular */
        font-family: 'Plus Jakarta Sans', sans-serif;
        margin-top: 20px;
        line-height: 1.4;
    }
    
    /* Contact divider line */
    .contact-divider {
        width: 100%;
        height: auto;
        margin: 20px 0;
        display: block;
    }
    
    /* Social media icons */
    .mobile-social-icons {
        display: flex;
        gap: 35px; /* 15px'in 2 katı */
        margin-top: 20px;
    }
    
    .social-icon {
        display: inline-block;
    }
    
    .social-icon img {
        width: 45px !important;
        height: 45px !important;
        min-width: 45px !important;
        min-height: 45px !important;
        max-width: 45px !important;
        max-height: 45px !important;
        object-fit: contain !important;
        transition: opacity 0.3s ease;
        image-rendering: -webkit-optimize-contrast !important;
        image-rendering: crisp-edges !important;
        transform: translateZ(0); /* GPU hızlandırması */
    }
    
    /* LinkedIn SVG ikonu için özel boyut */
    .social-icon img[src*="linkedin.svg"] {
        width: 35px !important;
        height: 35px !important;
        min-width: 35px !important;
        min-height: 35px !important;
        max-width: 35px !important;
        max-height: 35px !important;
        margin-top: 3px !important; /* Instagram'a göre dikey ortalama (40-35)/2 = 2.5px ≈ 3px */
    }
    
    /* Instagram SVG ikonu için özel boyut */
    .social-icon img[src*="mdi_instagram.svg"] {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
        min-height: 40px !important;
        max-width: 40px !important;
        max-height: 40px !important;
    }
    
    .social-icon:hover img {
        opacity: 0.7;
    }

    .mobile-nav-link:hover {
        background: rgba(255, 255, 255, 0.1);
        padding-left: 30px; /* 25px + 5px hover effect */
    }

    /* Retina ekranlar için genel görüntü optimizasyonu - sadece sosyal medya ikonları */
    @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
        .social-icon img {
            image-rendering: auto !important; /* Tarayıcıya bırak */
            transform: translateZ(0) !important;
            backface-visibility: hidden !important;
            -webkit-font-smoothing: antialiased !important;
        }
    }

    /* Küçük ekranlar için mobil menü düzenlemeleri */
    @media (max-width: 320px) {
        .mobile-menu-nav {
            padding: 15px 0; /* En az padding */
        }
        
        .mobile-nav-link {
            padding: 10px 25px; /* En az dikey padding */
            font-size: 16px; /* Daha küçük font */
        }
        
        .mobile-menu-contact {
            bottom: 15px; /* Daha az alt boşluk */
        }
        
        .mobile-contact-item,
        .mobile-contact-address {
            font-size: 12px; /* En küçük font */
            margin-bottom: 6px; /* En az margin */
        }
        
        .mobile-contact-address {
            line-height: 1.2; /* En sıkışık satır aralığı */
        }
        
        .contact-divider {
            margin: 10px 0; /* En az margin */
        }
        
        .mobile-social-icons {
            margin-top: 10px; /* En az üst margin */
        }
    }
    
    @media (min-width: 321px) and (max-width: 375px) {
        .mobile-menu-nav {
            padding: 20px 0; /* Daha az padding */
        }
        
        .mobile-nav-link {
            padding: 12px 25px; /* Daha az dikey padding */
            font-size: 18px; /* Biraz daha küçük font */
        }
        
        .mobile-menu-contact {
            bottom: 20px; /* Daha az alt boşluk */
        }
        
        .mobile-contact-item,
        .mobile-contact-address {
            font-size: 14px; /* Daha küçük font */
            margin-bottom: 8px; /* Daha az margin */
        }
        
        .mobile-contact-address {
            line-height: 1.3; /* Daha sıkışık satır aralığı */
        }
        
        .contact-divider {
            margin: 15px 0; /* Daha az margin */
        }
        
        .mobile-social-icons {
            margin-top: 15px; /* Daha az üst margin */
        }
    }

    /* Hero Slider Styles */
    .hero-slider {
        position: relative;
        height: 100vh;
        height: 100dvh; /* Dynamic viewport height - mobil tarayıcı adres çubuğu için */
        width: 100%;
        overflow: hidden;
        z-index: 1;
    }

    .hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .hero-bg-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
    }

    /* Hero Background Video Styles */
    .hero-bg-video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
        pointer-events: none;
        /* Video kontrol butonlarını tamamen gizle */
        -webkit-media-controls: none;
        -webkit-media-controls-panel: none;
        -webkit-media-controls-play-button: none;
        -webkit-media-controls-start-playback-button: none;
        -webkit-media-controls-timeline: none;
        -webkit-media-controls-current-time-display: none;
        -webkit-media-controls-time-remaining-display: none;
        -webkit-media-controls-seek-back-button: none;
        -webkit-media-controls-seek-forward-button: none;
        -webkit-media-controls-fullscreen-button: none;
        -webkit-media-controls-rewind-button: none;
        -webkit-media-controls-return-to-realtime-button: none;
        -webkit-media-controls-toggle-closed-captions-button: none;
        -webkit-media-controls-volume-slider: none;
        -moz-appearance: none;
        appearance: none;
        /* Video yüklenene kadar poster görselini göster */
        background-color: transparent;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    /* Video kontrolleri için ek gizleme */
    .hero-bg-video::-webkit-media-controls {
        display: none !important;
        -webkit-appearance: none;
    }

    .hero-bg-video::-webkit-media-controls-panel {
        display: none !important;
        -webkit-appearance: none;
    }

    .hero-bg-video::-webkit-media-controls-play-button {
        display: none !important;
        -webkit-appearance: none;
    }

    .hero-bg-video::-webkit-media-controls-start-playback-button {
        display: none !important;
        -webkit-appearance: none;
    }

    /* YouTube/Vimeo iframe specific styles */
    iframe.hero-bg-video {
        border: none;
        outline: none;
        transform: scale(1.2); /* Scale up to hide controls */
        transform-origin: center center;
    }

    /* Sound Control Button */
    .sound-control-btn {
        position: absolute;
        bottom: 30px;
        right: 30px;
        width: 50px;
        height: 50px;
        background: rgba(0, 0, 0, 0.7);
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        cursor: pointer;
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
    }

    .sound-control-btn:hover {
        background: rgba(0, 0, 0, 0.9);
        border-color: rgba(255, 255, 255, 0.6);
        transform: scale(1.1);
    }

    .sound-control-btn .sound-icon {
        width: 24px;
        height: 24px;
        color: white;
        transition: all 0.2s ease;
    }

    .sound-control-btn:hover .sound-icon {
        color: #ff6b35;
    }

    /* Sound Notification */
    .sound-notification {
        position: fixed;
        top: 20px;
        right: 20px;
        background: rgba(0, 0, 0, 0.9);
        color: white;
        padding: 12px 20px;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 500;
        z-index: 9999;
        animation: slideInRight 0.3s ease;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    @keyframes slideInRight {
        from {
            transform: translateX(100%);
            opacity: 0;
        }
        to {
            transform: translateX(0);
            opacity: 1;
        }
    }

    /* Mobile responsive */
    @media (max-width: 768px) {
        /* Hero slider mobil optimizasyonu */
        .hero-slider {
            height: 100vh; /* Mobilde de tam yükseklik - ilk scroll'a kadar */
            height: 100dvh; /* Dynamic viewport height - adres çubuğu için */
            min-height: 100vh; /* Fallback minimum yükseklik */
            min-height: 100dvh; /* Dynamic minimum yükseklik */
        }
        
        .hero-bg-video {
            object-fit: cover;
            object-position: center center; /* Video merkezde kalsın */
        }
        
        /* YouTube/Vimeo iframe mobil ayarları */
        iframe.hero-bg-video {
            transform: scale(1.1); /* Mobilde daha az scale */
        }
        
        .sound-control-btn {
            width: 45px;
            height: 45px;
            bottom: 20px;
            right: 20px;
        }
        
        .sound-control-btn .sound-icon {
            width: 20px;
            height: 20px;
        }
        
        .sound-notification {
            top: 15px;
            right: 15px;
            font-size: 13px;
            padding: 10px 16px;
        }
    }

    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.4) 100%);
        z-index: 2;
    }

    .container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 40px;
    }

    /* Hero Text Section Styles */
    .hero-text {
        padding-top: 60px !important;
        padding-bottom: 0 !important; /* Remove bottom padding */
        overflow: visible !important;
        background: white;
        margin-top: 0;
        margin-bottom: 0; /* Remove negative margin */
        position: relative;
        z-index: 100;
    }

    /* Hero Text Animations - Based on engage5 system */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Initial state - elements hidden */
    .hero-description {
        text-align: center;
        margin: 30px 0 30px 0 !important; /* Üst ve alt boşluk eşit */
        opacity: 0;
        transform: translateY(30px);
    }

    .hero-title {
        opacity: 0;
        transform: translateY(30px);
    }

    .hero-cta {
        opacity: 0;
        transform: translateY(30px);
    }

    /* Animated state - sequential animations */
    .hero-text.animate .hero-description {
        animation: fadeInUp 1s ease 0.5s both;
    }

    .hero-text.animate .hero-title {
        animation: fadeInUp 1.2s ease 1s both;
    }

    .hero-text.animate .hero-cta {
        animation: fadeInUp 1s ease 2.5s both;
    }

    /* SVG Icon Animations - Sequential opacity only (preserving existing transform values) */

    /* Initial state - all icons hidden */
    .ikon {
        opacity: 0;
        transition: all 0.15s ease; /* Hızlı hover geçişleri için */
    }

    /* Sequential SVG animations - soldan sağa doğru - HIZLANDIRILDI */
    .hero-text.animate .teknoloji-ikon {
        animation: svgFadeIn 0.4s ease 2.2s both;
    }

    .hero-text.animate .ai-ikon {
        animation: svgFadeIn 0.4s ease 2.3s both;
    }

    .hero-text.animate .anime-gif-ikon {
        animation: svgFadeIn 0.4s ease 2.4s both;
    }

    .hero-text.animate .strateji-ikon {
        animation: svgFadeIn 0.4s ease 2.5s both;
    }

    .hero-text.animate .like-ikon {
        animation: svgFadeIn 0.4s ease 2.6s both;
    }

    .hero-text.animate .fikir-ikon {
        animation: svgFadeIn 0.4s ease 2.7s both;
    }

    .hero-text.animate .cozum-ikon {
        animation: svgFadeIn 0.4s ease 2.8s both;
    }

    .hero-text.animate .ok-ikon {
        animation: svgFadeIn 0.4s ease 2.9s both;
    }

    /* SVG Fade In Animation Keyframe */
    @keyframes svgFadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }



    .hero-description p {
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-weight: 400;
        font-size: 30px; /* 1920px ve üzeri için */
        color: #333;
        line-height: 1.6 !important;
        margin: 0 auto;
        max-width: 800px !important; /* Daha geniş yaparak 2 satırda tut */
        text-align: center;
    }

    /* Hero Description Responsive Font Sizes */
    /* 1440px - 1920px arası: 24px */
    @media (min-width: 1440px) and (max-width: 1919px) {
        .hero-description p {
            font-size: 24px !important;
        }
    }

    /* 1024px - 1440px arası: 18px */
    @media (min-width: 1024px) and (max-width: 1439px) {
        .hero-description p {
            font-size: 18px !important;
        }
    }

    /* Mobil çözünürlükler (768px altı): 16px - 2 satır için */
    @media (max-width: 767px) {
        .hero-description p {
            font-size: 16px !important;
            max-width: 500px !important; /* 2 satır için geniş */
        }
        
        .hero-description .mobile-text {
            font-size: 16px !important;
            line-height: 24px !important;
            max-width: 500px !important; /* 2 satır için geniş */
        }
    }

    .hero-description p strong {
        font-weight: 700;
    }

    .hero-main {
        position: relative;
        text-align: center;
    }

    .hero-title-container {
        position: relative;
        display: inline-block;
        width: 1000px;
        margin: 0 auto;
        z-index: 2;
        transition: transform 0.3s ease;
    }

    .hero-title {
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-weight: 800;
        font-size: 120px; /* 1920px ve üzeri için */
        color: #000;
        line-height: 1.1;
        margin: 0;
        text-align: center;
        position: relative;
        z-index: 2;
        word-spacing: 0.1em;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0.1em;
    }

    /* Hero Title Responsive Font Sizes */
    /* 1440px - 1920px arası: 90px */
    @media (min-width: 1440px) and (max-width: 1919px) {
        .hero-title {
            font-size: 90px !important;
        }
    }

    /* 1024px - 1440px arası: 65px */
    @media (min-width: 1024px) and (max-width: 1439px) {
        .hero-title {
            font-size: 65px !important;
        }
    }

    /* Mobil çözünürlükler (768px altı): 50px */
    @media (max-width: 767px) {
        .hero-title {
            font-size: 50px !important;
        }
    }

    .first-line, .second-line {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.2em;
        width: 100%;
    }

    /* Kelime ve İkon Sistemi */
    .kelime {
        position: relative !important;
        display: inline-block !important;
    }

    .ikon {
        position: absolute !important;
        cursor: default; /* Tıklanabilir görünümü kaldır */
        pointer-events: none; /* Tıklama olaylarını engelle */
        transition: all 0.2s ease;
        z-index: 10; /* Separator bölümünün üstünde kalması için */
    }

    /* Teknoloji İkonu */
    .teknoloji-ikon {
        width: 1.25em;
        height: auto;
        top: -0.3625em !important;
        left: -0.85em !important;
        transform: scale(0.8);
        position: absolute !important;
    }

    .teknoloji-ikon:hover {
        transform: scale(0.9);
    }

    /* Like İkonu */
    .like-ikon {
        width: 0.65em;
        height: auto;
        top: -0.0125em !important;
        left: -2.125em !important;
        transform: scale(1);
        position: absolute !important;
    }

    .like-ikon:hover {
        transform: scale(1.2);
    }

    /* AI İkonu */
    .ai-ikon {
      width: 0.8em;
        height: auto;
        top: -0.2625em !important;
        left: 2em !important;
        transform: scale(0.75);
        position: absolute !important;
    }

    .ai-ikon:hover {
        transform: scale(0.85);
    }

    /* Strateji İkonu */
    .strateji-ikon {
        width: 1.2em;
        height: auto;
        top: -0.2625em !important;
        left: 1.5375em !important;
        transform: scale(0.75);
        position: absolute !important;
    }

    .strateji-ikon:hover {
        transform: scale(0.85);
    }

    /* Anime-Gif İkonu */
    .anime-gif-ikon {
        width: 1em;
        height: auto;
        top: -0.2625em !important;
        left: 2.6375em !important;
        transform: scale(0.4125);
        position: absolute !important;
    }

    .anime-gif-ikon:hover {
        transform: scale(0.4675);
    }

    /* OK İkonu */
    .ok-ikon {
        width: 0.75em;
        height: auto;
        top: 1.2em !important;
        left: 1.9125em !important;
        transform: scale(3.24);
        position: absolute !important;
    }

    .ok-ikon:hover {
        transform: scale(3.67);
    }

    /* Fikir İkonu */
    .fikir-ikon {
        width: 0.875em;
        height: auto;
        top: 1.075em !important;
        left: -6.375em !important;
        transform: scale(0.9825);
        position: absolute !important;
    }

    .fikir-ikon:hover {
        transform: scale(1.1135);
    }

    /* Cozum İkonu */
    .cozum-ikon {
        width: 1.125em;
        height: auto;
        top: 1.0125em !important;
        left: 0.6125em !important;
        transform: scale(0.75);
        position: absolute !important;
    }

    .cozum-ikon:hover {
        transform: scale(0.85);
    }

    /* ===== HERO İKON POZİSYONLARI (Havas'ın gücü. Engage'in hızı.) ===== */
    /* Her iki sayfada da (ana sayfa + hakkımızda) geçerli */

    .hakkimizda-hero-title .teknoloji-ikon {
        top: 0.95em !important;
        left: -1.15em !important;
        transform: scale(0.8) !important;
    }

    .hakkimizda-hero-title .teknoloji-ikon:hover {
        transform: scale(0.9) !important;
    }

    .hakkimizda-hero-title .ai-ikon {
        top: -0.2em !important;
        left: 1.8em !important;
        transform: scale(0.75) !important;
    }

    .hakkimizda-hero-title .ai-ikon:hover {
        transform: scale(0.85) !important;
    }

    .hakkimizda-hero-title .anime-gif-ikon {
        top: -0.40em !important;
        left: -0.6em !important;
        transform: scale(0.4125) !important;
    }

    .hakkimizda-hero-title .anime-gif-ikon:hover {
        transform: scale(0.4675) !important;
    }

    .hakkimizda-hero-title .strateji-ikon {
        top: -0.35em !important;
        left: 2.2em !important;
        transform: scale(0.75) !important;
    }

    .hakkimizda-hero-title .strateji-ikon:hover {
        transform: scale(0.85) !important;
    }

    .hakkimizda-hero-title .ok-ikon {
        top: 1.2em !important;
        left: 3.2em !important;
        transform: scale(3.24) !important;
    }

    .hakkimizda-hero-title .ok-ikon:hover {
        transform: scale(3.67) !important;
    }

    .hakkimizda-hero-title .fikir-ikon {
        top: 1.1em !important;
        left: 1.5em !important;
        transform: scale(0.9825) !important;
    }

    .hakkimizda-hero-title .fikir-ikon:hover {
        transform: scale(1.1135) !important;
    }

    .hakkimizda-hero-title .like-ikon {
        top: -0.2em !important;
        left: -2.30em !important;
        transform: scale(1) !important;
    }

    .hakkimizda-hero-title .like-ikon:hover {
        transform: scale(1.2) !important;
    }

    .hakkimizda-hero-title .cozum-ikon {
        top: 1em !important;
        left: 1.5em !important;
        transform: scale(0.75) !important;
    }

    .hakkimizda-hero-title .cozum-ikon:hover {
        transform: scale(0.85) !important;
    }

    /* CTA Button */
    .hero-cta {
        margin-top: 3.8125em;
        margin-bottom: 60px;
        text-align: center;
    }

    .cta-button {
        background: white;
        color: #000;
        border: 1px solid #000;
        width: 232px !important; /* 1920px ve üzeri için genişlik */
        height: 74px !important; /* 1920px ve üzeri için yükseklik */
        padding: 0 !important;
        border-radius: 50px !important;
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-weight: 500;
        font-size: 18px;
        letter-spacing: 0.8px;
        cursor: pointer;
        transition: all 0.2s ease;
        transform: scale(1);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
        min-height: 74px;
        min-width: 232px;
    }

    .cta-button:hover {
        background: #000;
        color: white;
        transform: scale(1.05) translateY(-2px); /* Slightly bigger on hover */
    }

    /* ========================================
    DESKTOP & TABLET BUTTON STYLES
    ======================================== */

    /* Make both buttons same size on desktop/tablet */
    @media (min-width: 769px) {
        .hero-cta {
            margin-top: calc(3.8125em + 8px) !important; /* Add 4px to existing margin */
        }
        
        .hero-cta a {
            background: white !important;
            color: #000 !important;
            border: 1px solid #000 !important;
            width: 232px !important; /* 1920px ve üzeri için genişlik */
            height: 74px !important; /* 1920px ve üzeri için yükseklik */
            padding: 0 !important;
            border-radius: 50px !important;
            font-family: 'Plus Jakarta Sans', sans-serif !important;
            font-weight: 500 !important;
            font-size: 18px !important;
            letter-spacing: 0.8px !important;
            line-height: 1 !important;
            text-decoration: none !important;
            display: inline-flex !important;
            align-items: center !important;
            justify-content: center !important;
            cursor: pointer !important;
            transition: all 0.3s ease !important;
            transform: scale(1) !important;
            box-sizing: border-box !important;
            min-height: 74px !important;
            min-width: 232px !important;
        }
        
        .hero-cta a:hover {
            background: #000 !important;
            color: white !important;
            transform: scale(1.05) translateY(-2px) !important;
        }
    }

    /* ========================================
    iPad Pro & Similar Tablet SPECIFIC
    ======================================== */

    /* Fix button mismatch at 1024px (iPad Pro) */
    @media (max-width: 1024px) and (min-width: 769px) {
        /* Button sizes handled by specific responsive rules */
        
        /* Button sizes handled by specific responsive rules */
        
        .cta-button:hover,
        .hero-cta a:hover {
            background: #000 !important;
            color: white !important;
            transform: scale(1.0) translateY(-2px) !important;
        }
    }

    /* ========================================
    RESPONSIVE SCALING
    ======================================== */



    @media (max-width: 1200px) {
        .hero-title-container {
            width: 900px;
        }

        .hero-description {
            margin-top: -10px;
        }
        .hero-description p {
            max-width: 700px; /* Daha geniş */
        }
        
        .hero-text {
            padding-top: 50px !important;
            padding-bottom: 0 !important; /* Remove bottom padding */
        }
    }

    @media (max-width: 1024px) {
        .hero-title-container {
            width: 900px; /* 800px'den 900px'e artır */
        }

        .hero-description {
            margin-top: -10px;
        }
        .hero-description p {
            max-width: 650px; /* Daha geniş */
        }
        
        .hero-text {
            padding-top: 40px !important;
            padding-bottom: 40px !important; /* Alt padding ekle - iconlar için alan */
        }
        
        /* Hero main 1024px için daha yüksek */
        .hero-main {
            height: 350px !important; /* Daha yüksek - iconlar için alan */
        }

    }

    @media (max-width: 768px) {
        .hero-title-container {
            width: 100%;
            max-width: 600px;
        }
        .hero-description {
            margin-top: -10px;
        }
        .hero-description p {
            font-size: 16px; /* Reduced font size to fit 2 lines */
            max-width: 500px !important; /* Daha geniş - 2 satır için */
            line-height: 1.3; /* Tighter line height */
        }
        .teknoloji-ikon {
            transform: scale(1.35) translateX(2px);
        }
        .teknoloji-ikon:hover {
            transform: scale(1.58) translateX(2px);
        }
        .like-ikon {
            transform: scale(1.3) translateX(2px);
        }
        .like-ikon:hover {
            transform: scale(1.46) translateX(2px);
        }
        .first-line, .second-line {
            gap: 0.18em;
        }
    }

    /* Mobile Header Responsive */
    @media (max-width: 768px) {
        .header {
            padding: 25px 0; /* Üst ve alt 25px */
        }
        
        .header.scrolled {
            padding: 15px 0; /* Scroll durumunda biraz daha az */
        }
        
        /* Header container için sol ve sağ 25px boşluk */
        .header .container {
            padding-left: 25px !important;
            padding-right: 25px !important;
        }
        
        .logo-image {
            height: 52px; /* Mobil için yükseklik */
            width: 120px; /* Mobil için genişlik (52 * 2.3) */
        }
        
        .mobile-menu-toggle img {
            width: 24px;
            height: 12px;
        }
        
        body {
            padding-top: 0;
        }
    }

    /* 430px ve altı için logo boyutu ve header boşluk */
    @media (max-width: 430px) {
        .logo-image {
            height: 52px !important;
            width: 120px !important;
        }
        
        /* Header container için 430px ve altı */
        .header .container {
            padding-left: 25px !important;
            padding-right: 25px !important;
        }
    }

    /* 375px ve altı için logo boyutu ve header boşluk */
    @media (max-width: 375px) {
        .logo-image {
            height: 47px !important;
            width: 110px !important;
        }
        
        /* Header container için 375px ve altı */
        .header .container {
            padding-left: 25px !important;
            padding-right: 25px !important;
        }
    }

    @media (min-width: 376px) and (max-width: 480px) {
        .container {
            padding: 0 8px !important; /* 15px'den 8px'e azalt - daha fazla alan */
            width: 100% !important;
            max-width: 100% !important;
        }
        
        /* Header container için 376-480px */
        .header .container {
            padding-left: 25px !important;
            padding-right: 25px !important;
        }
        
        /* Mobile hero description - different text and styling */
        .hero-description .desktop-text {
            display: none !important;
        }
        
        .hero-description .mobile-text {
            display: block !important;
            font-size: 16px !important;
            line-height: 24px !important;
            max-width: 500px !important; /* 2 satır için geniş */
        }
        
        /* Mobile hero main - different text and styling */
        .hero-title .desktop-title {
            display: none !important;
        }
        
        .hero-title .mobile-title {
            display: block !important;
            font-size: 50px !important;
            line-height: 65px !important;
            margin: 0 !important; /* Tüm margin'leri kaldır */
            padding: 0 !important; /* Tüm padding'leri kaldır */
            width: 100% !important; /* Tam genişlik kullan */
            max-width: none !important; /* Max-width sınırını kaldır */
        }
        
        .mobile-title .mobile-line {
            display: block;
            position: relative;
        }
        
        /* Mobile icons positioned independently */
        /* GEÇİCİ: Mobil ikonlar gizlendi - tekrar göstermek için display: none satırını kaldırın */
        .mobile-ikon {
            display: none !important; /* GEÇİCİ - ikonları gizle */
            position: absolute !important;
            height: 30px !important;
            width: auto !important;
            z-index: 10 !important;
            cursor: default !important; /* Tıklanabilir görünümü kaldır */
            pointer-events: none !important; /* Tıklama olaylarını engelle */
        }
        
        /* Specific positioning for each mobile icon */
            .mobile-anime-ikon {
        top: 5px !important; /* 5px yukarıya (10px -> 5px) */
        right: -4px !important; /* 10px daha sağa (6px -> -4px) */
    }
        
        .mobile-like-ikon {
            top: 135px !important; /* 10px daha aşağıya (125px -> 135px) */
            right: -5px !important; /* 10px daha sağa (5px -> -5px) */
            height: 51px !important; /* %30 daha büyük (39px * 1.3 = 51px) */
        }
        
            .mobile-ok-ikon {
        bottom: 100px !important; /* 20px yukarıya (80px -> 100px) */
        right: 340px !important; /* 5px daha sağa (377px -> 372px) */
    }
        

        
        /* Hero title container için genişlik optimizasyonu - 376-480px */
        .hero-title-container {
            width: 100% !important; /* Tam genişlik kullan */
            max-width: none !important; /* Max-width sınırını kaldır */
            transform: none !important; /* Scale transform'unu kaldır */
        }
        
        /* Hero title için genişlik optimizasyonu - 376-480px */
        .hero-title {
            width: 100% !important; /* Tam genişlik kullan */
            max-width: none !important; /* Max-width sınırını kaldır */
            transform: none !important; /* Scale transform'unu kaldır */
        }
        
        /* Mobile separator section height adjustment */
        .separator-section {
            height: 100px; /* Mobilde daha az yükseklik - !important kaldırıldı */
            padding: 20px 0 20px 0; /* Daha az padding - !important kaldırıldı */
        }
        
        /* Mobile button sizes - 376-480px */
        .new-hakkimizda-button,
        .new-tum-projeler-button {
            width: 152px !important;
            height: 42px !important;
            font-size: 14px !important;
            line-height: 120% !important;
        }
    }

    /* Çok küçük ekranlar için özel ayarlar (320px - 349px) */
    @media (min-width: 320px) and (max-width: 349px) {
        /* Container padding - maksimum genişlik için */
        .container {
            padding: 0 3px !important; /* Minimum padding */
            width: 100% !important;
            max-width: 100% !important;
        }
        
        /* Hero description spacing - 320-349px için eşit boşluk */
        .hero-description {
            margin-top: 24px !important; /* Hero title'dan 24px boşluk */
            margin-bottom: 24px !important; /* HAKKIMIZDA butonuna 24px boşluk */
        }
        
        /* Mobile hero main - different text and styling */
        .hero-title .desktop-title {
            display: none !important;
        }
        
        body .hero-title .mobile-title {
            display: block !important;
            font-size: 36px !important; /* 320-349px için 36px */
            line-height: 42px !important; /* Line height'i ayarla */
            width: 100% !important; /* Tam genişlik kullan */
            max-width: none !important; /* Max-width sınırını kaldır */
            margin: 0 !important; /* Tüm margin'leri kaldır */
            padding: 0 !important; /* Tüm padding'leri kaldır */
            letter-spacing: -2px !important; /* Mobil letter-spacing */
            margin-bottom: 24px !important;
        }
        
        body .mobile-title .mobile-line {
            display: block;
            position: relative;
            width: 100% !important; /* Her satır tam genişlik kulansın */
            text-align: center !important; /* Merkeze yasla */
            margin: 0 !important; /* Margin'leri sıfırla */
            padding: 0 !important; /* Padding'leri sıfırla */
            font-size: 36px !important; /* 320-349px için 36px - ekstra güvence */
            line-height: 42px !important; /* Line height'i ayarla - ekstra güvence */
            letter-spacing: -2px !important; /* Mobil letter-spacing */
        }
        
        /* Hero main optimizasyonu */
        body .hero-main {
            height: 40px !important; /* Çok küçük ekranlar için daha az yükseklik */
            transform: none !important; /* Scale transform'unu kaldır */
            width: 100% !important; /* Tam genişlik kullan */
            max-width: none !important; /* Max-width sınırını kaldır */
        }
        
        /* Hero title container için genişlik optimizasyonu */
        .hero-title-container {
            width: 100% !important; /* Tam genişlik kullan */
            max-width: none !important; /* Max-width sınırını kaldır */
            margin: 0 !important; /* Margin'leri sıfırla */
            transform: none !important; /* Scale transform'unu kaldır */
        }
        
        /* Hero title için genişlik optimizasyonu */
        .hero-title {
            width: 100% !important; /* Tam genişlik kullan */
            max-width: none !important; /* Max-width sınırını kaldır */
            text-align: center !important; /* Merkeze yasla */
            justify-content: center !important; /* İçeriği merkeze yasla */
            align-items: center !important; /* İçeriği merkeze yasla */
            transform: none !important; /* Scale transform'unu kaldır */
        }
        
        /* Mobile icons için 320-349px - %10 küçültülmüş */
        .mobile-ikon {
            position: absolute !important;
            height: 23px !important; /* 25px'den %10 küçük (22.5px → 23px) */
            width: auto !important;
            z-index: 10 !important;
            cursor: default !important; /* Tıklanabilir görünümü kaldır */
            pointer-events: none !important; /* Tıklama olaylarını engelle */
        }
        
        /* Spesifik görseller için küçültme */
        img[src*="like.png"].mobile-ikon,
        img[src*="anime-gif.svg"].mobile-ikon {
            height: 23px !important; /* %10 küçük */
            width: auto !important;
        }
        
        /* Red-OK görseli %30 küçük */
        img[src*="red-ok.svg"].mobile-ikon {
            height: 16px !important; /* 23px'den %30 küçük (16.1px → 16px) */
            width: auto !important;
        }
        
        /* Like ikonu pozisyonu - ilk kural */
        .mobile-ikon.mobile-like-ikon,
        img.mobile-ikon.mobile-like-ikon,
        img[src*="like.png"].mobile-ikon {
            top: 101px !important; /* 10px yukarı */
            right: 7px !important;
            height: 38px !important; /* 42px'den %10 küçük (37.8px → 38px) */
            position: absolute !important;
            z-index: 10 !important;
        }
        
        /* HAKKIMIZDA butonu 320-349px için */
        .new-hakkimizda-button {
            width: 152px !important;
            height: 42px !important;
            font-size: 14px !important;
            line-height: 120% !important;
        }
        
        /* TÜM PROJELER butonu 320-349px için */
        .new-tum-projeler-button {
            width: 152px !important;
            height: 42px !important;
            font-size: 14px !important;
            line-height: 120% !important;
        }
        
        /* Separator section 320-349px için - minimum boşluk */
        .separator-section {
            height: 22px !important; /* 42px buton + 10px minimum = 52px */
            padding: 0 !important; /* Padding'i sıfırla */
            margin-top: 5px !important; /* Üstten 5px margin - minimum */
        }
        
                /* Separator content 320-349px için - minimum boşluk */
        .separator-content {
            align-items: center !important; /* Butonu merkeze yasla */
            padding: 0 !important; /* Padding tamamen kaldır */
            height: 100% !important; /* Tam yükseklik kullan */
            box-sizing: border-box !important;
        }
    }

    /* 350px - 374px arası için özel ayarlar */
    @media (min-width: 350px) and (max-width: 374px) {
        /* Container padding - maksimum genişlik için */
        .container {
            padding: 0 4px !important; /* Minimum padding */
            width: 100% !important;
            max-width: 100% !important;
        }
        
        /* Hero description spacing - 350-374px için azaltılmış boşluk */
        .hero-description {
            margin-top: 24px !important; /* Hero title'dan 24px boşluk */
            margin-bottom: 12px !important; /* HAKKIMIZDA butonuna 12px boşluk (45px için) */
        }
        
        /* Separator content 350-374px için - 375px kuralını ez */
        body .separator-content {
            align-items: center !important;
            padding: 20px 0 45px 0 !important; /* Üst 20px, alt 45px */
            height: 100% !important;
            box-sizing: border-box !important;
        }
        
        /* Mobile hero main - different text and styling */
        .hero-title .desktop-title {
            display: none !important;
        }
        
        body .hero-title .mobile-title,
        .hero-title .mobile-title {
            display: block !important;
            font-size: 40px !important; /* 350-374px için 40px */
            line-height: 46px !important; /* Line height'i ayarla */
            width: 100% !important; /* Tam genişlik kullan */
            max-width: none !important; /* Max-width sınırını kaldır */
            margin: 0 !important; /* Tüm margin'leri kaldır */
            padding: 0 !important; /* Tüm padding'leri kaldır */
            letter-spacing: -2px !important; /* Mobil letter-spacing */
        }
        
        body .mobile-title .mobile-line,
        .mobile-title .mobile-line {
            display: block;
            position: relative;
            width: 100% !important; /* Her satır tam genişlik kulansın */
            text-align: center !important; /* Merkeze yasla */
            margin: 0 !important; /* Margin'leri sıfırla */
            padding: 0 !important; /* Padding'leri sıfırla */
            font-size: 40px !important; /* 350-374px için 40px */
            line-height: 46px !important; /* Line height'i ayarla */
            letter-spacing: -2px !important; /* Mobil letter-spacing */
        }
        
        /* Hero main optimizasyonu */
        body .hero-main {
            height: 45px !important; /* 350-374px için yükseklik */
            transform: none !important; /* Scale transform'unu kaldır */
            width: 100% !important; /* Tam genişlik kullan */
            max-width: none !important; /* Max-width sınırını kaldır */
        }
        
        /* Hero title container için genişlik optimizasyonu */
        .hero-title-container {
            width: 100% !important; /* Tam genişlik kullan */
            max-width: none !important; /* Max-width sınırını kaldır */
            margin: 0 !important; /* Margin'leri sıfırla */
            transform: none !important; /* Scale transform'unu kaldır */
        }
        
        /* Hero title için genişlik optimizasyonu */
        .hero-title {
            width: 100% !important; /* Tam genişlik kullan */
            max-width: none !important; /* Max-width sınırını kaldır */
            text-align: center !important; /* Merkeze yasla */
            justify-content: center !important; /* İçeriği merkeze yasla */
            align-items: center !important; /* İçeriği merkeze yasla */
            transform: none !important; /* Scale transform'unu kaldır */
        }
        
        /* Mobile icons için 350-374px */
        .mobile-ikon {
            position: absolute !important;
            height: 24px !important; /* Biraz daha büyük */
            width: auto !important;
            z-index: 10 !important;
            cursor: default !important; /* Tıklanabilir görünümü kaldır */
            pointer-events: none !important; /* Tıklama olaylarını engelle */
        }
        
        /* Like ikonu pozisyonu - 5px aşağı ve 5px sola */
        .mobile-ikon.mobile-like-ikon,
        img.mobile-ikon.mobile-like-ikon,
        img[src*="like.png"].mobile-ikon,
        img[src="assets/images/like.png"] {
            top: 110px !important; /* 105px + 5px aşağı = 110px */
            right: 12px !important; /* 7px + 5px sola = 12px */
            height: 40px !important;
            position: absolute !important;
            z-index: 10 !important;
        }
        
        /* OK ikonu 350-374px için 10px sağa kaydır */
        .mobile-ok-ikon,
        img.mobile-ikon.mobile-ok-ikon,
        img[src*="red-ok.svg"] {
            bottom: 85px !important;
            right: 315px !important; /* 280px'den 10px sağa (280px - 10px = 270px) */
            position: absolute !important;
            z-index: 10 !important;
            height: 18px !important;
            width: auto !important;
        }
    }

    /* 375px - 429px arası için özel ayarlar */
    @media (min-width: 375px) and (max-width: 429px) {
        /* Mobile hero main - different text and styling */
        .hero-title .desktop-title {
            display: none !important;
        }
        
        body .hero-title .mobile-title,
        .hero-title .mobile-title {
            display: block !important;
            font-size: 45px !important; /* 375-429px için 45px */
            line-height: 52px !important; /* Line height'i ayarla */
            width: 100% !important; /* Tam genişlik kullan */
            max-width: none !important; /* Max-width sınırını kaldır */
            margin: 0 !important; /* Tüm margin'leri kaldır */
            padding: 0 !important; /* Tüm padding'leri kaldır */
            letter-spacing: -2px !important; /* Mobil letter-spacing */
        }
        
        body .mobile-title .mobile-line,
        .mobile-title .mobile-line {
            display: block;
            position: relative;
            width: 100% !important; /* Her satır tam genişlik kulansın */
            text-align: center !important; /* Merkeze yasla */
            margin: 0 !important; /* Margin'leri sıfırla */
            padding: 0 !important; /* Padding'leri sıfırla */
            font-size: 45px !important; /* 375-429px için 45px */
            line-height: 52px !important; /* Line height'i ayarla */
            letter-spacing: -2px !important; /* Mobil letter-spacing */
        }
        

        
        /* Hero title container için genişlik optimizasyonu */
        .hero-title-container {
            width: 100% !important; /* Tam genişlik kullan */
            max-width: none !important; /* Max-width sınırını kaldır */
            transform: none !important; /* Scale transform'unu kaldır */
        }
        
        /* Hero title için genişlik optimizasyonu */
        .hero-title {
            width: 100% !important; /* Tam genişlik kullan */
            max-width: none !important; /* Max-width sınırını kaldır */
            transform: none !important; /* Scale transform'unu kaldır */
        }
        
        /* Like ikonu 375-429px için 5px aşağı 2px sola */
        .mobile-ikon.mobile-like-ikon,
        img.mobile-ikon.mobile-like-ikon,
        img[src*="like.png"].mobile-ikon,
        img[src="assets/images/like.png"] {
            top: 101px !important; /* 96px + 5px aşağı = 101px */
            right: 9px !important; /* 7px + 2px sola = 9px */
            position: absolute !important;
            z-index: 10 !important;
        }
        
        /* Red-OK ikonu 375-429px için 5px yukarı */
        .mobile-ok-ikon,
        img.mobile-ikon.mobile-ok-ikon,
        img[src*="red-ok.svg"],
        img[src="assets/images/red-ok.svg"] {
            bottom: 85px !important; /* 70px + 5px yukarı = 75px */
            position: absolute !important;
            z-index: 10 !important;
        }
    }

    /* 393px çözünürlük için özel icon ayarları (iPhone 15) */
    @media (min-width: 393px) and (max-width: 393px) {
        /* Red-OK ikonu 393px için 10px sağa ve height 22px */
        .mobile-ok-ikon,
        img.mobile-ikon.mobile-ok-ikon,
        img[src*="red-ok.svg"],
        img[src="assets/images/red-ok.svg"] {
            right: 345px !important; /* 280px - 10px sağa = 270px */
            height: 22px !important; /* 393px için özel height */
            width: auto !important;
            position: absolute !important;
            z-index: 10 !important;
        }
        
        /* Anime-gif ikonu 393px için 4px sola */
        .mobile-anime-ikon,
        img.mobile-ikon.mobile-anime-ikon,
        img[src*="anime-gif.svg"],
        img[src="assets/images/anime-gif.svg"] {
            right: 8px !important; /* -4px + 4px sola = -8px */
            position: absolute !important;
            z-index: 10 !important;
        }
        
        /* Like ikonu 393px için 4px aşağı */
        .mobile-ikon.mobile-like-ikon,
        img.mobile-ikon.mobile-like-ikon,
        img[src*="like.png"].mobile-ikon,
        img[src="assets/images/like.png"] {
            top: 105px !important; /* 101px + 4px aşağı = 105px */
            position: absolute !important;
            z-index: 10 !important;
        }
        
        /* Separator section 393px için - daha güçlü kural */
        body .separator-section {
            height: 200px !important;
            padding: 0 !important;
            margin-top: 20px !important;
        }
        
        /* Separator content 393px için - daha güçlü kural */
        body .separator-content {
            align-items: center !important;
            padding: 105px 0 45px 0 !important;
            height: 100% !important;
            box-sizing: border-box !important;
        }
    }

    /* 430px çözünürlük için özel ayarlar */
    @media (min-width: 430px) and (max-width: 430px) {
        /* Container padding */
        .container {
            padding: 0 8px !important;
            width: 100% !important;
            max-width: 100% !important;
        }
        
        /* Mobile hero main - different text and styling */
        .hero-title .desktop-title {
            display: none !important;
        }
        
        body .hero-title .mobile-title,
        .hero-title .mobile-title {
            display: block !important;
            font-size: 50px !important; /* 430px için 50px */
            line-height: 58px !important; /* Line height'i ayarla */
            width: 100% !important; /* Tam genişlik kullan */
            max-width: none !important; /* Max-width sınırını kaldır */
            margin: 0 !important; /* Tüm margin'leri kaldır */
            padding: 0 !important; /* Tüm padding'leri kaldır */
            letter-spacing: -2px !important; /* Mobil letter-spacing */
        }
        
        body .mobile-title .mobile-line,
        .mobile-title .mobile-line {
            display: block;
            position: relative;
            width: 100% !important; /* Her satır tam genişlik kulansın */
            text-align: center !important; /* Merkeze yasla */
            margin: 0 !important; /* Margin'leri sıfırla */
            padding: 0 !important; /* Padding'leri sıfırla */
            font-size: 50px !important; /* 430px için 50px */
            line-height: 58px !important; /* Line height'i ayarla */
            letter-spacing: -2px !important; /* Mobil letter-spacing */
        }
        
        /* Hero main optimizasyonu */
        body .hero-main {
            transform: none !important; /* Scale transform'unu kaldır */
            width: 100% !important; /* Tam genişlik kullan */
            max-width: none !important; /* Max-width sınırını kaldır */
        }
        
        /* Hero title container için genişlik optimizasyonu */
        .hero-title-container {
            width: 100% !important; /* Tam genişlik kullan */
            max-width: none !important; /* Max-width sınırını kaldır */
            transform: none !important; /* Scale transform'unu kaldır */
        }
        
        /* Hero title için genişlik optimizasyonu */
        .hero-title {
            width: 100% !important; /* Tam genişlik kullan */
            max-width: none !important; /* Max-width sınırını kaldır */
            transform: none !important; /* Scale transform'unu kaldır */
        }
        
        /* Like ikonu 430px için 4px aşağı */
        .mobile-ikon.mobile-like-ikon,
        img.mobile-ikon.mobile-like-ikon,
        img[src*="like.png"].mobile-ikon,
        img[src="assets/images/like.png"] {
            top: 120px !important; /* 101px + 4px aşağı = 105px */
            right: 22px !important;
            position: absolute !important;
            z-index: 10 !important;
        }
        
        /* Red-OK ikonu 430px için 10px sağa ve %20 küçük */
        .mobile-ok-ikon,
        img.mobile-ikon.mobile-ok-ikon,
        img[src*="red-ok.svg"],
        img[src="assets/images/red-ok.svg"] {
            right: 375px !important; /* 280px - 10px sağa = 270px */
            height: 24px !important; /* 18px'den %20 küçük (14.4px → 14px) */
            width: auto !important;
            position: absolute !important;
            z-index: 10 !important;
        }
        
        /* Anime-gif ikonu 430px için 5px sola */
        .mobile-anime-ikon,
        img.mobile-ikon.mobile-anime-ikon,
        img[src*="anime-gif.svg"],
        img[src="assets/images/anime-gif.svg"] {
            right: 21px !important; /* -4px + 5px sola = -9px */
            position: absolute !important;
            z-index: 10 !important;
        }
        
        /* Separator section 430px için - butonun yazıdan ayrılması */
        .separator-section {
            height: 110px !important; /* 430px için standart height */
            padding: 0 !important;
            margin-top: 25px !important; /* Yazıdan biraz uzaklaştır */
        }
        
        /* Separator content 430px için */
        .separator-content {
            align-items: center !important;
            padding: 20px 0 20px 0 !important; /* Üst ve alt 20px boşluk */
            height: 100% !important;
            box-sizing: border-box !important;
        }
        
        /* HAKKIMIZDA butonu 430px için */
        body .separator-section .new-hakkimizda-button,
        body .new-hakkimizda-button {
            width: 152px !important;
            height: 42px !important;
            font-size: 14px !important;
            line-height: 120% !important;
        }
    }

    /* iPhone SE ve küçük ekranlar için özel ayarlar (375px ve altı) */
    @media (max-width: 375px) {
        /* Container padding - daha geniş alan için padding azalt */
        .container {
            padding: 0 5px !important; /* 10px'den 5px'e azalt - maksimum genişlik için */
            width: 100% !important;
            max-width: 100% !important;
        }
        
        /* Hero text section spacing */
        .hero-text {
            padding-top: 10px !important; /* Üst boşluğu azalt */
        }
        
        /* Hero description spacing - 320-349px için eşit boşluk */
        .hero-description {
            margin-top: 24px !important; /* Hero title'dan 24px boşluk */
            margin-bottom: 24px !important; /* HAKKIMIZDA butonuna 24px boşluk */
        }
        
        /* Mobile hero description - different text and styling */
        .hero-description .desktop-text {
            display: none !important;
        }
        
        .hero-description .mobile-text {
            display: block !important;
            font-size: 16px !important;
            line-height: 24px !important;
            max-width: 500px !important; /* 2 satır için geniş */
        }
        
        /* Mobile hero main - different text and styling */
        .hero-title .desktop-title {
            display: none !important;
        }
        
        .hero-title .mobile-title {
            display: block !important;
            font-size: 49px !important; /* 45px'den 49px'e artır */
            line-height: 58px !important; /* Line height'i da artır */
            width: 100% !important; /* Tam genişlik kullan */
            max-width: none !important; /* Max-width sınırını kaldır */
            margin: 0 !important; /* Tüm margin'leri kaldır */
            padding: 0 !important; /* Tüm padding'leri kaldır */
            letter-spacing: -2px !important; /* Mobil letter-spacing */
        }
        
        .mobile-title .mobile-line {
            display: block;
            position: relative;
            width: 100% !important; /* Her satır tam genişlik kulansın */
            text-align: center !important; /* Merkeze yasla */
            margin: 0 !important; /* Margin'leri sıfırla */
            padding: 0 !important; /* Padding'leri sıfırla */
            letter-spacing: -2px !important; /* Mobil letter-spacing */
        }
        
        /* Mobile icons for iPhone SE - smaller and adjusted positions */
        .mobile-ikon {
            position: absolute !important;
            height: 25px !important; /* iPhone SE için daha küçük */
            width: auto !important;
            z-index: 10 !important;
            cursor: default !important; /* Tıklanabilir görünümü kaldır */
            pointer-events: none !important; /* Tıklama olaylarını engelle */
        }
        
        /* iPhone SE specific positioning */
            .mobile-anime-ikon {
        top: 3px !important; /* 5px yukarıya (8px -> 3px) */
        right: 19px !important; /* 4px daha sağa (12px -> 8px) */
    }
        
        .mobile-like-ikon {
            top: 101px !important; /* 10px yukarı - 320-349px ile uyumlu */
            right: 7px !important; /* 3px daha sağa (10px -> 7px) */
            height: 42px !important; /* %30 daha büyük (32px * 1.3 = 42px) */
        }
        
        /* Ekstra güçlü kural - 375px altı için */
        img[src="assets/images/like.png"].mobile-ikon.mobile-like-ikon {
            top: 110px !important;
            right: 19px !important;
            position: absolute !important;
            z-index: 10 !important;
        }
        
            .mobile-ok-ikon {
        bottom: 85px !important; /* 10px daha aşağıya (85px -> 75px) */
        right: 335px !important; /* 5px daha sola (330px -> 335px) */
    }
        
        /* Red-OK ikonu 375px için height 20px */
        .mobile-ok-ikon,
        img.mobile-ikon.mobile-ok-ikon,
        img[src*="red-ok.svg"],
        img[src="assets/images/red-ok.svg"] {
            height: 20px !important; /* 375px için 20px */
            right: 330px !important;
            width: auto !important;
            position: absolute !important;
            z-index: 10 !important;
        }
        
        /* Hero main 375px için - buton ile arasında boşluk */
        body .hero-main {
            height: 100px !important; /* 375px için daha fazla yükseklik - buton ile arasında boşluk */
            transform: none !important; /* Scale transform'unu kaldır */
            width: 100% !important; /* Tam genişlik kullan */
            max-width: none !important; /* Max-width sınırını kaldır */
        }
        
        /* Hero title container için genişlik optimizasyonu */
        .hero-title-container {
            width: 100% !important; /* Tam genişlik kullan */
            max-width: none !important; /* Max-width sınırını kaldır */
            margin: 0 !important; /* Margin'leri sıfırla */
            transform: none !important; /* Scale transform'unu kaldır */
        }
        
        /* Hero title için genişlik optimizasyonu */
        .hero-title {
            width: 100% !important; /* Tam genişlik kullan */
            max-width: none !important; /* Max-width sınırını kaldır */
            text-align: center !important; /* Merkeze yasla */
            justify-content: center !important; /* İçeriği merkeze yasla */
            align-items: center !important; /* İçeriği merkeze yasla */
            transform: none !important; /* Scale transform'unu kaldır */
        }
        
        /* Separator section 375px için - buton üst ve alt boşluk */
        body .separator-section {
            height: 120px !important; /* 375px için yüksekliği artır */
            padding: 0 !important; /* Padding'i sıfırla, separator-content'te ayarlayacağız */
            margin-top: 20px !important; /* Üstten 20px margin */
        }
        
        /* Separator content 375px için - üst ve alt boşluk (350px üstü için) */
        body .separator-content {
            align-items: center !important; /* Butonu merkeze yasla */
            padding: 25px 0 45px 0 !important; /* Üst ve alt 45px boşluk */
            height: 100% !important; /* Tam yükseklik kullan */
            box-sizing: border-box !important;
        }
    }

    /* 320-349px için separator override - 375px kurallarını ezsin */
    @media (min-width: 320px) and (max-width: 349px) {
        body .separator-section {
            height: 100px !important; /* 320px için yüksekliği artır */
            padding: 0 !important;
            margin-top: 0px !important; /* Margin sıfır - hero-description margin-bottom kullan */
        }
        
        body .separator-content {
            align-items: center !important; /* Butonu merkeze yasla */
            padding: 3px 0 25px 0 !important; /* 320px için üst alt padding */
            height: 100% !important; /* Tam yükseklik kullan */
            box-sizing: border-box !important;
        }
        
        /* Red OK icon 320px için özel konum - 375px'i ezmesin */
        .mobile-ok-ikon, img.mobile-ikon.mobile-ok-ikon, img[src*="red-ok.svg"] {
            bottom: 70px !important;
            right: 275px !important;
            position: absolute !important;
            z-index: 10 !important;
            height: 18px !important;
            width: auto !important;
            top: 45px !important;
        }
        
        /* HAKKIMIZDA butonu 320-349px için boyut override - güçlü kural */
        body .separator-section .new-hakkimizda-button,
        body .new-hakkimizda-button {
            width: 152px !important;
            height: 42px !important;
            font-size: 14px !important;
            line-height: 120% !important;
        }
        
        /* TÜM PROJELER butonu 320-349px için boyut override - güçlü kural */
        body .projects-button-section .new-tum-projeler-button,
        body .new-tum-projeler-button {
            width: 152px !important;
            height: 42px !important;
            font-size: 14px !important;
            line-height: 120% !important;
        }
        
        /* Hero CTA 375px için - yazıdan sonra boşluk */
        .hero-cta {
            margin-top: 50px !important; /* Yazıdan sonra daha fazla boşluk */
            margin-bottom: 30px !important; /* Alt boşluk */
        }
        
        /* HAKKIMIZDA butonu 375px için boyut override - güçlü kural */
        body .separator-section .new-hakkimizda-button,
        body .new-hakkimizda-button {
            width: 152px !important;
            height: 42px !important;
            font-size: 14px !important;
            line-height: 120% !important;
        }
        
        /* TÜM PROJELER butonu 375px için boyut override - güçlü kural */
        body .projects-button-section .new-tum-projeler-button,
        body .new-tum-projeler-button {
            width: 152px !important;
            height: 42px !important;
            font-size: 14px !important;
            line-height: 120% !important;
        }
        
        /* Six images section spacing - güçlü kural */
        body .six-images-section {
            margin-top: -50px !important; /* Buton ile alt görsel arasında daha fazla beyaz boşluk */
            background: white !important; /* Siyah background'u kaldır */
            padding-top: 10px !important; /* Üst padding artır - ilk görselin tam görünmesi için */
            position: relative !important; /* Z-index için */
            z-index: 1 !important; /* Separator'ın altında kal */
        }
        

        
        /* Button mobil standart boyut - güçlü kural */
        body .new-hakkimizda-button,
        body .new-tum-projeler-button {
            width: 152px !important;
            height: 42px !important;
            font-size: 14px !important;
            line-height: 120% !important;
        }
    }

    /* iPhone 13/14 Pro Max için özel ayarlar (376px - 430px) */
    @media (min-width: 376px) and (max-width: 430px) {
        /* Hero description font size */
        .hero-description .mobile-text {
            font-size: 16px !important;
            line-height: 24px !important;
            max-width: 500px !important; /* 2 satır için geniş */
        }
        
        /* Separator section aşağıya çek ve yükseklik artır */
        .separator-section {
            height: 200px !important;
            padding: 90px 0 60px 0 !important;
            margin-top: 50px !important;
        }
        
        /* Six images section yukarı çek */
        .six-images-section {
            margin-top: -40px !important; /* -20px'den -40px'e (2 kat) */
        }
        .hero-text {
            padding: 2px 0 0px 0 !important; /* Ultra minimal top padding */
            margin-bottom: -43px !important; /* 10% more increased from previous */
            min-height: auto !important; /* Remove any min-height constraints */
            height: auto !important; /* Let content determine height */
            max-height: 190px !important; /* 10% more increased maximum height */
            width: 100% !important;
            max-width: 100% !important;
        }
        
        .logo-image {
            height: 52px; /* Mobil için yükseklik */
            width: 120px; /* Mobil için genişlik (52 * 2.3) */
        }
        
        .mobile-menu-toggle img {
            width: 24px;
            height: 12px;
        }
        
        html, body {
            padding-top: 0;
            width: 100% !important;
            max-width: 100% !important;
            overflow-x: hidden !important;
        }
        .hero-title-container {
            width: 100%;
            max-width: 100% !important;
        }
        .hero-description {
            margin-top: 25px !important; /* More space from slider */
            margin-bottom: 19px !important; /* 5px more bottom margin */
        }
        .hero-text .hero-description p {
            font-size: 16px !important; /* 16px for iPhone 13/14 */
            max-width: 380px !important; /* Daha geniş - 2 satır için */
            line-height: 24px !important; /* 24px line height */
            width: 100% !important; /* Full width within container */
        }
        .teknoloji-ikon {
            transform: scale(0.9) translateX(2px);
        }
        .teknoloji-ikon:hover {
            transform: scale(1.13) translateX(2px);
        }
        .like-ikon {
            transform: scale(0.98) translateX(2px);
        }
        .like-ikon:hover {
            transform: scale(1.14) translateX(2px);
        }
        .hero-title {
            gap: 0.05em;
        }
        .first-line, .second-line {
            gap: 0.15em;
        }
    }

    /* Separator Section */
    .separator-section {
        background: white;
        height: 154px; /* 1920px+ için: 74px buton + 30px üst + 50px alt = 154px */
        width: 100%;
        margin: 0;
        padding: 70px 0 150px 0; /* Üst 30px, alt 50px padding */
        position: relative;
        z-index: 50; /* Hero alanının üstünde kalması için yüksek z-index */
        box-sizing: border-box;
        overflow: visible; /* Butonun hover hareketine izin ver */
    }

    .separator-content {
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: visible; /* Butonun hover hareketine izin ver */
    }

    .separator-button-container {
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: visible; /* Butonun hover hareketine izin ver */
    }

    /* New HAKKIMIZDA Button - Yepyeni stil, önceki buton stilleriyle karışmayacak */
    .new-hakkimizda-button {
        background: white;
        color: #000;
        border: 1px solid #000;
        text-decoration: none;
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-weight: 500; /* Medium - daha ince */
        font-size: 14px;
        line-height: 120%;
        width: 152px; /* 1920px+ için */
        height: 42px; /* 1920px+ için */
        border-radius: 50px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.6s ease;
        box-sizing: border-box;
        letter-spacing: 0.5px;
        position: relative;
        z-index: 100; /* En üstte kalması için */
    }

    .new-hakkimizda-button:hover {
        background: #000;
        color: white;
        transform: translateY(-1px); /* Daha az hareket */
    }

    /* Responsive Button Sizes */
    /* 1440px - 1920px arası: 220x60px */
    @media (min-width: 1440px) and (max-width: 1919px) {
        .hero-main {
            height: 275px !important; /* Hero-main yüksekliğini azalt */
        }
        
        .separator-section {
            height: 150px; /* Daha az yükseklik */
            padding: 0 0 90px 0; /* Üst boşluk yok, alt 60px */
        }
        
        .separator-content {
            align-items: flex-start; /* Butonu en üste yapıştır */
        }
        
        .new-hakkimizda-button,
        .new-tum-projeler-button {
            width: 152px;
            height: 42px;
            font-size: 14px;
        }
    }

    /* 1512px çözünürlük için özel ayar */
    @media (min-width: 1500px) and (max-width: 1520px) {
        .separator-section {
            padding: 5px 0 85px 0; /* Çok az üst boşluk ekle */
        }
        
        .new-hakkimizda-button,
        .new-tum-projeler-button {
            width: 220px !important;
            height: 60px !important;
            font-size: 18px !important;
        }
    }

    /* 1800px+ çözünürlük için özel ayar */
    @media (min-width: 1800px) {
        .new-hakkimizda-button,
        .new-tum-projeler-button {
            width: 232px !important;
            height: 74px !important;
            font-size: 18px !important;
        }
    }

    /* 1440px tam çözünürlük için özel ayar */
    @media (min-width: 1440px) and (max-width: 1440px) {
        .new-hakkimizda-button,
        .new-tum-projeler-button {
            width: 220px !important;
            height: 60px !important;
            font-size: 18px !important;
        }
    }

    /* 1024px - 1440px arası: 160x50px */
    @media (min-width: 1024px) and (max-width: 1439px) {
        .new-hakkimizda-button,
        .new-tum-projeler-button {
            width: 160px;
            height: 50px;
            font-size: 14px;
        }
    }

    /* 1024px - 1147px arası için özel ayar */
    @media (min-width: 1024px) and (max-width: 1147px) {
        .separator-section {
            height: 105px; /* Yükseklik artırıldı */
            padding: 0px 0 50px 0; /* Üst boşluk ekle, alt boşluk artırıldı */
            margin-top: 0px; /* Margin sıfırla - hero alanından çekme */
            z-index: 200; /* Hero alanının çok üstünde */
            position: relative;
        }
        
        .separator-content {
            align-items: flex-start;
        }
        
        .new-hakkimizda-button,
        .new-tum-projeler-button {
            width: 160px !important;
            height: 50px !important;
            font-size: 14px !important;
            z-index: 300 !important; /* En üstte */
        }
    }

    /* Özel çözünürlükler için düzeltmeler */
    /* 1300px - 1400px arası (1352px dahil) */
    @media (min-width: 1300px) and (max-width: 1400px) {

        
        .separator-section {
            height: 115px;
            padding: 5px 0 60px 0; /* px ekledim */
        }
        
        .separator-content {
            align-items: flex-start;
        }
        
        .new-hakkimizda-button,
        .new-tum-projeler-button {
            width: 160px !important;
            height: 50px !important;
            font-size: 14px !important;
        }
    }

    /* 1352px için özel düzeltme */
    @media (min-width: 1350px) and (max-width: 1355px) {
        .hero-main {
            height: 255px !important; /* Daha da az yükseklik */
        }
        
        .separator-section {
            height: 105px;
            padding: 0px 0 55px 0; /* Daha az boşluk */
        }
        
        .new-hakkimizda-button,
        .new-tum-projeler-button {
            width: 160px !important;
            height: 50px !important;
            font-size: 14px !important;
        }
    }

    /* 1100px - 1200px arası (1147px dahil) */
    @media (min-width: 1100px) and (max-width: 1200px) {
        .hero-main {
            height: 260px !important; /* Fikir.svg için biraz artırıldı */
        }
        
        .separator-section {
            height: 100px;
            padding: 0 0 50px 0;
            margin-top: -20px; /* Boşluğu azaltmak için negatif margin */
        }
        
        .separator-content {
            align-items: flex-start;
        }
        
        .new-hakkimizda-button,
        .new-tum-projeler-button {
            width: 160px !important;
            height: 50px !important;
            font-size: 14px !important;
        }
    }

    /* Projects Button Section */
    .projects-button-section {
        background: white;
        padding: 25px 0; /* Üst ve alt 25px boşluk */
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: visible;
    }

    .projects-button-container {
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: visible;
    }

    /* TÜM PROJELER Button - HAKKIMIZDA ile aynı özellikler */
    .new-tum-projeler-button {
        background: white;
        color: #000;
        border: 1px solid #000;
        text-decoration: none;
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-weight: 500; /* Medium - daha ince */
        font-size: 14px; /* Mobil standart */
        line-height: 120%;
        width: 152px; /* Mobil standart */
        height: 42px; /* Mobil standart */
        border-radius: 50px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.6s ease;
        box-sizing: border-box;
        letter-spacing: 0.5px;
        position: relative;
        z-index: 100; /* En üstte kalması için */
    }

    .new-tum-projeler-button:hover {
        background: #000;
        color: white;
        transform: translateY(-1px); /* Daha az hareket */
    }

    /* Six Images Section */
    .six-images-section {
        background: #000;
        padding: 0;
        margin: 0; /* Remove all margins */
        width: 100vw;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
    }

    .six-images-section .container-fluid {
        padding: 0;
        margin: 0;
    }

    .image-item {
        position: relative;
        overflow: hidden;
        height: 100%;
    }

    .image-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .image-item:hover img {
        transform: scale(1.05);
    }

    /* Work Overlay Styles */
    .work-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 1; /* Yazı her zaman görünür */
        transition: all 0.3s ease;
        backdrop-filter: blur(2px);
    }

    .work-text {
        text-align: center;
        color: white;
        padding: 20px;
        transform: translateY(0); /* Yazı her zaman yerinde */
        transition: transform 0.3s ease;
    }

    .work-title {
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-size: 1.8rem;
        font-weight: 600; /* Semi Bold */
        margin-bottom: 8px;
        line-height: 1.2;
    }

    .work-subtitle {
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-size: 1.1rem;
        font-weight: 300; /* Light */
        margin: 0;
        opacity: 0.9;
        line-height: 1.3;
    }
    
    /* İşler sayfasında sadece CSS zoom'u kapat, video sistemi çalışsın */
    .isler-six-images-section .image-item:hover img {
        transform: none !important;
    }
    

    


    /* YouTube Hover Video Styles */
    .image-item iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 999;
        pointer-events: none;
        transition: opacity 0.3s ease;
        border-radius: 0;
        background: #000;
        border: none;
    }

    .image-item.video-playing img {
        opacity: 0;
    }
    


    .image-item.video-playing:hover img {
        transform: scale(1); /* Don't scale when video is playing */
    }
    


    /* Desktop - 3 rows of 2 images */
    @media (min-width: 768px) {
        .six-images-section .row > div {
            height: 540px; /* 1920px ve üzeri için */
        }
    }



    /* Mobile - single column, smaller height */
    @media (max-width: 767px) {
        .six-images-section .row > div {
            height: 281px; /* Sabit yükseklik mobil için */
            min-height: 281px;
        }
        
        /* Mobile overlay text adjustments */
        .work-title {
            font-family: 'Plus Jakarta Sans', sans-serif !important;
            font-size: 1.4rem !important;
            font-weight: 600 !important; /* Semi Bold */
        }
        
        .work-subtitle {
            font-family: 'Plus Jakarta Sans', sans-serif !important;
            font-size: 0.95rem !important;
            font-weight: 300 !important; /* Light */
        }
        
        .work-text {
            padding: 15px !important;
        }
    }

    /* Projects Button Section */
    .projects-button-section {
        background: white;
        padding: 50px 0; /* Daha büyük üst ve alt boşluk */
    }

    .projects-cta {
        text-align: center;
    }

    /* Brands Section */
    .brands-section {
        background: #000;
        padding: 80px 0;
    }

    .brands-title {
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-weight: 400;
        font-size: 80px; /* 1920px ve üzeri için */
        color: white;
        margin: 0 0 60px 0;
        line-height: 1.2;
        text-align: left;
    }

    .brands-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
        max-width: 1200px;
        margin: 0 auto;
        justify-items: center;
        align-items: center;
    }

    .brand-item {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .brand-item img {
        max-width: 200px;
        max-height: 100px;
        object-fit: contain;
        filter: brightness(1);
        transition: all 0.2s ease;
    }

    .brand-item:hover img {
        filter: brightness(1.2);
        transform: scale(1.05);
    }

    /* Mobile brands grid */
    @media (max-width: 768px) {
        .brands-title {
            font-size: 40px;
            margin-bottom: 40px;
            text-align: center;
        }
        
        .brands-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            max-width: 350px;
        }
        
        .brand-item img {
            max-width: 130px;
            max-height: 65px;
        }
    }

    /* Hero slider çok küçük ekranlar için */
    @media (max-width: 480px) {
        .hero-slider {
            height: 100vh; /* Küçük ekranlarda da tam yükseklik - ilk scroll'a kadar */
            height: 100dvh; /* Dynamic viewport height - adres çubuğu için */
            min-height: 100vh; /* Fallback minimum yükseklik */
            min-height: 100dvh; /* Dynamic minimum yükseklik */
        }
        
        .hero-bg-video {
            object-position: center 30%; /* Videoyu biraz yukarı kaydır */
        }
        
        /* Sound button daha küçük */
        .sound-control-btn {
            width: 40px;
            height: 40px;
            bottom: 15px;
            right: 15px;
        }
        
        .sound-control-btn .sound-icon {
            width: 18px;
            height: 18px;
        }
    }

    /* Mobil landscape (yatay) mod için */
    @media (max-height: 500px) and (orientation: landscape) {
        .hero-slider {
            height: 100vh; /* Landscape'de tam yükseklik */
            height: 100dvh; /* Dynamic viewport height */
            min-height: 100vh; /* Fallback minimum */
            min-height: 100dvh; /* Dynamic minimum */
        }
        
        .hero-bg-video {
            object-position: center center; /* Merkezde kalsın */
        }
        
        .sound-control-btn {
            bottom: 10px;
            right: 10px;
        }
    }

    @media (max-width: 480px) {
        .brands-title {
            font-size: 32px;
            margin-bottom: 30px;
        }
        
        .brands-grid {
            gap: 15px;
            max-width: 280px;
        }
        
        .brand-item img {
            max-width: 100px;
            max-height: 50px;
        }
    }

    /* Footer Styles */
    .footer-section {
        background: white;
        padding: 80px 0;
    }

    .footer-content {
        padding-right: 40px;
    }

    .footer-title {
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-weight: 400;
        font-size: 80px; /* 1920px ve üzeri için */
        color: black;
        margin: 0 0 40px 0;
        line-height: 1.2;
    }

    .footer-contact {
        color: black;
    }

    .contact-emails {
        margin-bottom: 20px;
    }

    .footer-divider {
        border: none;
        height: 1px;
        background: #333;
        margin: 20px 0;
        width: 100%;
        max-width: 400px;
    }

    .footer-email {
        display: block;
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-weight: 400;
        font-size: 26px; /* 1920px ve üzeri için */
        color: black;
        text-decoration: none;
        margin-bottom: 8px;
        transition: color 0.3s ease;
    }

    .footer-email:hover {
        color: #666;
    }

    .company-info {
        margin-bottom: 20px;
    }

    .company-name {
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-weight: 700;
        font-size: 26px; /* 1920px ve üzeri için */
        color: black;
        margin: 0 0 15px 0;
        line-height: 1.4;
    }

    .company-address {
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-weight: 400;
        font-size: 26px; /* 1920px ve üzeri için */
        color: black;
        margin: 0;
        line-height: 1.4;
    }

    .social-links {
        display: flex;
        gap: 20px;
    }

    .social-link {
        display: inline-block;
        transition: transform 0.3s ease;
    }

    .social-link:hover {
        transform: scale(1.1);
    }

    .social-link img {
        width: 40px;
        height: 40px;
        object-fit: contain;
    }

    .footer-illustration {
        text-align: right; /* İkonu sağa yasla */
        padding-right: 0px; /* Header'daki EN yazısı hizasında */
        margin-right: 0px;
    }

    .footer-illustration img {
        max-width: 400px;
        height: auto;
    }

    /* Mobile footer styles */
    @media (max-width: 992px) {
        .footer-content {
            padding-right: 0;
            margin-bottom: 40px;
        }
        
        .footer-illustration {
            display: none; /* Tablet ve mobilde gizle */
        }
    }

    @media (max-width: 768px) {
        .footer-section {
            padding: 60px 0 20px 0;
        }
        
        .footer-title {
            font-size: 50px;
            margin-bottom: 30px;
            text-align: left;
        }
        
        .footer-email,
        .company-name,
        .company-address {
            font-size: 18px; /* Tablet için */
            text-align: left;
        }
        
        .contact-emails,
        .company-info {
            text-align: left;
            margin-bottom: 25px;
        }
        
        .social-links {
            justify-content: flex-start;
            margin-bottom: 30px;
        }
        
        .footer-illustration img {
            max-width: 250px;
        }
    }

    @media (max-width: 480px) {
        .footer-title {
            font-size: 40px;
        }
        
        .footer-email,
        .company-name,
        .company-address {
            font-size: 18px; /* Mobil için */
        }
        
        .footer-illustration img {
            max-width: 200px;
        }
    }

    /* Video Lightbox Styles */
    .video-lightbox {
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
    }

    .lightbox-close:hover {
        background: rgba(255, 255, 255, 0.2) !important;
    }

    /* Mobile lightbox responsive */
    @media (max-width: 768px) {
        .lightbox-content {
            width: 95% !important;
            height: 70% !important;
            max-width: none !important;
            max-height: none !important;
        }
        
        .lightbox-close {
            top: -35px !important;
            font-size: 25px !important;
            width: 35px !important;
            height: 35px !important;
        }
    }

    @media (max-width: 480px) {
        .lightbox-content {
            width: 98% !important;
            height: 60% !important;
        }
        
        .lightbox-close {
            top: -30px !important;
            font-size: 20px !important;
            width: 30px !important;
            height: 30px !important;
        }
        
        .video-container {
            border-radius: 4px !important;
        }
    }

    /* ========================================
    LARGE SCREEN RESPONSIVE FONTS
    ======================================== */

    /* 1440px - 1920px arası çözünürlükler için */
    @media (min-width: 1440px) and (max-width: 1919px) {
        .brands-title {
            font-size: 60px !important;
        }
        
        .footer-title {
            font-size: 60px !important;
        }
        
        .about-content-title {
            font-size: 60px !important;
        }
        
        .footer-email,
        .company-name,
        .company-address {
            font-size: 24px !important;
        }
        
        .logo-image {
            height: 69px !important;
        }
        
        /* Six Images - height adjustment for 1440-1920px */
        .six-images-section .row > div {
            height: 405px !important;
        }
        
        /* Hero description for 1440-1920px - handled by main responsive rules */
        
        /* Button sizes for 1440-1920px */
        .cta-button {
            width: 220px !important; /* 1440-1920px için genişlik */
            height: 60px !important; /* 1440-1920px için yükseklik */
            padding: 0 !important;
            font-size: 18px !important;
            min-height: 60px !important;
            min-width: 220px !important;
            box-sizing: border-box !important;
        }
        
        .hero-cta a {
            width: 220px !important; /* 1440-1920px için genişlik */
            height: 60px !important; /* 1440-1920px için yükseklik */
            padding: 0 !important;
            font-size: 18px !important;
            min-height: 60px !important;
            min-width: 220px !important;
            box-sizing: border-box !important;
        }
        
        /* About image height for 1440-1920px */
        .about-image {
            height: 500px !important; /* 1440-1920px için */
        }
        
        /* Logo size for 1440-1920px */
        .logo-image {
            height: 69px !important; /* 1440-1920px için yükseklik */
            width: 160px !important; /* 1440-1920px için genişlik (69 * 2.3) */
        }
    }

    /* Large Desktop - 1440px and down */
    @media (max-width: 1440px) {
        .nav-link {
            font-size: 15px !important;
        }
        
        /* Hero description - handled by specific responsive rules */
        

        
        /* Footer font sizes handled by specific responsive rules */
        
        /* Six Images - handled by specific responsive rules */
        
        /* Brand logos - size adjustment */
        .brand-item img {
            max-width: 190px !important;
            max-height: 95px !important;
        }
        
        /* righthand image - size adjustment */
        .footer-illustration {
            padding-right: 0px !important; /* Header EN yazısı hizasında */
        }
        
        .footer-illustration img {
            max-width: 380px !important;
        }
    }

    /* 1024px - 1440px arası çözünürlükler için */
    @media (min-width: 1024px) and (max-width: 1439px) {
        .brands-title {
            font-size: 45px !important;
        }
        
        .footer-title {
            font-size: 45px !important;
        }
        
        .about-content-title {
            font-size: 45px !important;
        }
        
        .footer-email,
        .company-name,
        .company-address {
            font-size: 20px !important;
        }
        
        .logo-image {
            height: 51px !important; /* 1024-1440px için yükseklik */
            width: 118px !important; /* 1024-1440px için genişlik (51 * 2.3) */
        }
        
        /* Six Images - height adjustment for 1024-1440px */
        .six-images-section .row > div {
            height: 288px !important;
        }
        
        /* Hero description for 1024-1440px - handled by main responsive rules */
        
        /* Button sizes for 1024-1440px */
        .cta-button {
            width: 180px !important; /* 1024-1440px için genişlik */
            height: 50px !important; /* 1024-1440px için yükseklik */
            padding: 0 !important;
            font-size: 14px !important;
            min-height: 50px !important;
            min-width: 180px !important;
            box-sizing: border-box !important;
        }
        
        .hero-cta a {
            width: 180px !important; /* 1024-1440px için genişlik */
            height: 50px !important; /* 1024-1440px için yükseklik */
            padding: 0 !important;
            font-size: 14px !important;
            min-height: 50px !important;
            min-width: 180px !important;
            box-sizing: border-box !important;
        }
        
        /* About image height for 1024-1440px */
        .about-image {
            height: 400px !important; /* 1024-1440px için */
        }
        
        /* Hero section spacing fix for this range */

        

    }

    /* Özel 1350px civarı düzeltme - HAKKIMIZDA butonu görsellere çakmasın */
    @media (min-width: 1300px) and (max-width: 1400px) {

        

        

    }

    /* MacBook çözünürlük düzeltmesi - 1147px civarı */
    @media (min-width: 1100px) and (max-width: 1200px) {

        

    }

    /* Medium Desktop - 1280px and down */
    @media (max-width: 1280px) {
        .nav-link {
            font-size: 14px !important;
        }
        
        /* Hero description - handled by specific responsive rules */
        

        
        /* Footer font sizes handled by specific responsive rules */
        
        /* Six Images - handled by specific responsive rules */
        
        /* Brand logos - size adjustment */
        .brand-item img {
            max-width: 180px !important;
            max-height: 90px !important;
        }
        
        /* righthand image - size adjustment */
        .footer-illustration {
            padding-right: 0px !important; /* Header EN yazısı hizasında */
        }
        
        .footer-illustration img {
            max-width: 360px !important;
        }
    }

    /* Small Desktop - 1024px and down */
    @media (max-width: 1024px) {
        .nav-link {
            font-size: 13px !important;
        }
        

        
        /* Footer font sizes handled by specific responsive rules */
        
        /* Six Images - handled by specific responsive rules */
        
        /* Button sizes handled by specific responsive rules */
        
        /* Brand logos - size adjustment */
        .brand-item img {
            max-width: 170px !important;
            max-height: 85px !important;
        }
        
        /* righthand image - size adjustment */
        .footer-illustration {
            padding-right: 0px !important; /* Header EN yazısı hizasında */
        }
        
        .footer-illustration img {
            max-width: 340px !important;
        }
    }

    /* Responsive Hero Spacing - Fix for spacing below HAKKIMIZDA button */
    @media (max-width: 1440px) {
        .hero-main {
            height: 250px !important; /* Reduced from 320px */
        }


    }

    @media (max-width: 1400px) {
        .hero-main {
            height: 210px !important; /* Aggressive reduction for 1400px and below */
        }


    }

    @media (max-width: 1280px) {
        .hero-main {
            height: 200px !important; /* Further reduced */
        }

    }

    @media (max-width: 1200px) {
        .hero-main {
            height: 190px !important; /* Even more reduced */
        }

    }

    @media (max-width: 1024px) {

    }

    @media (max-width: 768px) {

    }

    @media (max-width: 480px) {

        
        /* Hero-cta button styles handled by combined rule below */
        
        /* Reduce spacing from hero to next section */
        .six-images-section {
            padding-top: 20px !important; /* Minimal padding to maintain spacing */
            width: 100vw !important; /* Full viewport width */
            max-width: 100vw !important; /* Ensure full width */
            left: 50% !important;
            right: 50% !important;
            margin-left: -50vw !important;
            margin-right: -50vw !important;
        }
        
        /* Fix oversized titles on mobile */
        .brands-title {
            font-size: 35px !important; /* Mobil için */
            text-align: left !important; /* Align to left like İletişim */
            margin: 0 0 30px 0 !important; /* Reduced bottom margin for mobile */
        }
        
        .footer-title {
            font-size: 35px !important; /* Mobil için */
        }
        
        /* Fix brand logos layout on mobile */
        .brands-grid {
            grid-template-columns: repeat(2, 1fr) !important; /* 2 columns on mobile */
            gap: 20px !important; /* Smaller gap */
            justify-items: center !important; /* Center items */
        }
        
        .brand-item img {
            max-width: 120px !important; /* Smaller logos for mobile */
            max-height: 60px !important;
        }
        
        .brands-section {
            padding: 40px 0 !important; /* Reduced padding for mobile */
        }
        
        .brands-section .container {
            padding-left: 20px !important; /* Explicit container padding */
            padding-right: 20px !important;
        }
        
        /* HAKKIMIZDA ve TÜM PROJELER butonları - Mobilde tamamen aynı boyut */
        .hero-cta a,
        .cta-button {
            background: white !important;
            color: #000 !important;
            border: 1px solid #000 !important;
            width: 180px !important;
            height: 50px !important;
            padding: 0 !important;
            border-radius: 50px !important;
            font-family: 'Plus Jakarta Sans', sans-serif !important;
            font-weight: 500 !important;
            font-size: 13px !important; /* Font boyutunu biraz küçült */
            letter-spacing: 0.6px !important; /* Letter spacing de küçült */
            line-height: 1 !important;
            text-decoration: none !important;
            display: inline-flex !important;
            align-items: center !important;
            justify-content: center !important;
            cursor: pointer !important;
            transition: all 0.3s ease !important;
            transform: none !important;
            box-sizing: border-box !important;
            min-height: 50px !important;
            min-width: 180px !important;
            max-height: 50px !important;
            max-width: 180px !important;
            white-space: nowrap !important; /* Metni tek satırda tut */
        }
        
        /* Projects button section on mobile */
        .projects-button-section {
            padding: 35px 0 !important; /* Mobilde de daha büyük boşluk */
        }
    }

    /* ===== HAKKIMIZDA PAGE STYLES ===== */

    /* Smooth scroll for anchor links */
    html {
        scroll-behavior: smooth;
    }

    /* Hero text section on hakkimizda page - keep same as homepage */
    .hakkimizda-page-wrapper .hero-text {
        margin-top: 0;
        padding-top: 130px !important; /* Space for sticky header */
        padding-bottom: 40px !important; /* Same as homepage */
        background: white;
        margin-bottom: 50px; /* Space before about image */
    }

    /* About Image Section */
    .about-image-section {
        width: 100%;
        margin: 0;
        padding: 0;
        background: white;
    }

    .about-image-container {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .about-image {
        width: 100%;
        height: 650px; /* 1920px ve üzeri için */
        object-fit: cover;
        display: block;
        margin: 0;
        padding: 0;
    }

    .hakkimizda-page {
        min-height: calc(100vh - 200px);
        padding: 0px 0 50px 0; /* Remove top padding since hero-text is above */
        background: white;
    }

    .hakkimizda-page .page-content {
        text-align: center;
        padding: 80px 0; /* Keep same padding to maintain page height */
        min-height: 100px; /* Ensure minimum height even when empty */
    }

    .hakkimizda-page h1 {
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-size: 48px;
        font-weight: 800;
        color: #000;
        margin: 0;
        letter-spacing: -0.02em;
    }

    /* Mobile responsive for hakkimizda page */
    @media (max-width: 768px) {
        .hakkimizda-page {
            padding: 80px 0 30px 0;
        }
        
        .hakkimizda-page .page-content {
            padding: 40px 20px;
        }
        
        .hakkimizda-page h1 {
            font-size: 32px;
        }
    }

    @media (max-width: 480px) {
        .hakkimizda-page {
            padding: 0px 0 20px 0; /* No top padding since hero-text handles spacing */
        }
        
        .hakkimizda-page .page-content {
            padding: 40px 15px; /* Keep same padding to maintain spacing */
            min-height: 80px; /* Maintain height on mobile even when empty */
        }
        
        .hakkimizda-page h1 {
            font-size: 28px;
        }
    }

    /* Force sticky header style on special pages */
    .hakkimizda-page .header,
    .isler-page .header {
        background: rgba(255, 255, 255, 0.65) !important; /* %30 daha şeffaf */
        backdrop-filter: blur(10px) !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
        padding: 30px 0 !important; /* Ana sayfa ile aynı padding */
    }

    .hakkimizda-page .header .logo-image,
    .isler-page .header .logo-image {
        max-height: 52px !important; /* Mobil için */
    }
    
    /* Hakkımızda sayfası için özel separator class'ı - sadece mobilde */
    @media (max-width: 768px) {
        .hakkimizda-separator-section {
            height: 40px !important;
            padding: 0 !important;
            margin-top: 0 !important;
        }
    }
    
    /* iPhone 12 Pro - 390px */
    @media (min-width: 390px) and (max-width: 393px) {
        .hakkimizda-separator-section {
            height: 140px !important;
            padding: 0 !important;
            margin-top: 0 !important;
        }
    }
    
    /* 412px çözünürlük */
    @media (min-width: 412px) and (max-width: 412px) {
        .hakkimizda-separator-section {
            height: 140px !important;
            padding: 0 !important;
            margin-top: 0 !important;
        }
        
        img[src*="red-ok.svg"] {
            height: 24px !important;
        }
    }
    
    /* iPhone XR - 414px */
    @media (min-width: 414px) and (max-width: 414px) {
        .hakkimizda-separator-section {
            height: 140px !important;
            padding: 0 !important;
            margin-top: 0 !important;
        }
    }
    
    /* iPhone 14 Pro Max - 430px */
    @media (min-width: 430px) and (max-width: 430px) {
        .hakkimizda-separator-section {
            height: 150px !important;
            padding: 0 !important;
            margin-top: 0 !important;
        }
    }
    
    /* Hakkımızda separator için 1440px - 1919px arası */
    @media (min-width: 1440px) and (max-width: 1919px) {
        .hakkimizda-separator-section {
            height: 40px !important;
            padding: 0 !important;
            margin-top: 0 !important;
        }
    }
    
    /* Hakkımızda separator için 1920px */
    @media (min-width: 1920px) and (max-width: 1920px) {
        .hakkimizda-separator-section {
            height: 150px !important;
            padding: 0 !important;
            margin-top: 0 !important;
        }
    }

    .hakkimizda-page .header .nav-link,
    .isler-page .header .nav-link {
        color: #000 !important;
        font-size: 14px !important;
        font-weight: 500 !important;
        padding: 8px 20px !important;
    }

    .hakkimizda-page .header .nav-link:hover,
    .isler-page .header .nav-link:hover {
        color: #666 !important;
    }

    .hakkimizda-page .header .nav-link.active,
    .isler-page .header .nav-link.active {
        background: #000 !important;
        color: white !important;
        border-radius: 25px !important;
    }

    .hakkimizda-page .header .mobile-menu-toggle img,
    .isler-page .header .mobile-menu-toggle img {
        width: 24px !important;
        height: 12px !important;
        max-height: 12px !important;
    }

    .hakkimizda-page .mobile-menu,
    .isler-page .mobile-menu {
        background: rgba(255, 255, 255, 0.65) !important; /* %30 daha şeffaf */
        backdrop-filter: blur(10px) !important;
        border-top: 1px solid rgba(0, 0, 0, 0.1) !important;
    }

    .hakkimizda-page .mobile-nav-link,
    .isler-page .mobile-nav-link {
        color: #000 !important;
        font-size: 16px !important;
        font-weight: 500 !important;
        padding: 15px 0 !important;
    }

    .hakkimizda-page .mobile-nav-link:hover,
    .isler-page .mobile-nav-link:hover {
        color: #666 !important;
    }

    .hakkimizda-page .mobile-nav-link.active,
    .isler-page .mobile-nav-link.active {
        background: transparent !important; /* Arka plan rengini kaldır */
        color: white !important;
        border-radius: 0 !important; /* Border radius kaldır */
        margin: 0 !important; /* Margin kaldır */
        padding: 18px 25px !important; /* Normal padding'e dön */
    }

    /* İşler sayfasında header normal flow'da olsun */
    .isler-page .header {
        position: relative !important;
        background: rgba(255, 255, 255, 0.65) !important; /* %30 daha şeffaf */
        backdrop-filter: blur(10px) !important;
        padding: 30px 0 !important; /* Ana sayfa ile aynı padding */
        margin-bottom: 0 !important;
        z-index: auto !important;
    }

    .isler-page .six-images-section {
        margin-top: 0 !important;
        padding-top: 0px !important; /* Header'ın hemen altından başla */
        position: relative;
        z-index: 1;
    }

    /* Override all responsive margin-top values for isler page */
    @media (min-width: 768px) {
        .isler-page .six-images-section {
            margin-top: 0 !important;
            padding-top: 0px !important; /* Tablet'te de header'ın hemen altı */
        }
    }

    @media (min-width: 1024px) {
        .isler-page .six-images-section {
            margin-top: 0 !important;
            padding-top: 0px !important; /* Desktop'ta da header'ın hemen altı */
        }
    }

    @media (min-width: 1400px) {
        .isler-page .six-images-section {
            margin-top: 0 !important;
            padding-top: 0px !important;
        }
    }

    @media (min-width: 1440px) {
        .isler-page .six-images-section {
            margin-top: 0 !important;
            padding-top: 0px !important;
        }
    }

    /* Hakkımızda sayfası spacer section */
.hakkimizda-spacer-section {
    height: 70px;
    width: 100%;
    background: transparent;
}

/* Mobil cihazlarda spacer section yüksekliğini azalt */
@media (min-width: 376px) and (max-width: 480px) {
    .hakkimizda-spacer-section {
        height: 90px;
    }
    
    .hakkimizda-page .hero-text {
        padding-top: 25px !important;
    }
}

/* iPhone SE için özel üst boşluk - menünün altından çıkacak kadar */
@media (max-width: 375px) {
    .hakkimizda-spacer-section {
        height: 75px;
    }
    
    .hakkimizda-page .hero-text {
        padding-top: 20px !important;
    }
}

/* Hakkımızda sayfası için özel spacing - menünün 30px altından başlasın */
.hakkimizda-page .hero-text {
    padding-top: 30px !important;
    margin-top: 0 !important;
}

/* Hakkımızda sayfasında ana sayfa hero kurallarını uygula */
/* Desktop/Mobile text visibility rules */
.hakkimizda-page .hero-description .mobile-text, 
.hakkimizda-page .hero-title .mobile-title { 
    display: none; 
}

.hakkimizda-page .hero-description .desktop-text, 
.hakkimizda-page .hero-title .desktop-title { 
    display: block; 
}

/* Mobile responsive rules for hakkimizda page - 376-480px (iPhone 13/14 Pro Max) */
@media (min-width: 376px) and (max-width: 480px) {
    .hakkimizda-page .container {
        padding: 0 15px !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .hakkimizda-page .hero-description .desktop-text {
        display: none !important;
    }
    
    .hakkimizda-page .hero-description .mobile-text {
        display: block !important;
        font-size: 12px !important;
        line-height: 24px !important;
    }
    
    .hakkimizda-page .hero-title .desktop-title {
        display: none !important;
    }
    
    .hakkimizda-page .hero-title .mobile-title {
        display: block !important;
        font-size: 50px !important;
        line-height: 65px !important;
    }
    
    .hakkimizda-page .mobile-title .mobile-line {
        display: block;
        position: relative;
    }
    
    .hakkimizda-page .mobile-ikon {
        position: absolute !important;
        height: 30px !important;
        width: auto !important;
        z-index: 10 !important;
        cursor: default !important; /* Tıklanabilir görünümü kaldır */
        pointer-events: none !important; /* Tıklama olaylarını engelle */
    }
    
    .hakkimizda-page .mobile-anime-ikon {
        top: 5px !important;
        right: -4px !important;
    }
    
    .hakkimizda-page .mobile-like-ikon {
        top: 135px !important;
        right: -5px !important;
        height: 51px !important;
    }
    
    .hakkimizda-page .mobile-ok-ikon {
        bottom: 100px !important;
        right: 372px !important;
    }
    

    
    .hakkimizda-page .separator-section {
        height: 100px;
        padding: 20px 0 20px 0;
    }
    
    .hakkimizda-page .new-hakkimizda-button,
    .hakkimizda-page .new-tum-projeler-button {
        width: 152px !important;
        height: 42px !important;
        font-size: 14px !important;
        line-height: 120% !important;
    }
}

/* iPhone SE rules for hakkimizda page - 375px */
@media (max-width: 375px) {
    .hakkimizda-page .container {
        padding: 0 15px !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .hakkimizda-page .hero-text {
        padding-top: 10px !important;
    }
    
    .hakkimizda-page .hero-description {
        margin-top: 30px !important;
        margin-bottom: 15px !important;
    }
    
    .hakkimizda-page .hero-description .desktop-text {
        display: none !important;
    }
    
    .hakkimizda-page .hero-description .mobile-text {
        display: block !important;
        font-size: 11px !important;
        line-height: 20px !important;
    }
    
    .hakkimizda-page .hero-title .desktop-title {
        display: none !important;
    }
    
    .hakkimizda-page .hero-title .mobile-title {
        display: block !important;
        font-size: 45px !important;
        line-height: 55px !important;
    }
    
    .hakkimizda-page .mobile-title .mobile-line {
        display: block;
        position: relative;
    }
    
    .hakkimizda-page .mobile-ikon {
        position: absolute !important;
        height: 25px !important;
        width: auto !important;
        z-index: 10 !important;
    }
    
    .hakkimizda-page .mobile-anime-ikon {
        top: 3px !important;
        right: 8px !important; /* 4px daha sağa (12px -> 8px) */
    }
    
    .hakkimizda-page .mobile-like-ikon {
        top: 111px !important; /* 3px daha aşağıya (108px -> 111px) */
        right: 7px !important; /* 3px sağa (10px -> 7px) */
        height: 42px !important;
    }
    
    .hakkimizda-page .mobile-ok-ikon {
        bottom: 81px !important;
        right: 335px !important; /* 5px daha sola (330px -> 335px) */
    }
    

    
    .hakkimizda-page body .separator-section {
        height: 60px !important;
        padding: 10px 0 5px 0 !important;
        margin-top: 15px !important;
    }
    
    .hakkimizda-page body .new-hakkimizda-button, 
    .hakkimizda-page body .new-tum-projeler-button {
        width: 152px !important;
        height: 42px !important;
        font-size: 14px !important;
        line-height: 120% !important;
    }
    
    /* About image section ile buton arasındaki boşluğu çok daha fazla azalt */
    .hakkimizda-page .about-image-section {
        margin-top: -40px !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
    
    /* About image container için de padding sıfırla */
    .hakkimizda-page .about-image-container {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }
}

/* İşler sayfası için üst boşluk */
.isler-page .six-images-section {
    margin-top: 100px; /* Desktop için */
}

/* İşler sayfası için özel class - tüm cihazlarda */
.isler-six-images-section {
    margin-top: 0px !important;
    padding-top: 100px !important; /* Desktop için header altından başla */
    position: relative !important;
    z-index: 10 !important;
}

/* İşler sayfası image-item'ların z-index'ini artır */
.isler-six-images-section .image-item {
    position: relative !important;
    z-index: 15 !important;
}

/* İşler sayfası container'ını full width yap */
.isler-six-images-section .container-fluid {
    padding-left: 0 !important;
    padding-right: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
}

/* İşler sayfası mobil için üst boşluk */
@media (max-width: 768px) {
    .isler-six-images-section {
        margin-top: 0px !important;
        padding-top: 82px !important; /* Mobilde 82px padding */
    }
}

/* İşler sayfası 1024-1399px arası için */
@media (min-width: 1024px) and (max-width: 1399px) {
    .isler-six-images-section {
        padding-top: 80px !important; /* 1024-1399px arası için 80px */
    }
}

/* Desktop specific - maintain consistent header height */
    @media (min-width: 1025px) {
        .isler-page .header {
            padding: 30px 0 !important; /* Ana sayfa ile aynı padding */
        }
    }

    /* Mobile responsive for hero-text on hakkimizda page - minimal overrides */
    @media (max-width: 1024px) and (min-width: 769px) {
        .hakkimizda-page-wrapper .hero-text {
            margin-bottom: 10px; /* Much smaller spacing for 1024px resolution */
            padding-bottom: 15px !important; /* Reduce hero text section height */
        }
        

        
        .hakkimizda-page-wrapper .hero-description {
            margin: 15px 0 15px 0 !important; /* Üst ve alt boşluk eşit */
        }
        
        .hakkimizda-page-wrapper .hero-title {
            margin: 10px 0 !important; /* Reduce margins around title */
            line-height: 1.1 !important; /* Tighter line height */
        }
        
        .hakkimizda-page-wrapper .hero-title-container {
            padding: 10px 0 !important; /* Reduce container padding */
        }
    }

    @media (max-width: 768px) {
        .hakkimizda-page-wrapper .hero-text {
            padding-top: 160px !important; /* Space for mobile sticky header */
            margin-bottom: 20px; /* Reduced space before about image on tablet */
        }
    }

    @media (max-width: 480px) {
        .hakkimizda-page-wrapper {
            width: 100% !important;
            max-width: none !important;
            overflow: visible;
        }
        
        .hakkimizda-page-wrapper .hero-text {
            padding-top: 75px !important; /* Reduced mobile spacing */
            padding-bottom: 20px !important; /* Reduce hero section height on mobile */
            margin-bottom: 0px; /* Remove extra margin on mobile */
            position: relative;
            z-index: 1; /* Ensure hero text stays above image */
        }
        

        
        .hakkimizda-page-wrapper .hero-description {
            margin: 10px 0 10px 0 !important; /* Üst ve alt boşluk eşit - mobil */
        }
        
        .hakkimizda-page-wrapper .hero-title {
            margin: 5px 0 !important;
            line-height: 1.0 !important; /* Even tighter on mobile */
        }
        
        .about-image-section {
            margin-top: 10px; /* Reduced space from hero text on mobile */
            margin-bottom: 30px; /* Space before footer on mobile */
            padding: 0; /* Remove any padding */
            position: relative;
            z-index: 10; /* Higher z-index to stay above other elements */
            width: 100vw; /* Full viewport width */
            margin-left: calc(-50vw + 50%); /* Center full width */
            margin-right: calc(-50vw + 50%); /* Center full width */
            overflow: hidden;
        }
        
        .about-image {
            width: 100% !important;
            height: 320px !important; /* Mobil için 320px */
            min-height: 320px !important;
            display: block !important;
            max-width: none !important;
            object-fit: cover !important; /* Full coverage while maintaining aspect ratio */
        }
        
        .about-image-container {
            width: 100% !important;
            margin: 0 !important;
            padding: 0 !important;
            overflow: hidden;
        }
        
        /* Ensure footer doesn't overlap image on mobile */
        .footer-section {
            position: relative;
            z-index: 5 !important; /* Lower than about image */
        }
        
        .footer-section .container {
            padding-left: 20px !important; /* Same as other sections */
            padding-right: 20px !important;
        }
        
        /* Fix any body overflow issues on mobile */
        body {
            overflow-x: hidden !important;
        }
    }

    /* ===== BUTON EŞİTLEME: KARŞI-ÖLÇEK ÇÖZÜMÜ ===== */
    /* Transform scale'i etkisiz hale getirmek için inverse scale uyguluyoruz */

    /* 1024-1440px arası: Her iki buton da 160×50 px */
    @media (min-width: 1024px) and (max-width: 1439px) {
        .cta-button,
        .hero-cta .cta-button,
        .projects-cta .cta-button,
        .projects-button-section .cta-button,
        .hero-cta a,
        .projects-cta a {
            width: 160px !important;
            height: 50px !important;
            font-size: 14px !important;
            min-width: 160px !important;
            max-width: 160px !important;
            min-height: 50px !important;
            max-height: 50px !important;
            line-height: 50px !important;
            padding: 0 !important;
            border-radius: 50px !important;
            background: white !important;
            color: #000 !important;
            border: 1px solid #000 !important;
            box-sizing: border-box !important;
            transform: none !important;
        }
        
        /* 1024px'de .hero-main scale(0.7) olduğu için HAKKIMIZDA butonuna karşı-ölçek */
        .hero-cta .cta-button,
        .hero-cta a {
            transform: scale(1.4286) !important; /* 1 ÷ 0.7 = 1.4286 */
            transform-origin: center center !important;
        }
    }

    /* 1024px altı (tablet + mobil): Her iki buton da 180×50 px */
    @media (max-width: 1023px) {
        .cta-button,
        .hero-cta .cta-button,
        .projects-cta .cta-button,
        .projects-button-section .cta-button,
        .hero-cta a,
        .projects-cta a {
            width: 180px !important;
            height: 50px !important;
            font-size: 14px !important;
            min-width: 180px !important;
            max-width: 180px !important;
            min-height: 50px !important;
            max-height: 50px !important;
            line-height: 50px !important;
            padding: 0 !important;
            border-radius: 50px !important;
            background: white !important;
            color: #000 !important;
            border: 1px solid #000 !important;
            box-sizing: border-box !important;
            transform: none !important;
        }
        
        /* 769-1023px arası .hero-main scale(0.7) -> karşı-ölçek */
        @media (min-width: 769px) {
            .hero-cta .cta-button,
            .hero-cta a {
                transform: scale(1.4286) !important; /* 1 ÷ 0.7 = 1.4286 */
                transform-origin: center center !important;
            }
        }
        
        /* 768px altı .hero-main scale(0.6) -> karşı-ölçek + mobilde %40 küçültme */
        @media (max-width: 768px) {
            .cta-button,
            .hero-cta .cta-button,
            .projects-cta .cta-button,
            .projects-button-section .cta-button,
            .hero-cta a,
            .projects-cta a {
                width: 108px !important; /* 180px'in %60'ı */
                height: 30px !important; /* 50px'in %60'ı */
                font-size: 11px !important; /* 14px'in %78'i */
                min-width: 108px !important;
                max-width: 108px !important;
                min-height: 30px !important;
                max-height: 30px !important;
                line-height: 30px !important;
            }
            
            .hero-cta .cta-button,
            .hero-cta a {
                transform: scale(1.6667) !important; /* 1 ÷ 0.6 = 1.6667 */
                transform-origin: center center !important;
            }
            
            /* Mobilde HAKKIMIZDA butonuna üst boşluk - güçlü kural */
            .hero-text .hero-cta {
                margin-top: 20px !important;
                padding-top: 20px !important;
            }
            

        }
    }

    /* Hover efektlerinde boyut değişmemesi için */
    .hero-cta .cta-button:hover,
    .projects-cta .cta-button:hover,
    .projects-button-section .cta-button:hover,
    .hero-cta a:hover,
    .projects-cta a:hover {
        background: #000 !important;
        color: white !important;
        /* Transform'u koruyoruz ki boyut değişmesin */
    }

    /* About Content Section */
    .about-content-section {
        padding: 60px 0;
        background: white;
        width: 100%;
    }

    .about-content-title {
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-weight: 400;
        font-size: 80px; /* 1920px ve üzeri için */
        color: #000;
        margin: 0 0 50px 0;
        line-height: 1.2;
        text-align: left;
        position: relative;
    }

    .about-content-title::after {
        content: '';
        display: block;
        border: none;
        height: 1px;
        background: #999;
        margin: 20px 0;
        width: 100%;
    }

    .about-content-text {
        max-width: 600px; /* Narrower text column */
        margin: 40px auto 0 auto; /* Centered in page */
        text-align: left; /* Text left-aligned within centered container */
        padding: 0 10px; /* 10px padding from edges */
    }

    .about-content-text p {
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-weight: 400; /* Regular font weight */
        font-size: 18px;
        line-height: 1.6;
        color: #333;
        margin-bottom: 24px;
    }

    .about-content-text .about-intro {
        font-weight: 500; /* Medium weight for intro */
        font-size: 20px;
        color: #000;
        margin-bottom: 30px;
    }

    .about-content-subtitle {
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-weight: 700;
        font-size: 22px;
        color: #000;
        margin-top: 40px;
        margin-bottom: 20px;
        letter-spacing: 0.5px;
    }

    /* Responsive for about content - handled by main responsive rules */

    @media (max-width: 768px) {
        .about-content-section {
            padding: 40px 0;
        }
        
        .about-content-title {
            font-size: 45px; /* Tablet için */
            margin: 0 0 35px 0;
            text-align: left;
        }
        
        .about-content-text {
            max-width: 500px; /* Narrower text column for tablet */
            margin: 30px auto 0 auto; /* Centered in page */
            text-align: left;
            padding: 0 10px; /* 10px padding from edges */
        }
        
        .about-content-text p {
            font-weight: 400;
            font-size: 16px;
            margin-bottom: 20px;
        }
        
        .about-content-text .about-intro {
            font-weight: 500;
            font-size: 18px;
            margin-bottom: 24px;
        }

        .about-content-subtitle {
            font-size: 20px;
            margin-top: 32px;
            margin-bottom: 16px;
        }
    }

    @media (max-width: 480px) {
        .about-content-section {
            padding: 40px 0; /* Same as brands-section */
        }
        
        .about-content-section .container {
            padding-left: 20px !important; /* Same as brands-section container */
            padding-right: 20px !important;
        }
        
        .about-content-title {
            font-size: 35px !important; /* Mobil için */
            margin: 0 0 30px 0; /* Same as brands-title on mobile */
            text-align: left;
            /* Remove extra padding - use container's natural padding like other titles */
        }
        
        .about-content-text {
            max-width: 100%; /* Full width on mobile */
            margin: 20px auto 0 auto; /* Centered in page */
            text-align: left;
            padding: 0 20px; /* More padding on mobile */
        }
        
        .about-content-text p {
            font-weight: 400;
            font-size: 14px;
            margin-bottom: 16px;
        }
        
        .about-content-text .about-intro {
            font-weight: 500;
            font-size: 16px;
            margin-bottom: 20px;
        }

        .about-content-subtitle {
            font-size: 18px;
            margin-top: 28px;
            margin-bottom: 14px;
        }
    }

    /* ===== MOBİL HAKKIMIZDA BUTON BOŞLUK ZORLAMASI ===== */
    /* En güçlü kural - tüm diğer kuralları ezer */
    @media (max-width: 768px) {
        body .hero-text .hero-cta,
        body .hero-cta {
            margin-top: 40px !important;
            padding-top: 0 !important;
            margin-bottom: 20px !important;
        }
        
        /* Görsellerin üstündeki siyah boşluğu kapat */
        .six-images-section {
            padding-top: 0px !important; /* Minimal padding */
        }
    }

    /* ===== ÇOK KÜÇÜK EKRANLAR İÇİN ZORLA KURAL (320-349px) ===== */
    /* En son kural - hiçbir şey ezmesin */
    @media (min-width: 320px) and (max-width: 349px) {
        body .hero-title .mobile-title,
        body .mobile-title,
        .mobile-title {
            font-size: 36px !important;
            line-height: 42px !important;
            letter-spacing: -2px !important; /* Mobil letter-spacing */
        }
        
        body .mobile-title .mobile-line,
        .mobile-title .mobile-line {
            font-size: 36px !important;
            line-height: 42px !important;
            letter-spacing: -2px !important; /* Mobil letter-spacing */
        }
        
        /* Like ikonu 10px yukarı - en güçlü kural */
        body .mobile-ikon.mobile-like-ikon,380px !important
        .mobile-ikon.mobile-like-ikon,
        img.mobile-ikon.mobile-like-ikon,
        img[src*="like.png"].mobile-ikon {
            top: 88px !important; /* 111px'den 10px yukarı (111px - 10px = 101px) */
        }
        
        /* Alternatif selector - like.png için */
        .mobile-title img.mobile-ikon.mobile-like-ikon,
        .mobile-title img[src*="like.png"] {
            top: 88px !important;
            position: absolute !important;
            z-index: 10 !important;
        }
        
        /* En spesifik kural - tam HTML elementi için */
        img[src="assets/images/like.png"][class="mobile-ikon mobile-like-ikon"] {
            top: 88px !important;
            position: absolute !important;
            z-index: 10 !important;
            right: 7px !important;
            height: 42px !important;
        }
        
        /* Alternatif spesifik kural */
        .mobile-title img[src="assets/images/like.png"] {
            top: 101px !important;
            position: absolute !important;
            z-index: 10 !important;
            right: 19px !important;
            height: 38px !important; /* 42px'den %10 küçük */
        }
        
        /* OK ikonu 320-349px için sağa kaydır ve %30 küçült */
        .mobile-ok-ikon,
        img.mobile-ikon.mobile-ok-ikon,
        img[src*="red-ok.svg"] {
            bottom: 70px !important;
            right: 280px !important; /* 335px'den 50px'e - çok daha sağda */
            position: absolute !important;
            z-index: 10 !important;
            height: 18px !important; /* %30 küçük */
            width: auto !important;
        }
    }

    /* ===== 350px - 374px ARASI İÇİN ZORLA KURAL ===== */
    /* En son kural - hiçbir şey ezmesin */
    @media (min-width: 350px) and (max-width: 374px) {
        body .hero-title .mobile-title,
        body .mobile-title,
        .mobile-title {
            font-size: 40px !important;
            line-height: 46px !important;
         
        }
        
        body .mobile-title .mobile-line,
        .mobile-title .mobile-line {
            font-size: 40px !important;
            line-height: 46px !important;
        }
    }

    /* ===== 430px İÇİN ZORLA KURAL ===== */
    /* En son kural - hiçbir şey ezmesin */
    @media (min-width: 430px) and (max-width: 430px) {
        body .hero-title .mobile-title,
        body .mobile-title,
        .mobile-title {
            font-size: 50px !important;
            line-height: 58px !important;
        }
        
        body .mobile-title .mobile-line,
        .mobile-title .mobile-line {
            font-size: 50px !important;
            line-height: 58px !important;
        }
        
        /* Six images section 430px için - 376-430px kuralını ez */
        body .six-images-section {
            margin-top: 0px !important; /* 375px ile aynı değer */
            padding-top: 0px !important; /* İlk görselin tam görünmesi için */
            position: relative !important;
            z-index: 1 !important;
        }
        
        /* İşler sayfasında farklı davransın */
        .isler-page body .six-images-section {
            margin-top: 0px !important;
            padding-top: 82px !important; /* İşler sayfasında 82px */
            position: relative !important;
            z-index: 1 !important;
        }
    }

    /* ===== 375px - 429px ARASI İÇİN ZORLA KURAL ===== */
    /* En son kural - hiçbir şey ezmesin */
    @media (min-width: 375px) and (max-width: 429px) {
        body .hero-title .mobile-title,
        body .mobile-title,
        .mobile-title {
            font-size: 45px !important;
            line-height: 52px !important;
        }
        
        body .mobile-title .mobile-line,
        .mobile-title .mobile-line {
            font-size: 45px !important;
            line-height: 52px !important;
        }
    }

    /* ===== 414px İÇİN ÖZEL ICON AYARLARI (iPhone XR) ===== */
    @media (min-width: 414px) and (max-width: 414px) {
        /* Red-OK ikonu 414px için 3px sağa ve height 24px */
        .mobile-ok-ikon,
        img.mobile-ikon.mobile-ok-ikon,
        img[src*="red-ok.svg"],
        img[src="assets/images/red-ok.svg"] {
            right: 354px !important; /* 335px - 3px sağa = 332px */
            height: 24px !important; /* 414px için 24px */
            width: auto !important;
            position: absolute !important;
            z-index: 10 !important;
        }
        
        /* Anime-gif ikonu 414px için 5px sola */
        .mobile-anime-ikon,
        img.mobile-ikon.mobile-anime-ikon,
        img[src*="anime-gif.svg"],
        img[src="assets/images/anime-gif.svg"] {
            right: 22px !important; /* -4px + 5px sola = -9px */
            position: absolute !important;
            z-index: 10 !important;
        }
        
        /* Like ikonu 414px için 2px aşağı 3px sola */
        .mobile-ikon.mobile-like-ikon,
        img.mobile-ikon.mobile-like-ikon,
        img[src*="like.png"].mobile-ikon,
        img[src="assets/images/like.png"] {
            top: 105px !important; /* 111px + 2px aşağı = 113px */
            right: 24px !important; /* 7px + 3px sola = 10px */
            position: absolute !important;
            z-index: 10 !important;
        }
        
        /* Separator section 414px için */
        .separator-section {
            height: 200px !important;
            padding: 0 !important;
            margin-top: 20px !important;
        }
        
        /* Separator content 414px için */
        .separator-content {
            align-items: center !important;
            padding: 105px 0 45px 0 !important;
            height: 100% !important;
            box-sizing: border-box !important;
        }
        
        /* Six images section 414px için - ilk görselin tam görünmesi */
        body .six-images-section {
            margin-top: 0px !important;
            padding-top: 0px !important;
            position: relative !important;
            z-index: 1 !important;
        }
    }

    /* ===== 390px İÇİN ÖZEL ICON AYARLARI (iPhone 12 Pro) ===== */
    @media (min-width: 390px) and (max-width: 390px) {
        /* Red-OK ikonu 390px için 3px sağa ve height 24px */
        .mobile-ok-ikon,
        img.mobile-ikon.mobile-ok-ikon,
        img[src*="red-ok.svg"],
        img[src="assets/images/red-ok.svg"] {
            right: 348px !important; /* 414px ile aynı değer */
            height: 24px !important; /* 390px için 24px */
            width: auto !important;
            position: absolute !important;
            z-index: 10 !important;
        }
        
        /* Anime-gif ikonu 390px için 5px sola */
        .mobile-anime-ikon,
        img.mobile-ikon.mobile-anime-ikon,
        img[src*="anime-gif.svg"],
        img[src="assets/images/anime-gif.svg"] {
            right: 7px !important; /* 414px ile aynı değer */
            position: absolute !important;
            z-index: 10 !important;
        }
        
        /* Like ikonu 390px için 2px aşağı 3px sola */
        .mobile-ikon.mobile-like-ikon,
        img.mobile-ikon.mobile-like-ikon,
        img[src*="like.png"].mobile-ikon,
        img[src="assets/images/like.png"] {
            top: 105px !important; /* 414px ile aynı değer */
            right: 2px !important; /* 414px ile aynı değer */
            position: absolute !important;
            z-index: 10 !important;
        }
        
        /* Separator section 390px için */
        .separator-section {
            height: 200px !important;
            padding: 0 !important;
            margin-top: 20px !important;
        }
        
        /* Separator content 390px için */
        .separator-content {
            align-items: center !important;
            padding: 105px 0 45px 0 !important;
            height: 100% !important;
            box-sizing: border-box !important;
        }
    }
