@charset "UTF-8"; 

/* ========================================================================== 
   1. LOKAL FONTLAR (Sistemde yüklü olan 'Jost' Fontu - Modern & Kurumsal) 
   ========================================================================== */ 
@font-face { 
    font-family: 'Jost'; 
    font-style: normal; 
    font-weight: 400; 
    font-display: swap; 
    src: url('../fonts/Jost-Regular.ttf') format('truetype'); 
} 
@font-face { 
    font-family: 'Jost'; 
    font-style: normal; 
    font-weight: 500; 
    font-display: swap; 
    src: url('../fonts/Jost-Medium.ttf') format('truetype'); 
} 
@font-face { 
    font-family: 'Jost'; 
    font-style: normal; 
    font-weight: 600; 
    font-display: swap; 
    src: url('../fonts/Jost-SemiBold.ttf') format('truetype'); 
} 
@font-face { 
    font-family: 'Jost'; 
    font-style: normal; 
    font-weight: 700; 
    font-display: swap; 
    src: url('../fonts/Jost-Bold.ttf') format('truetype'); 
} 
@font-face { 
    font-family: 'Jost'; 
    font-style: normal; 
    font-weight: 800; 
    font-display: swap; 
    src: url('../fonts/Jost-ExtraBold.ttf') format('truetype'); 
} 

/* ========================================================================== 
   2. GENEL DEĞİŞKENLER VE GÖVDE (ATÖLYE & MEKANİK KONSEPT) 
   ========================================================================== */ 
:root { 
    --primary-color: #0f172a;    /* Koyu Lacivert/Uzay Grisi - Çok kurumsal zemin */ 
    --secondary-color: #0d9488;  /* Turkuaz/Teal - Otomasyon, yazılım, robotik (teknolojik his) */ 
    --accent-color: #0f766e;     /* Koyu Turkuaz - Buton hover efektleri için */ 
    --text-dark: #334155;        /* Koyu Gri - Metin okunabilirliği */ 
    --bg-light: #f8fafc;         /* Çok açık nötr gri */ 
}

body {  
    font-family: 'Jost', sans-serif;  
    color: var(--text-dark);  
    background-color: #ffffff;  
    line-height: 1.7; 
    font-size: 16px; 
} 

h1, h2, h3, h4, h5, h6 { 
    font-family: 'Jost', sans-serif; 
    letter-spacing: -0.5px; 
    font-weight: 700; 
    color: var(--primary-color); 
}

/* ========================================================================== 
   3. HEADER & NAVBAR 
   ========================================================================== */ 
.top-bar { 
    background-color: var(--primary-color); 
    color: rgba(255, 255, 255, 0.8); 
    font-size: 12px; 
    padding: 6px 0; 
    font-weight: 400; 
    border-bottom: 2px solid var(--secondary-color); 
} 

.top-bar a { 
    color: rgba(255, 255, 255, 0.9); 
    text-decoration: none; 
    transition: color 0.3s ease; 
} 

.top-bar a:hover { 
    color: #fff; 
} 

.top-bar i { 
    color: var(--secondary-color); 
    margin-right: 6px; 
} 

.social-icons a { 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    width: 26px; 
    height: 26px; 
    border-radius: 50%; 
    background-color: rgba(255, 255, 255, 0.1); 
    color: #fff; 
    margin-left: 6px; 
    font-size: 11px; 
    transition: all 0.3s ease; 
} 

.social-icons a i { 
    margin: 0; 
    color: #fff; 
} 

.social-icons a:hover { 
    background-color: var(--secondary-color); 
    transform: translateY(-2px); 
} 

.navbar { 
    background: #ffffff; 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04); 
    padding: 0; 
    transition: all 0.4s ease; 
    z-index: 1030; 
} 

.navbar-brand img { 
    transition: transform 0.4s ease; 
} 

.navbar-brand:hover img { 
    transform: scale(1.03); 
} 

.nav-link { 
    font-weight: 500 !important; 
    font-size: 15px; 
    color: var(--text-dark) !important; 
    margin: 0 16px; 
    text-transform: capitalize !important; 
    letter-spacing: 0px !important; 
    transition: 0.3s ease; 
    position: relative; 
    padding: 18px 0 !important; 
    display: flex; 
    align-items: center; 
} 

.nav-link:hover, 
.nav-item.show > .nav-link { 
    color: var(--secondary-color) !important; 
} 

.menu-icon { 
    font-size: 13px; 
    margin-right: 7px; 
    color: var(--secondary-color); 
    transition: 0.3s ease; 
    opacity: 0.8; 
} 

.nav-link:hover .menu-icon { 
    transform: scale(1.1); 
} 

.navbar .dropdown-toggle::after { 
    vertical-align: middle; 
    margin-left: 6px; 
    border-top: 0.35em solid; 
    border-right: 0.35em solid transparent; 
    border-left: 0.35em solid transparent; 
    color: var(--secondary-color); 
    opacity: 0.6; 
} 

.nav-link::before { 
    content: ''; 
    position: absolute; 
    width: 0; 
    height: 2px; 
    bottom: 8px; 
    left: 0; 
    background: var(--secondary-color); 
    transition: all 0.3s ease; 
} 

.nav-link:hover::before { 
    width: 100%; 
} 

.lang-dropdown .dropdown-toggle { 
    border: 1px solid #e2e8f0; 
    background: var(--bg-light); 
    color: var(--primary-color) !important; 
    padding: 6px 14px; 
    border-radius: 30px; 
    font-size: 13px; 
    font-weight: 500 !important; 
    display: flex; 
    align-items: center; 
    transition: all 0.3s; 
    text-transform: none !important; 
} 

.lang-dropdown .dropdown-toggle::after { 
    display: none; 
} 

.lang-dropdown .dropdown-toggle:hover { 
    background: #e2e8f0; 
    border-color: #cbd5e0; 
} 

.dropdown-menu { 
    border: none; 
    border-radius: 8px; 
    padding: 8px 0; 
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08); 
    margin-top: 0; 
    border-top: 3px solid var(--secondary-color); 
    display: none; 
    min-width: 220px; 
    z-index: 1031; 
} 

.dropdown-item { 
    font-size: 14.5px; 
    font-weight: 500; 
    padding: 8px 20px; 
    color: var(--text-dark); 
    transition: all 0.2s ease; 
    text-transform: capitalize !important; 
} 

.dropdown-item:hover { 
    background-color: transparent; 
    color: var(--secondary-color); 
    padding-left: 25px; 
} 

.dropdown-item i { 
    font-size: 11px; 
    margin-right: 8px; 
    color: var(--secondary-color); 
    opacity: 0.7; 
} 

.top-bar-text { 
    font-size: 13px; 
}

.top-bar-social-title { 
    font-size: 11px; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    color: #fff; 
    opacity: 0.8; 
}

.navbar-logo { 
    max-height: 60px; 
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.05)); 
    position: relative; 
    z-index: 1050; 
}

.lang-toggle-btn { 
    border: 1px solid #dee2e6; 
}

/* ========================================================================== 
   4. ALT KATEGORİ (DROPEND) - REVİZE EDİLDİ
   ========================================================================== */ 
@media (min-width: 992px) { 
    /* .lang-dropdown HARİÇ tutularak, dil menüsünün tıklama ile sabit kalması sağlandı */
    .navbar .nav-item.dropdown:not(.lang-dropdown):hover > .dropdown-menu { 
        display: block; 
        visibility: visible; 
        opacity: 1; 
        margin-top: 0; 
        transform: translateY(0); 
    } 
    .navbar .dropdown-menu .dropend { 
        position: relative; 
    } 
    .navbar .dropdown-menu .dropend:hover > .dropdown-menu { 
        display: block !important; 
        visibility: visible !important; 
        opacity: 1 !important; 
        position: absolute; 
        top: 0; 
        left: 100%; 
        margin-left: 0; 
        margin-top: -3px; 
        transform: translateY(0); 
    } 
    .navbar .dropdown-menu .dropend > .submenu-toggle::after { 
        content: ""; 
        border-top: 0.3em solid transparent; 
        border-bottom: 0.3em solid transparent; 
        border-left: 0.3em solid; 
        position: absolute; 
        right: 12px; 
        top: 50%; 
        margin-top: -4px; 
        opacity: 0.5; 
    } 
} 

@media (max-width: 991px) { 
    .navbar .dropdown-menu .dropend > .dropdown-menu { 
        display: none; 
        visibility: visible; 
        opacity: 1; 
        margin-top: 4px; 
        margin-left: 15px; 
        margin-right: 15px; 
        border: none !important; 
        border-left: 2px solid var(--secondary-color) !important; 
        background-color: var(--bg-light); 
        box-shadow: none !important; 
        transform: none; 
    } 
    .navbar .dropdown-menu .dropend > .dropdown-menu.show-submenu { 
        display: block !important; 
    } 
    .navbar .dropdown-menu .dropend > .submenu-toggle::after { 
        content: "\f107"; 
        font-family: 'Font Awesome 6 Free'; 
        font-weight: 900; 
        float: right; 
        border: none; 
        margin-top: 2px; 
    } 
} 

/* ========================================================================== 
   5. İNDEX VE GENEL BİLEŞENLER
   ========================================================================== */ 
.section-kicker { 
    font-size: 0.85rem; 
    font-weight: 700; 
    color: var(--secondary-color); 
    letter-spacing: 2px; 
    text-transform: uppercase; 
    margin-bottom: 10px; 
    display: block; 
} 

.section-title { 
    font-weight: 800; 
    color: var(--primary-color); 
    letter-spacing: -1px; 
    margin-bottom: 0; 
} 

.swipeable-gallery { 
    display: flex; 
    overflow-x: auto; 
    scroll-snap-type: x mandatory; 
    gap: 20px; 
    padding-bottom: 20px; 
    scrollbar-width: none; 
    -ms-overflow-style: none; 
    -webkit-overflow-scrolling: touch; 
} 

.swipeable-gallery::-webkit-scrollbar { 
    display: none; 
} 

.swipeable-item { 
    scroll-snap-align: start; 
    flex: 0 0 calc(20% - 16px); 
}  

.gallery-overlay { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: rgba(0, 156, 228, 0.85); 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center; 
    opacity: 0; 
    transition: all 0.3s ease; 
    z-index: 3; 
} 

.gallery-card:hover .gallery-overlay { 
    opacity: 1; 
} 

.gallery-overlay i { 
    color: #fff; 
    font-size: 2rem; 
    transform: translateY(20px); 
    transition: all 0.3s ease; 
} 

.gallery-card:hover .gallery-overlay i { 
    transform: translateY(0); 
} 

.gallery-overlay span { 
    color: #fff; 
    font-weight: 600; 
    margin-top: 10px; 
    font-size: 14px; 
    transform: translateY(20px); 
    transition: all 0.3s ease 0.1s; 
    opacity: 0; 
} 

.gallery-card:hover .gallery-overlay span { 
    transform: translateY(0); 
    opacity: 1; 
} 

.service-overlay { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: linear-gradient(135deg, rgba(0, 156, 228, 0.4) 0%, rgba(16, 31, 65, 0.7) 100%); 
    z-index: 1; 
    transition: all 0.4s ease; 
    pointer-events: none; 
} 

.card.transition-hover:hover .service-overlay { 
    background: linear-gradient(135deg, rgba(0, 156, 228, 0.75) 0%, rgba(16, 31, 65, 0.9) 100%); 
} 

.glass-badge { 
    background: rgba(25, 30, 40, 0.75); 
    backdrop-filter: blur(12px); 
    border: 1px solid rgba(255, 255, 255, 0.1); 
    border-left: 4px solid var(--primary-color); 
    right: 0px !important; 
    width: calc(100% - 25px); 
}

.tech-dots { 
    background-image: radial-gradient(var(--primary-color) 2px, transparent 2px); 
    background-size: 20px 20px; 
    opacity: 0.15; 
}

.modern-check-list li { 
    font-size: 1.05rem; 
    color: var(--text-dark); 
}

.btn-modern { 
    border: 2px solid var(--primary-color); 
    color: var(--primary-color); 
    background: transparent; 
    transition: all 0.3s ease; 
}

.btn-modern:hover { 
    background: var(--primary-color); 
    color: #ffffff; 
    transform: translateY(-3px); 
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); 
}

.icon-hover-group .opacity-75 { 
    transition: all 0.3s ease; 
}

.icon-hover-group:hover .opacity-75 { 
    opacity: 1 !important; 
    transform: scale(1.1); 
}

.card-hover-up { 
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
}

.card-hover-up:hover { 
    transform: translateY(-8px); 
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08) !important; 
}

.brand-marquee-container { 
    overflow: hidden; 
    white-space: nowrap; 
    position: relative; 
}

.brand-marquee-track { 
    display: inline-block; 
    animation: marquee 25s linear infinite; 
}

.brand-marquee-track:hover { 
    animation-play-state: paused; 
}

.brand-item { 
    display: inline-block; 
    padding: 0 30px; 
    transition: transform 0.3s ease; 
}

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

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

/* ========================================================================== 
   6. FORMLAR & İLETİŞİM KUTULARI
   ========================================================================== */ 
.ce-form-control { 
    background-color: var(--bg-light); 
    border: 1px solid #cbd5e1; 
    border-radius: 4px; 
    padding: 14px 18px; 
    font-size: 14px; 
    color: var(--primary-color); 
    transition: all 0.3s ease; 
    width: 100%; 
    display: block; 
}

.ce-form-control:focus { 
    background-color: #ffffff; 
    border-color: var(--secondary-color); 
    box-shadow: 0 0 0 3px rgba(0, 156, 228, 0.1); 
    outline: none; 
}

select.ce-form-control { 
    appearance: none; 
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23101f41' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"); 
    background-repeat: no-repeat; 
    background-position: right 1rem center; 
    background-size: 16px 12px; 
}

.ce-form-label { 
    font-size: 12.5px; 
    font-weight: 700; 
    color: var(--text-dark); 
    text-transform: uppercase; 
    letter-spacing: 0.5px; 
    margin-bottom: 8px; 
    display: block; 
}

.contact-info-box { 
    background: #ffffff; 
    padding: 20px; 
    border-radius: 4px; 
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03); 
    border: 1px solid #e2e8f0; 
    border-left: 4px solid var(--secondary-color); 
    margin-bottom: 20px; 
    display: flex; 
    align-items: flex-start; 
    transition: transform 0.3s ease; 
}

.contact-info-box:hover { 
    transform: translateX(5px); 
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06); 
}

.contact-icon { 
    width: 45px; 
    height: 45px; 
    border-radius: 4px; 
    background: rgba(0, 156, 228, 0.1); 
    color: var(--secondary-color); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 18px; 
    flex-shrink: 0; 
    margin-right: 15px; 
}

/* ========================================================================== 
   7. FOOTER, ÇEREZ VE YENİ WHATSAPP ARAÇLARI
   ========================================================================== */ 
.whatsapp-modern-wrapper { 
    position: fixed; 
    bottom: 30px; 
    right: 30px; 
    z-index: 9999; 
}

.whatsapp-modern-button { 
    display: flex; 
    align-items: center; 
    background-color: #ffffff; 
    border-radius: 50px; 
    padding: 6px; 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); 
    text-decoration: none !important; 
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    border: 1px solid #e2e8f0; 
    max-width: 62px; 
    overflow: hidden; 
    white-space: nowrap; 
}

.whatsapp-modern-button:hover { 
    max-width: 280px; 
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.3); 
    border-color: #25d366; 
    padding-right: 25px; 
    transform: translateY(-3px); 
}

.wa-icon-container { 
    width: 50px; 
    height: 50px; 
    background: linear-gradient(135deg, #25d366, #128c7e); 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    flex-shrink: 0; 
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4); 
}

.wa-icon-container i { 
    color: white; 
    font-size: 28px; 
    margin: 0; 
}

.wa-text-container { 
    display: flex; 
    flex-direction: column; 
    margin-left: 15px; 
    opacity: 0; 
    transform: translateX(-10px); 
    transition: all 0.3s ease; 
}

.whatsapp-modern-button:hover .wa-text-container { 
    opacity: 1; 
    transform: translateX(0); 
    transition-delay: 0.1s; 
}

.wa-title { 
    color: #0f172a; 
    font-weight: 800; 
    font-size: 15px; 
    line-height: 1.2; 
}

.wa-desc { 
    color: #64748b; 
    font-size: 12px; 
    font-weight: 500; 
}

.wa-pulse-dot { 
    position: absolute; 
    top: 5px; 
    right: 5px; 
    width: 12px; 
    height: 12px; 
    background-color: #25d366; 
    border-radius: 50%; 
    border: 2px solid #fff; 
}

.wa-pulse-dot::after { 
    content: ''; 
    position: absolute; 
    top: -2px; 
    left: -2px; 
    right: -2px; 
    bottom: -2px; 
    border-radius: 50%; 
    border: 2px solid #25d366; 
    animation: wa-pulse 2s infinite; 
}

@keyframes wa-pulse { 
    0% { transform: scale(1); opacity: 1; } 
    100% { transform: scale(2.5); opacity: 0; } 
}

.cookie-box { 
    position: fixed; 
    bottom: 20px; 
    left: 20px; 
    max-width: 350px; 
    background: #ffffff; 
    border-radius: 4px; 
    border-top: 4px solid var(--secondary-color); 
    z-index: 10000; 
    display: none; 
}

.cookie-box .icon-circle { 
    background-color: rgba(0, 156, 228, 0.1); 
    color: var(--secondary-color); 
    width: 35px; 
    height: 35px; 
    border-radius: 4px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 16px; 
}

.ce-footer { 
    background-color: var(--primary-color); 
    color: #94a3b8; 
    font-family: 'Jost', sans-serif; 
}

.ce-footer .footer-title { 
    color: #ffffff; 
    font-weight: 700; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    font-size: 14px; 
    border-bottom: 2px solid var(--secondary-color); 
    display: inline-block; 
    padding-bottom: 8px; 
}

.ce-footer .footer-links a { 
    color: #94a3b8; 
    text-decoration: none; 
    transition: all 0.3s ease; 
    display: inline-block; 
    padding: 5px 0; 
    font-size: 14px; 
}

.ce-footer .footer-links a:hover { 
    color: #ffffff; 
    transform: translateX(5px); 
}

.ce-footer .footer-contact li { 
    margin-bottom: 15px; 
    font-size: 14px; 
    color: #94a3b8; 
}

.ce-footer .footer-contact i { 
    color: var(--secondary-color); 
    width: 20px; 
    text-align: center; 
    margin-right: 12px; 
    font-size: 16px; 
}

.ce-footer .footer-contact a { 
    color: #ffffff; 
    text-decoration: none; 
    transition: 0.3s ease; 
}

.ce-footer .footer-contact a:hover { 
    color: var(--secondary-color); 
}

.footer-bottom-bar { 
    background-color: #081024; 
    border-top: 1px solid rgba(255, 255, 255, 0.05); 
}

.footer-legal-links a { 
    color: #94a3b8; 
    text-decoration: none; 
    font-size: 13px; 
    transition: 0.3s ease; 
}

.footer-legal-links a:hover { 
    color: #ffffff; 
}

/* ========================================================================== 
   8. ORTAK UI BİLEŞENLERİ & EFEKTLER 
   ========================================================================== */ 
.biography-text p { 
    text-align: justify; 
} 

.biography-text strong { 
    color: var(--primary-color); 
    font-weight: 700; 
} 

.page-content img { 
    max-width: 100%; 
    height: auto !important; 
    border-radius: 12px; 
    margin: 25px 0; 
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08); 
} 

.page-content h2, 
.page-content h3, 
.page-content h4 { 
    color: var(--primary-color); 
    margin-top: 35px; 
    margin-bottom: 15px; 
    font-weight: 700; 
    letter-spacing: -1px; 
} 

.transition-hover { 
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); 
} 

.card.transition-hover:hover { 
    transform: translateY(-8px); 
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important; 
} 

.transition-zoom { 
    transition: transform 0.6s ease; 
} 

.card.transition-hover:hover .transition-zoom { 
    transform: scale(1.08); 
} 

.map-section iframe { 
    display: block; 
    width: 100%; 
    height: 450px; 
    filter: grayscale(20%) contrast(1.05); 
    border: none !important; 
} 

.z-index-1 { z-index: 1; }
.z-index-2 { z-index: 2; }
.z-index-10 { z-index: 10; }

.hover-blue { 
    transition: all 0.3s ease; 
}

.hover-blue:hover { 
    color: var(--secondary-color) !important; 
}

.last-child-no-border:last-child { 
    border-bottom: none !important; 
    margin-bottom: 0 !important; 
    padding-bottom: 0 !important; 
}

.icon-circle { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    flex-shrink: 0; 
}

.bg-light-gray { 
    background-color: #f8f9fa; 
}

.bg-light-custom { 
    background-color: var(--bg-light); 
}

.tracking-widest { 
    letter-spacing: 2px; 
}

.tracking-tight { 
    letter-spacing: -1px; 
}

.max-width-700 { 
    max-width: 700px; 
}

/* ========================================================================== 
   10. BOOTSTRAP RENK EZİCİLER (OVERRIDES)
   ========================================================================== */ 
.text-primary { 
    color: var(--primary-color) !important; 
} 

.bg-primary { 
    background-color: var(--primary-color) !important; 
} 

.text-secondary { 
    color: var(--secondary-color) !important; 
} 

.bg-secondary { 
    background-color: var(--secondary-color) !important; 
} 

.border-secondary { 
    border-color: var(--secondary-color) !important; 
} 

.btn-primary { 
    background-color: var(--secondary-color) !important; 
    border-color: var(--secondary-color) !important; 
    color: #fff !important; 
} 

.btn-primary:hover { 
    background-color: var(--accent-color) !important; 
    border-color: var(--accent-color) !important; 
} 

.btn-outline-primary { 
    color: var(--secondary-color) !important; 
    border-color: var(--secondary-color) !important; 
    background-color: transparent !important; 
} 

.btn-outline-primary:hover { 
    background-color: var(--secondary-color) !important; 
    color: #fff !important; 
    border-color: var(--secondary-color) !important; 
} 

.alert-primary { 
    background-color: rgba(0, 156, 228, 0.05) !important; 
    border-color: rgba(0, 156, 228, 0.1) !important; 
    color: var(--secondary-color) !important; 
}

/* ==========================================================================
   11. SİNEMATİK HERO TASARIMI (CODE ELEKTRONİK TEMASI)
   ========================================================================== */
.cinematic-hero { 
    position: relative; 
    min-height: 90vh; 
    display: flex; 
    align-items: center; 
    background-color: var(--primary-color); 
    overflow: hidden; 
}

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

.cinematic-hero-slider .carousel-item { 
    height: 90vh; 
}

.cinematic-hero-slider img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transform: scale(1.05); 
    transition: transform 6s ease-in-out; 
}

.cinematic-hero-slider .carousel-item.active img { 
    transform: scale(1); 
}

.cinematic-overlay { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: linear-gradient(135deg, rgba(16, 31, 65, 0.9) 0%, rgba(30, 41, 59, 0.7) 50%, rgba(0, 156, 228, 0.4) 100%); 
    z-index: 2; 
}

.hero-shape { 
    position: absolute; 
    border-radius: 50%; 
    background: rgba(255, 255, 255, 0.03); 
    z-index: 3; 
    animation: floatShape 15s infinite linear; 
    pointer-events: none; 
}

.shape-1 { 
    width: 300px; 
    height: 300px; 
    top: -100px; 
    right: -50px; 
    border: 2px solid rgba(0, 156, 228, 0.15); 
}

.shape-2 { 
    width: 500px; 
    height: 500px; 
    bottom: -200px; 
    left: -150px; 
    animation-duration: 20s; 
    animation-direction: reverse; 
}

@keyframes floatShape { 
    0% { transform: translateY(0) rotate(0deg); } 
    50% { transform: translateY(-30px) rotate(180deg); } 
    100% { transform: translateY(0) rotate(360deg); } 
}

.cinematic-hero-content { 
    position: relative; 
    z-index: 10; 
    padding: 80px 0; 
}

.animate-fade-up { 
    opacity: 0; 
    transform: translateY(30px); 
    animation: fadeInUp 0.8s ease-out forwards; 
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeInUp { 
    to { opacity: 1; transform: translateY(0); } 
}

.c-hero-line { 
    width: 80px; 
    height: 4px; 
    background-color: var(--secondary-color); 
    margin-bottom: 30px; 
    border-radius: 2px; 
    box-shadow: 0 0 15px rgba(0, 156, 228, 0.5); 
}

.c-hero-title { 
    font-family: 'Jost', sans-serif; 
    font-weight: 800; 
    font-size: clamp(2.8rem, 4.5vw, 4.5rem); 
    color: #ffffff; 
    line-height: 1.15; 
    margin-bottom: 25px; 
    max-width: 800px; 
    letter-spacing: -1px; 
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); 
}

.c-hero-title span { 
    color: var(--secondary-color); 
}

.c-hero-desc { 
    font-size: 1.2rem; 
    color: rgba(255, 255, 255, 0.85); 
    max-width: 600px; 
    line-height: 1.8; 
    margin-bottom: 45px; 
    font-weight: 400; 
    font-family: 'Jost', sans-serif; 
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5); 
}

.c-hero-btns { 
    display: flex; 
    gap: 20px; 
    align-items: center; 
    flex-wrap: wrap; 
}

.btn-c-primary { 
    background-color: var(--secondary-color); 
    color: #fff !important; 
    padding: 16px 40px; 
    border-radius: 30px; 
    font-weight: 700; 
    font-size: 15px; 
    font-family: 'Jost', sans-serif; 
    text-decoration: none; 
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); 
    border: 2px solid var(--secondary-color); 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    box-shadow: 0 8px 25px rgba(0, 156, 228, 0.4); 
}

.btn-c-primary:hover { 
    background-color: transparent; 
    transform: translateY(-5px); 
    box-shadow: 0 12px 30px rgba(0, 156, 228, 0.6); 
}

.btn-c-outline { 
    color: #ffffff !important; 
    padding: 16px 40px; 
    border-radius: 30px; 
    font-weight: 700; 
    font-size: 15px; 
    font-family: 'Jost', sans-serif; 
    text-decoration: none; 
    background-color: rgba(255, 255, 255, 0.05); 
    backdrop-filter: blur(5px); 
    border: 2px solid rgba(255, 255, 255, 0.2); 
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
}

.btn-c-outline:hover { 
    background-color: #ffffff; 
    color: var(--primary-color) !important; 
    border-color: #ffffff; 
    transform: translateY(-5px); 
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2); 
}

.c-carousel-control { 
    width: 50px; 
    height: 50px; 
    background: rgba(0, 0, 0, 0.5); 
    border-radius: 50%; 
    top: 50%; 
    transform: translateY(-50%); 
    border: 1px solid rgba(255, 255, 255, 0.2); 
    opacity: 0.7; 
    transition: all 0.3s; 
}

.c-carousel-control:hover { 
    opacity: 1; 
    background: var(--secondary-color); 
    border-color: var(--secondary-color); 
}

.carousel-control-prev.c-carousel-control { 
    left: 30px; 
}

.carousel-control-next.c-carousel-control { 
    right: 30px; 
}

/* ==========================================================================
   11. ANA SAYFA VE DİĞER KOMPONENTLER (EXTRACTED STYLES)
   ========================================================================== */
.about-tech-dots { 
    width: 80%; 
    height: 80%; 
    top: -20px; 
    left: -20px; 
    z-index: 0; 
}

.about-img-wrap { 
    z-index: 2; 
    width: calc(100% - 30px); 
}

.about-img { 
    object-fit: cover; 
    aspect-ratio: 4/5; 
    transition: transform 0.5s ease; 
    margin-right: calc(0.5rem - 15px); 
}

.about-img:hover { 
    transform: scale(1.03); 
}

.about-glass-badge { 
    right: 0px !important; 
    bottom: 25px; 
    min-width: 160px; 
    z-index: 3; 
}

.badge-year { 
    font-size: 2rem; 
}

.expertise-pill { 
    background-color: rgba(0, 156, 228, 0.1); 
    border: 1px solid rgba(0, 156, 228, 0.2); 
}

.expertise-text { 
    letter-spacing: 1.5px; 
    font-size: 12px; 
    text-transform: uppercase; 
}

.about-heading { 
    line-height: 1.2; 
}

.about-desc { 
    font-size: 1.1rem; 
    line-height: 1.7; 
}

.list-icon { 
    font-size: 1.2rem; 
}

.btn-discover { 
    font-size: 13px; 
    letter-spacing: 1px; 
}

.brand-marquee-img { 
    height: 40px; 
    width: auto; 
    object-fit: contain; 
}

.section-subtitle { 
    letter-spacing: 2px; 
    font-size: 13px; 
    text-transform: uppercase; 
}

.section-main-title { 
    letter-spacing: -1px; 
}

.btn-view-all { 
    border: 1px solid #cbd5e1; 
    color: var(--primary-color); 
    border-radius: 4px; 
    font-size: 12px; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
}

.btn-view-all-mobile { 
    border: 1px solid #cbd5e1; 
    color: var(--primary-color); 
    border-radius: 4px; 
    font-size: 13px; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
}

.service-card-wrap { 
    border-color: #e2e8f0 !important; 
}

.service-img-box { 
    height: 200px; 
    background-color: #f1f5f9; 
}

.service-img { 
    max-height: 100%; 
    object-fit: contain; 
}

.service-title { 
    font-size: 15px; 
    text-transform: uppercase; 
    letter-spacing: 0.5px; 
}

.service-detail-icon { 
    font-size: 10px; 
}

.process-section-bg { 
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e293b 100%); 
    border-top: 4px solid var(--secondary-color); 
}

.process-icon-box { 
    width: 80px; 
    height: 80px; 
    background-color: rgba(255, 255, 255, 0.1); 
    border-color: var(--secondary-color) !important; 
}

.btn-urgent-service { 
    background-color: var(--secondary-color); 
    color: #ffffff; 
    border-radius: 4px; 
    border: none; 
    font-size: 14px; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
}

.blog-card-img { 
    height: 220px; 
    object-fit: cover; 
}

.blog-title { 
    line-height: 1.4; 
}

.btn-read-all { 
    background-color: var(--primary-color); 
    border: none; 
    border-radius: 4px; 
    font-size: 12px; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
}

.btn-read-all-mobile { 
    background-color: var(--primary-color); 
    border: none; 
    border-radius: 4px; 
    font-size: 13px; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
}

.faq-item-custom { 
    border-color: #e2e8f0 !important; 
    border-radius: 4px; 
}

.faq-btn { 
    box-shadow: none; 
    font-size: 15px; 
}

.faq-body-text { 
    line-height: 1.8; 
    font-size: 14px; 
}

.cta-section-wrapper { 
    background-color: var(--primary-color); 
    position: relative; 
    overflow: hidden; 
}

.cta-bg-pattern { 
    position: absolute; 
    width: 100%; 
    height: 100%; 
    top: 0; 
    left: 0; 
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px); 
    background-size: 20px 20px; 
    opacity: 0.3; 
}

.cta-desc-text { 
    max-width: 700px; 
    margin: 0 auto; 
}

.btn-cta-contact { 
    color: var(--primary-color); 
    letter-spacing: 1px; 
}

.btn-cta-whatsapp { 
    border: 2px solid; 
    letter-spacing: 1px; 
    transition: background 0.3s; 
}

/* ==========================================================================
   12. ABOUT US (HAKKIMIZDA) BİLEŞENLERİ
   ========================================================================== */
.page-header-bg { 
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%); 
    color: white; 
    overflow: hidden; 
    min-height: 250px; 
    display: flex; 
    align-items: center; 
}

.page-header-overlay { 
    background-image: radial-gradient(circle at right, rgba(255, 255, 255, 0.8) 0%, transparent 50%); 
    pointer-events: none; 
}

.breadcrumb-custom { 
    font-size: 15px; 
    font-weight: 500; 
}

.breadcrumb-active-color { 
    color: #e0f2fe !important; 
}

.sticky-offset { 
    top: 120px; 
    z-index: 1; 
}

.about-img-border { 
    border: 2px solid var(--secondary-color); 
    width: 100%; 
    height: 100%; 
    top: -15px; 
    left: -15px; 
    z-index: -1; 
}

.about-profile-img { 
    object-fit: cover; 
    aspect-ratio: 4/5; 
}

.about-floating-badge { 
    background: rgba(255, 255, 255, 0.95); 
    backdrop-filter: blur(10px); 
    bottom: 30px; 
    right: -30px; 
    width: 180px; 
    z-index: 3; 
    border-bottom: 4px solid var(--primary-color); 
}

.expertise-box { 
    border-color: #e2e8f0 !important; 
    border-bottom: 4px solid var(--primary-color) !important; 
}

.expertise-title { 
    font-size: 14px; 
}

.expertise-badge { 
    font-size: 13px; 
}

.btn-expertise { 
    background-color: var(--secondary-color); 
    border: none; 
}

.about-main-heading { 
    color: var(--primary-color); 
    line-height: 1.3; 
    letter-spacing: -1px; 
}

.about-body-text { 
    color: var(--text-dark); 
    font-size: 1.1rem; 
    line-height: 1.9; 
}

.vision-box-custom { 
    background-color: var(--bg-light); 
    border-left: 4px solid var(--primary-color); 
}

.vision-quote-icon { 
    top: 15px; 
    left: 15px; 
    font-size: 40px; 
    color: var(--primary-color); 
    opacity: 0.1; 
}

.vision-quote-text { 
    color: var(--primary-color); 
    font-style: italic; 
    font-size: 1.15rem; 
    padding-left: 40px; 
}

.signature-text { 
    font-size: 1.5rem; 
    color: var(--primary-color); 
    letter-spacing: -0.5px; 
}

.core-values-section { 
    background-color: var(--bg-light); 
    border-top: 1px solid #e2e8f0; 
}

.value-card-primary { 
    border-top: 4px solid var(--primary-color) !important; 
}

.value-icon-box-primary { 
    width: 70px; 
    height: 70px; 
    background-color: rgba(16, 31, 65, 0.1); 
}

.value-desc { 
    line-height: 1.7; 
    font-size: 1.05rem; 
}

.value-card-secondary { 
    border-top: 4px solid var(--secondary-color) !important; 
}

.value-icon-box-secondary { 
    width: 70px; 
    height: 70px; 
    background-color: rgba(0, 156, 228, 0.1); 
}

.achievements-section { 
    background-color: #ffffff; 
    border-top: 1px solid #e2e8f0; 
}

.achiev-card-primary { 
    border-bottom: 4px solid var(--primary-color); 
}

.achiev-card-secondary { 
    border-bottom: 4px solid var(--secondary-color); 
}

/* ==========================================================================
   13. ERROR 404 BİLEŞENLERİ
   ========================================================================== */
.error-404-bg { 
    background-color: var(--bg-light); 
    min-height: 75vh; 
}

.error-404-title { 
    color: var(--secondary-color); 
    opacity: 0.08; 
    letter-spacing: -5px; 
    font-size: 12rem; 
}

.error-404-subtitle { 
    color: var(--primary-color); 
    font-size: 2.2rem; 
    letter-spacing: -0.5px; 
}

.error-404-text { 
    color: var(--text-dark); 
    font-size: 1.1rem; 
    line-height: 1.8; 
}

.btn-error-home { 
    background-color: var(--secondary-color); 
    border: none; 
    border-radius: 4px; 
    font-size: 13.5px; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
}

.btn-error-contact { 
    border: 2px solid var(--primary-color); 
    color: var(--primary-color); 
    border-radius: 4px; 
    font-size: 13.5px; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
}

/* ==========================================================================
   14. BLOG & BLOG DETAY BİLEŞENLERİ
   ========================================================================== */
.header-icon-circle-light { 
    width: 60px; 
    height: 60px; 
    background-color: rgba(255, 255, 255, 0.15); 
    color: white; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 28px; 
}

.header-icon-circle-dark { 
    width: 60px; 
    height: 60px; 
    background-color: rgba(0, 156, 228, 0.2); 
    color: var(--secondary-color); 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 28px; 
}

.border-top-secondary { 
    border-top: 4px solid var(--secondary-color) !important; 
}

.border-top-primary { 
    border-top: 4px solid var(--primary-color) !important; 
}

.border-left-secondary { 
    border-left: 4px solid var(--secondary-color) !important; 
}

.service-detail-title { 
    color: var(--primary-color); 
    font-size: 2.2rem; 
    letter-spacing: -1px; 
}

.service-detail-img { 
    max-height: 450px; 
}

.sidebar-promo-bg { 
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%); 
}

.btn-sidebar-phone { 
    border-radius: 4px; 
    font-size: 14px; 
}

.btn-sidebar-wa { 
    background-color: #25d366; 
    border: none; 
    border-radius: 4px; 
    font-size: 14px; 
}

.service-img-box-lg { 
    height: 220px; 
    background-color: #f1f5f9; 
}

.service-card-title { 
    font-size: 1.2rem; 
    letter-spacing: -0.5px; 
}

.service-card-excerpt { 
    line-height: 1.6; 
}

.breadcrumb-sm { 
    font-size: 14px; 
    font-weight: 500; 
}

.blog-detail-title { 
    color: var(--primary-color); 
    font-size: 2.2rem; 
    letter-spacing: -1px; 
}

.border-custom { 
    border-color: #e2e8f0 !important; 
}

.blog-detail-img { 
    max-height: 400px; 
}

.author-icon-box { 
    width: 50px; 
    height: 50px; 
}

.sticky-sidebar { 
    top: 100px; 
    z-index: 1; 
}

.sidebar-cta-bg { 
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%); 
}

.sidebar-cta-icon { 
    width: 60px; 
    height: 60px; 
    background-color: rgba(255, 255, 255, 0.2); 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 24px; 
}

.btn-sidebar-cta { 
    color: var(--primary-color); 
    border-radius: 4px; 
    font-size: 13px; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
}

.sidebar-widget { 
    border-top: 4px solid var(--secondary-color) !important; 
}

.sidebar-widget-title { 
    letter-spacing: 0.5px; 
}

.sidebar-list-icon { 
    font-size: 10px; 
    color: var(--secondary-color); 
}

.sidebar-list-text { 
    line-height: 1.4; 
}

.page-header-dark-bg { 
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a2a4f 100%); 
    color: white; 
    overflow: hidden; 
    min-height: 250px; 
    display: flex; 
    align-items: center; 
}

.blog-header-icon { 
    width: 60px; 
    height: 60px; 
    background-color: rgba(0, 156, 228, 0.2); 
    color: var(--secondary-color); 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 28px; 
}

.page-header-desc { 
    max-width: 600px; 
    font-size: 1.1rem; 
}

.blog-card-border { 
    border: 1px solid #e2e8f0 !important; 
}

.blog-card-img-wrap { 
    height: 220px; 
}

.blog-badge { 
    background-color: var(--secondary-color); 
    font-size: 11px; 
    padding: 6px 10px; 
    letter-spacing: 0.5px; 
}

.btn-read-more { 
    color: var(--secondary-color); 
    font-size: 13px; 
    text-transform: uppercase; 
}

.btn-read-more i { 
    font-size: 11px; 
}

.page-link-custom { 
    color: var(--primary-color); 
}

.page-link-active { 
    background-color: var(--secondary-color); 
    color: white; 
    border-color: var(--secondary-color); 
}

/* Makale İçi HTML Düzenlemeleri */
.article-content, 
.service-content { 
    font-size: 1.1rem; 
    line-height: 1.9; 
    color: var(--text-dark); 
}

.article-content h2, 
.article-content h3, 
.service-content h2, 
.service-content h3 { 
    color: var(--primary-color); 
    font-weight: 700; 
    margin-top: 1.5em; 
    margin-bottom: 1rem; 
}

.article-content p, 
.service-content p { 
    margin-bottom: 1.5rem; 
}

.article-content img, 
.service-content img { 
    max-width: 100%; 
    height: auto; 
    border-radius: 8px; 
    margin: 1.5rem 0; 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05); 
}

.article-content ul, 
.article-content ol, 
.service-content ul { 
    margin-bottom: 1.5rem; 
    padding-left: 1.5rem; 
}

.article-content li, 
.service-content li { 
    margin-bottom: 0.5rem; 
}

.service-content ul { 
    list-style: none; 
    padding-left: 0; 
}

.service-content li { 
    position: relative; 
    padding-left: 1.5rem; 
}

.service-content li::before { 
    content: "\f058"; 
    font-family: "Font Awesome 5 Free"; 
    font-weight: 900; 
    color: var(--secondary-color); 
    position: absolute; 
    left: 0; 
    top: 2px; 
}

.article-content blockquote { 
    border-left: 4px solid var(--secondary-color); 
    padding-left: 1rem; 
    color: var(--primary-color); 
    font-style: italic; 
    background: var(--bg-light); 
    padding: 1rem; 
    border-radius: 0 8px 8px 0; 
}

/* ==========================================================================
   15. KURUMSAL VE YASAL SAYFA BİLEŞENLERİ (KVKK, ÇEVRE, GİZLİLİK)
   ========================================================================== */
.policy-heading, 
.legal-heading { 
    color: var(--primary-color); 
    letter-spacing: -0.5px; 
}

.policy-subheading, 
.legal-subheading { 
    color: var(--primary-color); 
    font-size: 1.2rem; 
}

.policy-text, 
.legal-content { 
    font-size: 1.05rem; 
    line-height: 1.9; 
}

.policy-list-icon { 
    color: var(--secondary-color); 
    font-size: 1.2rem; 
}

.alert-info-custom { 
    background-color: #f0f9ff; 
    border-left: 4px solid var(--secondary-color) !important; 
}

.lh-16 { 
    line-height: 1.6; 
}

/* ==========================================================================
   16. İLETİŞİM SAYFASI BİLEŞENLERİ
   ========================================================================== */
.contact-main-title { 
    letter-spacing: -0.5px; 
}

.contact-desc { 
    line-height: 1.7; 
    font-size: 15px; 
}

.contact-info-text { 
    font-size: 14px; 
    line-height: 1.6; 
}

.contact-list { 
    font-size: 14px; 
}

.contact-list-icon { 
    width: 15px; 
}

.contact-honeypot { 
    display: none; 
    position: absolute; 
    left: -9999px; 
}

.contact-captcha-box { 
    width: 100px; 
}

.contact-checkbox { 
    cursor: pointer; 
    width: 1.2rem; 
    height: 1.2rem; 
    margin-top: 0; 
    border-color: #cbd5e1; 
}

.contact-checkbox-label { 
    font-size: 13px; 
    line-height: 1.5; 
    cursor: pointer; 
}

.btn-contact-submit { 
    background-color: var(--secondary-color); 
    border: none; 
    border-radius: 4px; 
    font-size: 14px; 
    letter-spacing: 1px; 
    text-transform: uppercase; 
}

.alert-danger-custom { 
    border-left: 4px solid #dc2626 !important; 
}

.alert-warning-custom { 
    border-left: 4px solid #f59e0b !important; 
}

.alert-success-custom { 
    border-left: 4px solid #10b981 !important; 
    background-color: #f0fdf4; 
    color: #065f46; 
}

/* ========================================================================== 
   17. MOBİL UYUMLULUK (MEDIA QUERIES) - EN ALTTA OLMASI GEREKİR
   ========================================================================== */ 
@media (max-width: 1199.98px) { 
    .swipeable-item { 
        flex: 0 0 calc(25% - 15px); 
    } 
} 

@media (min-width: 992px) {  
    .wa-text { 
        display: inline-block; 
    }  
} 

@media (max-width: 991.98px) { 
    .navbar { 
        padding: 5px 0; 
    } 
    .navbar-nav { 
        align-items: flex-start; 
    } 
    .nav-link { 
        margin: 5px 0; 
        padding: 10px 0 !important; 
        display: inline-flex; 
        font-size: 15px; 
        width: 100%; 
    } 
    .nav-link::before { 
        display: none; 
    } 
    .lang-dropdown { 
        margin-top: 15px; 
        margin-left: 0 !important; 
    } 
    .navbar-brand img { 
        max-height: 60px !important; 
        margin: 0 !important; 
    } 
    .navbar-collapse { 
        padding-top: 15px; 
        padding-bottom: 15px; 
    } 

    .swipeable-item { 
        flex: 0 0 calc(40% - 15px); 
    } 
    .section-title { 
        font-size: 2.2rem; 
    } 
     
    .footer-legal-links { 
        margin-top: 10px; 
    } 
    
    /* Hero Section Responsive */
    .cinematic-hero { 
        min-height: 80vh; 
        text-align: center; 
    } 
    .cinematic-hero-slider .carousel-item { 
        height: 80vh; 
    } 
    .c-hero-line { 
        margin: 0 auto 25px auto; 
    } 
    .c-hero-title { 
        font-size: 2.6rem; 
        margin: 0 auto 20px auto; 
    } 
    .c-hero-desc { 
        margin: 0 auto 35px auto; 
        font-size: 1.1rem; 
    } 
    .c-hero-btns { 
        flex-direction: column; 
        align-items: stretch; 
        gap: 15px; 
        max-width: 350px; 
        margin: 0 auto; 
    } 
    .carousel-control-prev.c-carousel-control, 
    .carousel-control-next.c-carousel-control { 
        display: none; 
    } 
} 

@media (max-width: 768px) {  
    .error-404-section h1.display-1 { 
        font-size: 8rem !important; 
        margin-bottom: 1rem !important; 
    } 
    
    /* Mobil cihazlarda WhatsApp butonunu her zaman açık tut (çünkü mobilde hover olmaz) */
    .whatsapp-modern-wrapper { 
        bottom: 20px; 
        right: 20px; 
    } 
    .whatsapp-modern-button { 
        max-width: 250px; 
        padding-right: 20px; 
    } 
    .wa-text-container { 
        opacity: 1; 
        transform: translateX(0); 
    } 
} 

@media (max-width: 576px) {  
    .cookie-box { 
        width: calc(100% - 40px); 
        left: 20px; 
        right: 20px; 
    }  
    .swipeable-item { 
        flex: 0 0 calc(75% - 15px); 
    } 
    
    /* Hero Section Mobile Text */
    .c-hero-title { 
        font-size: 2.2rem; 
    } 
}