:root {
    --navy: #030a1a;
    --green: #8B0000;
    --stats-bg: #051129;
}

* { margin:0; padding:0; box-sizing: border-box; }
html { overflow-x: hidden; width: 100%; max-width: 100%; }
body { font-family: 'Klavika', sans-serif; background: var(--navy); color: white; overflow-x: hidden; width: 100%; max-width: 100%; position: relative; }

/* Menü Overlay */
.overlay { height: 100%; width: 0; position: fixed; z-index: 10000; top: 0; left: 0; background: var(--navy); overflow-x: hidden; transition: width 0.5s ease; display: block !important; visibility: hidden; }
.overlay[style*="width: 100%"] { visibility: visible !important; }
.overlay-content { display: flex; padding: 10% 8%; height: 100%; overflow-y: auto; }
.menu-left { flex: 1.2; display: flex; flex-direction: column; gap: 15px; }
.menu-left a { font-size: 2.2rem; text-decoration: none; color: #888; transition: 0.3s; padding: 8px 0; }
.menu-left a.active { color: black; background: white; padding: 8px 20px; width: fit-content; border-radius: 4px; }
.menu-left a:hover { color: #fff; padding-left: 10px; }
.menu-right { flex: 1; border-left: 1px solid rgba(255,255,255,0.1); padding-left: 60px; display: flex; flex-direction: column; gap: 20px; }
.menu-logo { width: 150px; margin-bottom: 10px; filter: brightness(0) invert(1); }
.menu-lang { display: flex; align-items: center; gap: 0; margin-bottom: 10px; }
.menu-lang a { color: #fff; text-decoration: none; font-size: 16px; opacity: 0.7; transition: all 0.3s; padding: 8px 12px; position: relative; display: inline-block; font-weight: 500; }
.menu-lang a:hover { opacity: 1; color: var(--green); }
.menu-lang a.active { opacity: 1; color: #fff; background: rgba(255,255,255,0.1); border-radius: 4px; font-weight: 600; }
.menu-lang a:not(:last-child)::after { content: '|'; position: absolute; right: -2px; color: rgba(255,255,255,0.3); font-weight: normal; opacity: 0.5; }
.menu-right p { color: #aaa; font-size: 14px; margin: 0; }
.closebtn { position: fixed; top: 30px; right: 30px; font-size: 40px; color: var(--green); cursor: pointer; transition: 0.3s; z-index: 10005 !important; background: rgba(3, 10, 26, 0.9); width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; border-radius: 50%; pointer-events: auto !important; }
.closebtn:hover { color: #fff; transform: scale(1.1); background: rgba(139, 0, 0, 0.9); }

/* Hero Section */
.hero { height: 100vh; position: relative; display: flex; align-items: center; justify-content: flex-end; }
.hero.hero-inner { height: 60vh; min-height: 420px; }
.hero-video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; pointer-events: none; }
.hero-overlay { position: absolute; inset: 0; background: rgba(3, 10, 26, 0.5); z-index: 2; pointer-events: none; }

/* Header Kalyon Tarzı */
header { position: absolute; top: 0; width: 100%; max-width: 100%; padding: 30px 60px; display: flex; justify-content: space-between; align-items: center; z-index: 100000 !important; box-sizing: border-box; }
.main-logo img { height: 40px; }
.header-nav { position: relative; display: flex; gap: 30px; align-items: center; }
.header-nav a { color: #fff; text-decoration: none; font-size: 14px; opacity: 0.9; transition: 0.3s; position: relative; }
.header-nav a:hover { opacity: 1; }
.header-nav .has-submenu { 
    position: relative; 
    display: inline-block;
}
.header-nav .has-submenu > a { 
    display: inline-flex; 
    align-items: center; 
    cursor: pointer;
}
.header-nav .submenu { 
    position: absolute; 
    top: 100%; 
    left: 0; 
    background: rgba(3, 10, 26, 0.98); 
    backdrop-filter: blur(10px); 
    min-width: 220px; 
    padding: 10px 0; 
    border-radius: 8px; 
    display: none; 
    z-index: 10000; 
    box-shadow: 0 5px 20px rgba(0,0,0,0.3); 
    border: 1px solid rgba(255,255,255,0.1);
    white-space: nowrap;
}
.header-nav .has-submenu:hover .submenu,
.header-nav .has-submenu .submenu:hover { 
    display: block !important; 
}
.header-nav .submenu a { 
    display: block; 
    padding: 12px 20px; 
    color: #fff; 
    opacity: 0.8; 
    text-decoration: none; 
    transition: all 0.3s;
}
.header-nav .submenu a:hover { 
    opacity: 1; 
    background: rgba(139, 0, 0, 0.3); 
    padding-left: 25px;
}
.header-nav .submenu .submenu-see-all {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 8px;
    padding-top: 12px;
}
.header-right { display: flex; align-items: center; gap: 20px; position: relative; z-index: 100001 !important; }
.social-icons-header { display: flex; gap: 15px; }
.social-icons-header a { color: #fff; font-size: 16px; opacity: 0.8; transition: 0.3s; }
.social-icons-header a:hover { opacity: 1; }
.lang { color: #fff; font-size: 14px; padding-left: 20px; border-left: 1px solid rgba(255,255,255,0.3); display: flex; align-items: center; gap: 0; position: relative; z-index: 100002 !important; }
.lang a { color: #fff; text-decoration: none; font-size: 14px; opacity: 0.7; transition: all 0.3s; padding: 4px 10px; position: relative; display: inline-block; cursor: pointer; pointer-events: auto; z-index: 100003 !important; }
.lang a:hover { opacity: 1; color: var(--green); }
.lang a.active { opacity: 1; color: #fff; font-weight: 600; }
.lang a:not(:last-child)::after { content: '|'; position: absolute; right: -2px; color: rgba(255,255,255,0.3); font-weight: normal; opacity: 0.5; }
.mobile-menu-btn { display: none; color: #fff; font-size: 24px; cursor: pointer; z-index: 10001; position: relative; background: none; border: none; padding: 5px; }
.mobile-menu-btn i { pointer-events: none; }

/* Hero Sidebar - Sol Menü */
.hero-sidebar { position: absolute; left: 60px; top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; gap: 20px; z-index: 50; }
.sidebar-item { display: flex; align-items: center; gap: 15px; color: #fff; cursor: pointer; transition: 0.3s; padding-bottom: 15px; border-bottom: 1px solid transparent; }
.sidebar-item i { font-size: 22px; width: 35px; opacity: 0.7; }
.sidebar-item span { font-size: 14px; opacity: 0.9; }
.sidebar-item:hover { border-bottom: 1px solid #fff; }
.sidebar-item:hover i, .sidebar-item:hover span { opacity: 1; color: #fff; }

/* Hero Text - Sağ Alt */
.hero-text { position: absolute; right: 100px; bottom: 150px; text-align: right; z-index: 50; }
.hero-text h1 { font-size: 3rem; font-weight: 300; line-height: 1.3; color: #fff; }
.hero-text.hero-text-center { left: 50%; top: 50%; transform: translate(-50%, -50%); right: auto; bottom: auto; text-align: center; }
.hero-subtitle { color: #ddd; margin-top: 15px; font-size: 1rem; }
.hero-subtitle i { margin-right: 5px; color: var(--green); }

/* İç Sayfa İçerik Stilleri */
.page-content-section { padding: 100px 60px; background: white; color: #333; min-height: 60vh; }
.page-content-inner { max-width: 1200px; margin: 0 auto; }
.page-title { font-size: 2.5rem; margin-bottom: 30px; color: var(--navy); }
.page-image-wrapper { margin-bottom: 40px; }
.page-image { width: 100%; max-height: 500px; object-fit: cover; border-radius: 12px; }
.page-description { font-size: 1.2rem; line-height: 1.8; color: #666; margin-bottom: 30px; }
.page-content-text { font-size: 1.1rem; line-height: 1.8; color: #555; }
.page-content-text p { margin-bottom: 20px; }
.page-content-text h2, .page-content-text h3, .page-content-text h4 { margin-top: 30px; margin-bottom: 20px; color: var(--navy); }
.page-content-text h2 { font-size: 2rem; }
.page-content-text h3 { font-size: 1.5rem; }
.page-content-text h4 { font-size: 1.2rem; }
.page-content-text ul, .page-content-text ol { padding-left: 30px; margin-bottom: 20px; }
.page-content-text li { margin-bottom: 10px; }
.page-empty-message { color: #999; font-style: italic; }

/* Scroll Down */
.scroll-down { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 50; }
.scroll-down i { font-size: 24px; color: #fff; opacity: 0.6; animation: bounce 2s infinite; }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(10px); } }

/* Hakkımızda Düzeltilmiş (image_bbdce7.jpg) */
.about-section { background: white; color: #333; padding: 100px 0; }
.about-container { max-width: 1200px; margin: auto; display: flex; align-items: flex-start; }
.vertical-title { 
    writing-mode: vertical-rl; 
    transform: rotate(180deg); 
    font-size: 2.5rem; 
    font-weight: 900; 
    color: var(--green); 
    border-left: 1px solid #ddd; 
    padding-left: 20px;
    margin-right: 40px;
}
.about-content { flex: 1; }
.about-content p { font-size: 1.1rem; line-height: 1.8; margin-bottom: 30px; }
.btn-detail { padding: 12px 35px; border: 1px solid var(--green); background: transparent; color: var(--green); font-weight: bold; cursor: pointer; }

/* İstatistikler Düzeltilmiş (image_b1cd7a.png) */
.stats-section { background: var(--stats-bg); padding: 80px 20px; text-align: center; }
.stats-header h2 { font-size: 1.8rem; margin-bottom: 10px; }
.stats-header p { color: #888; margin-bottom: 50px; }
.stats-grid { display: flex; justify-content: center; gap: 80px; flex-wrap: wrap; }
.stat-item strong { font-size: 3.5rem; display: block; margin-bottom: 5px; }
.stat-item span { color: #888; font-size: 0.9rem; letter-spacing: 2px; }

/* Faaliyet Alanları Bölümü - Yatay Slider */
.activity-areas-section { 
    background: #fff; 
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.activity-areas-header {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    margin-bottom: 50px;
}
.activity-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.activity-section-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--navy);
    letter-spacing: 2px;
    margin: 0;
}
.activity-see-all-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--green);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: all 0.3s;
}
.activity-see-all-link:hover {
    gap: 15px;
    color: var(--navy);
}
.activity-see-all-link i {
    transition: transform 0.3s;
}
.activity-see-all-link:hover i {
    transform: translateX(5px);
}
.activity-areas-slider-wrapper {
    position: relative;
    padding: 0 60px;
    overflow: hidden;
}
.activity-areas-slider {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 20px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    width: 100%;
}
.activity-areas-slider::-webkit-scrollbar {
    display: none;
}
.activity-slide-item {
    position: relative;
    min-width: 380px;
    width: 380px;
    height: 320px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    scroll-snap-align: start;
}
.activity-slide-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.activity-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(3, 10, 26, 0.3) 0%, rgba(3, 10, 26, 0.8) 100%);
    z-index: 1;
    transition: background 0.4s;
}
.activity-slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 35px;
    color: #fff;
}
.activity-slide-icon {
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.activity-slide-icon i {
    font-size: 3rem;
    color: #fff;
}
.activity-slide-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.3;
    transition: all 0.4s;
}
.activity-slide-arrow {
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.activity-slide-arrow i {
    font-size: 1.2rem;
    color: #fff;
}
.activity-slide-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.activity-slide-item:hover .activity-slide-overlay {
    background: linear-gradient(180deg, rgba(139, 0, 0, 0.4) 0%, rgba(139, 0, 0, 0.85) 100%);
}
.activity-slide-item:hover img {
    transform: scale(1.15);
}
.activity-slide-item:hover .activity-slide-icon,
.activity-slide-item:hover .activity-slide-arrow {
    opacity: 1;
    transform: translateY(0) translateX(0);
}
.activity-slide-item:hover .activity-slide-title {
    transform: translateY(-5px);
}
.activity-slider-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}
.activity-slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--green);
    background: #fff;
    color: var(--green);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 1.2rem;
}
.activity-slider-btn:hover {
    background: var(--green);
    color: #fff;
    transform: scale(1.1);
}

/* Basın Bölümü */
.press-section { background: #fff; padding: 80px 60px; }
.press-header { text-align: center; margin-bottom: 50px; }
.press-header h2 { font-size: 2.5rem; color: var(--navy); margin-bottom: 10px; }
.press-header p { color: #666; font-size: 1.1rem; }
.press-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: 1400px; margin: auto; padding: 0 20px; }
.press-item { background: #fff; border-radius: 10px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.08); transition: 0.3s; display: flex; flex-direction: column; height: 100%; cursor: pointer; }
.press-item:hover { transform: translateY(-10px); box-shadow: 0 15px 40px rgba(0,0,0,0.15); }
.press-item img { width: 100%; height: 250px; object-fit: cover; display: block; flex-shrink: 0; }
.press-content { padding: 25px; background: #fff; flex: 1; display: flex; flex-direction: column; }
.press-date { color: #0066cc; font-size: 0.9rem; font-weight: 500; display: block; margin-bottom: 12px; }
.press-content h3 { color: var(--navy); font-size: 1.35rem; font-weight: 700; margin: 0 0 12px 0; line-height: 1.3; }
.press-content p { color: #555; font-size: 0.95rem; line-height: 1.7; margin: 0; }

/* Footer */
.footer { background: #020816; border-top: 1px solid #112244; }
.footer-top { padding: 80px 60px 40px; }
.footer-container { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 50px; }
.footer-bottom { background: #010510; padding: 25px 60px; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-bottom .footer-container { display: flex; justify-content: center; align-items: center; }

.footer-info { display: flex; flex-direction: column; gap: 15px; }
.footer-logo { margin-bottom: 15px; }
.footer-logo img { height: 45px; filter: brightness(0) invert(1); }
.footer-about-link { text-decoration: none; margin-bottom: 15px; display: inline-block; transition: all 0.3s; }
.footer-about-link:hover { transform: translateY(-2px); }
.footer-description { color: #aaa; font-size: 14px; line-height: 1.8; margin-bottom: 30px; max-width: 350px; }
.footer-socials { display: flex; gap: 12px; }
.social-link { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; color: #aaa; font-size: 16px; transition: all 0.3s; text-decoration: none; }
.social-link:hover { background: var(--green); border-color: var(--green); color: white; transform: translateY(-3px); }

.footer-column { display: flex; flex-direction: column; gap: 10px; }
.footer-title { color: white; font-size: 16px; font-weight: 600; margin-bottom: 25px; padding-bottom: 15px; border-bottom: 2px solid var(--green); display: inline-block; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: #aaa; text-decoration: none; font-size: 14px; display: flex; align-items: center; gap: 10px; transition: all 0.3s; }
.footer-link-line { width: 20px; height: 1px; background: var(--green); display: inline-block; flex-shrink: 0; }
.footer-links a:hover { color: white; padding-left: 5px; }
.footer-links a:hover .footer-link-line { width: 30px; background: var(--green); }

.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { margin-bottom: 18px; display: flex; align-items: flex-start; gap: 12px; color: #aaa; font-size: 14px; line-height: 1.6; }
.footer-contact li i { color: white; font-size: 16px; width: 20px; margin-top: 2px; }
.footer-contact li:hover i { color: var(--green); }
.footer-contact li a { color: #aaa; text-decoration: none; transition: color 0.3s; }
.footer-contact li a:hover { color: var(--green); }

/* Kariyer Başvuru Modal */
.career-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.career-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}
.career-modal-content {
    position: relative;
    background: white;
    border-radius: 16px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 10001;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.career-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid #e0e0e0;
}
.career-modal-header h2 {
    margin: 0;
    font-size: 1.8rem;
    color: var(--navy);
}
.career-modal-close {
    font-size: 32px;
    color: #999;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s;
}
.career-modal-close:hover {
    color: var(--green);
}
.career-modal-body {
    padding: 30px;
}

.copyright { color: #666; font-size: 13px; text-align: center; margin: 0; }

.social-icons { display: flex; gap: 15px; }
.social-icons i, .social-icons a { font-size: 20px; color: #888; cursor: pointer; transition: 0.3s; text-decoration: none; }
.social-icons i:hover, .social-icons a:hover { color: #fff; }

/* Mobil Uyumluluk */
/* Tablet */
@media (max-width: 1024px) and (min-width: 769px) {
    .content-wrapper [style*="grid-template-columns"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 25px !important;
    }
    .content-wrapper .activity-slide-item {
        height: 300px !important;
    }
    .press-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 25px !important;
    }
}

@media (max-width: 768px) {
    .about-container { flex-direction: column; padding: 20px; }
    .vertical-title { writing-mode: horizontal-tb; transform: none; border-left: none; border-bottom: 2px solid var(--green); padding: 0 0 10px 0; margin-bottom: 20px; }
    .stats-grid { gap: 30px; }
    .footer-top { padding: 50px 20px 30px; }
    .footer-bottom { padding: 20px; }
    .footer-container { grid-template-columns: 1fr; gap: 40px; }
    .footer-description { max-width: 100%; }
    .footer-title { font-size: 14px; }
    
    /* Hero Mobil */
    html { overflow-x: hidden !important; }
    body { overflow-x: hidden !important; width: 100% !important; max-width: 100% !important; position: relative !important; }
    header { padding: 12px 15px !important; flex-wrap: nowrap !important; position: fixed !important; background: rgba(3, 10, 26, 0.95) !important; backdrop-filter: blur(10px) !important; width: 100% !important; max-width: 100% !important; box-sizing: border-box !important; left: 0 !important; right: 0 !important; z-index: 100000 !important; }
    .header-nav { display: none !important; }
    .social-icons-header { display: none !important; }
    .lang { border: none; padding-left: 0; font-size: 11px !important; flex-shrink: 0; position: relative !important; z-index: 100002 !important; pointer-events: auto !important; }
    .lang a { font-size: 11px !important; padding: 3px 6px !important; cursor: pointer !important; pointer-events: auto !important; z-index: 100003 !important; position: relative !important; display: inline-block !important; }
    .mobile-menu-btn { display: block !important; font-size: 20px !important; z-index: 100004 !important; flex-shrink: 0 !important; padding: 5px !important; min-width: 30px !important; pointer-events: auto !important; }
    .hero-sidebar { display: none !important; }
    .hero-text { right: 15px !important; bottom: 80px !important; left: 15px !important; text-align: center !important; position: absolute !important; max-width: calc(100% - 30px) !important; box-sizing: border-box !important; }
    .hero-text h1 { font-size: 1.4rem !important; line-height: 1.4 !important; word-wrap: break-word !important; overflow-wrap: break-word !important; }
    .scroll-down { display: none; }
    .main-logo { flex-shrink: 1 !important; max-width: calc(100% - 120px) !important; }
    .main-logo img { max-width: 100% !important; height: auto !important; }
    
    /* Faaliyet Alanları Mobil */
    .activity-areas-section { padding: 50px 0; }
    .activity-areas-header { padding: 0 20px; margin-bottom: 30px; }
    .activity-header-content { flex-direction: column; align-items: flex-start; gap: 20px; }
    .activity-section-title { font-size: 1.8rem; }
    .activity-areas-slider-wrapper { padding: 0 20px; }
    .activity-slide-item { min-width: 280px; width: 280px; height: 250px; }
    .activity-slide-content { padding: 25px; }
    .activity-slide-icon i { font-size: 2.2rem; }
    .activity-slide-title { font-size: 1.4rem; }
    .activity-slider-controls { margin-top: 20px; }
    .activity-slider-btn { width: 45px; height: 45px; font-size: 1rem; }
    
    /* Faaliyet Alanları Grid - Mobil */
    .content-wrapper [style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    .content-wrapper .activity-slide-item {
        min-width: 100% !important;
        width: 100% !important;
        height: 280px !important;
    }
    
    /* Basın Mobil */
    .press-section { padding: 50px 20px; }
    .press-grid { grid-template-columns: 1fr; padding: 0; }
    
    /* Mobil Menü Overlay */
    .overlay { z-index: 10000 !important; display: block !important; width: 100% !important; max-width: 100% !important; overflow-x: hidden !important; }
    .overlay-content { flex-direction: column; padding: 70px 20px 30px; height: 100vh; overflow-y: auto; overflow-x: hidden !important; -webkit-overflow-scrolling: touch; width: 100% !important; max-width: 100% !important; box-sizing: border-box !important; }
    .menu-left { flex: 1; margin-bottom: 25px; width: 100% !important; max-width: 100% !important; }
    .menu-left a { font-size: 1.5rem !important; padding: 12px 0; display: block; text-decoration: none; word-wrap: break-word; }
    .menu-right { flex: 1; border-left: none; border-top: 1px solid rgba(255,255,255,0.1); padding-left: 0; padding-top: 25px; width: 100% !important; max-width: 100% !important; }
    .menu-logo { display: none !important; }
    .menu-lang { margin-bottom: 15px; justify-content: center; }
    .menu-lang a { font-size: 15px !important; padding: 8px 12px !important; }
    .closebtn { top: 15px !important; right: 15px !important; font-size: 30px !important; width: 40px !important; height: 40px !important; z-index: 10005 !important; cursor: pointer !important; pointer-events: auto !important; }
    
    /* Header Mobil */
    .header-right { gap: 8px !important; align-items: center !important; display: flex !important; flex-shrink: 0 !important; position: relative !important; z-index: 100001 !important; }
    .main-logo { flex: 1; min-width: 0; }
    .main-logo img { height: 30px !important; max-width: 100% !important; }
    
    /* Hero Mobil */
    .hero { height: 100vh; min-height: 500px; padding-top: 70px; width: 100% !important; max-width: 100% !important; overflow: hidden !important; position: relative !important; }
    .hero.hero-inner { height: 50vh !important; min-height: 300px !important; padding-top: 70px !important; }
    .hero-video { width: 100% !important; max-width: 100% !important; height: 100% !important; object-fit: cover !important; }
    .hero-text.hero-text-center h1 { font-size: 1.5rem !important; line-height: 1.3 !important; padding: 0 15px !important; }
    
    /* Genel Mobil Düzenlemeler */
    .content-wrapper { padding: 30px 15px !important; width: 100% !important; max-width: 100% !important; box-sizing: border-box !important; overflow-x: hidden !important; }
    
    /* İç Sayfa Mobil Düzenlemeler */
    .page-content-section { padding: 40px 15px !important; background: white !important; color: #333 !important; min-height: auto !important; }
    .page-content-inner { max-width: 100% !important; width: 100% !important; margin: 0 auto !important; box-sizing: border-box !important; }
    .page-title { font-size: 1.8rem !important; margin-bottom: 20px !important; color: var(--navy) !important; word-wrap: break-word !important; line-height: 1.3 !important; }
    .page-image-wrapper { margin-bottom: 25px !important; width: 100% !important; max-width: 100% !important; }
    .page-image { width: 100% !important; max-width: 100% !important; max-height: 300px !important; object-fit: cover !important; border-radius: 8px !important; }
    .page-description { font-size: 1rem !important; line-height: 1.7 !important; color: #666 !important; margin-bottom: 25px !important; word-wrap: break-word !important; }
    .page-content-text { font-size: 0.95rem !important; line-height: 1.8 !important; color: #555 !important; word-wrap: break-word !important; overflow-wrap: break-word !important; }
    .page-content-text p { margin-bottom: 15px !important; }
    .page-content-text h2, .page-content-text h3, .page-content-text h4 { font-size: 1.2rem !important; margin-top: 25px !important; margin-bottom: 15px !important; color: var(--navy) !important; }
    .page-content-text ul, .page-content-text ol { padding-left: 20px !important; margin-bottom: 15px !important; }
    .page-content-text li { margin-bottom: 8px !important; }
    .page-empty-message { color: #999 !important; font-style: italic !important; font-size: 0.9rem !important; }
    .about-section { padding: 30px 0 !important; width: 100% !important; max-width: 100% !important; overflow-x: hidden !important; }
    .about-container { padding: 15px !important; width: 100% !important; max-width: 100% !important; box-sizing: border-box !important; }
    .about-content { width: 100% !important; max-width: 100% !important; box-sizing: border-box !important; }
    .about-content p { font-size: 0.9rem; line-height: 1.7; word-wrap: break-word; }
    .stats-section { padding: 30px 15px !important; width: 100% !important; max-width: 100% !important; box-sizing: border-box !important; }
    .stats-header { margin-bottom: 30px; width: 100% !important; max-width: 100% !important; }
    .stats-header h2 { font-size: 1.6rem !important; word-wrap: break-word; }
    .stats-header p { font-size: 0.9rem !important; word-wrap: break-word; }
    .stats-grid { gap: 25px !important; width: 100% !important; max-width: 100% !important; }
    .stat-item { max-width: 100% !important; }
    .stat-item strong { font-size: 1.8rem !important; }
    .stat-item span { font-size: 0.8rem !important; }
    
    /* Press Header Mobil */
    .press-section { width: 100% !important; max-width: 100% !important; overflow-x: hidden !important; }
    .press-header { margin-bottom: 30px !important; width: 100% !important; max-width: 100% !important; }
    .press-header h2 { font-size: 1.6rem !important; word-wrap: break-word; }
    .press-header p { font-size: 0.9rem !important; word-wrap: break-word; }
    .press-grid { width: 100% !important; max-width: 100% !important; box-sizing: border-box !important; }
    .press-item { margin-bottom: 20px; width: 100% !important; max-width: 100% !important; box-sizing: border-box !important; }
    .press-item img { width: 100% !important; max-width: 100% !important; }
    .press-content { padding: 20px !important; width: 100% !important; box-sizing: border-box !important; }
    .press-content h3 { font-size: 1.15rem !important; word-wrap: break-word; }
    .press-content p { font-size: 0.85rem !important; word-wrap: break-word; }
    
    /* Activity Areas Mobil */
    .activity-areas-section { padding: 40px 0 !important; width: 100% !important; max-width: 100% !important; overflow-x: hidden !important; }
    .activity-section-title { font-size: 1.6rem !important; word-wrap: break-word; }
    .activity-areas-slider-wrapper { width: 100% !important; max-width: 100% !important; overflow-x: hidden !important; }
    
    /* Footer Mobil */
    .footer { width: 100% !important; max-width: 100% !important; overflow-x: hidden !important; }
    .footer-container { width: 100% !important; max-width: 100% !important; box-sizing: border-box !important; }
    
    /* Body ve Genel */
    body { font-size: 14px; overflow-x: hidden !important; }
    .btn-detail { padding: 12px 24px; font-size: 0.9rem; max-width: 100% !important; box-sizing: border-box !important; }
    
    /* Tüm görseller için */
    img { max-width: 100% !important; height: auto !important; }
}

/* Font Awesome Icon Fix */
.fas, .far, .fab, .fa {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands" !important;
    font-weight: 900;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

.far {
    font-weight: 400;
}

/* Career Application Form Styles */
#careerApplicationForm input[type="file"]::-webkit-file-upload-button {
    background: var(--green);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    margin-right: 10px;
    font-size: 0.9rem;
}

#careerApplicationForm input[type="file"]::-webkit-file-upload-button:hover {
    background: #6B0000;
}

#careerApplicationForm input::placeholder,
#careerApplicationForm textarea::placeholder {
    color: rgba(255,255,255,0.5) !important;
}

#careerApplicationForm input:focus,
#careerApplicationForm textarea:focus,
#careerApplicationForm input[type="file"]:focus {
    outline: none !important;
    border-color: var(--green) !important;
    background: rgba(255,255,255,0.15) !important;
    box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.1) !important;
}

#careerApplicationForm input[type="file"]::-webkit-file-upload-button {
    background: var(--green) !important;
    color: white !important;
    border: none !important;
    padding: 8px 16px !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    margin-right: 10px !important;
    font-size: 0.9rem !important;
    transition: all 0.3s !important;
}

#careerApplicationForm input[type="file"]::-webkit-file-upload-button:hover {
    background: #6B0000 !important;
}

#careerApplicationForm input[type="file"]::file-selector-button {
    background: var(--green) !important;
    color: white !important;
    border: none !important;
    padding: 8px 16px !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    margin-right: 10px !important;
    font-size: 0.9rem !important;
    transition: all 0.3s !important;
}

#careerApplicationForm input[type="file"]::file-selector-button:hover {
    background: #6B0000 !important;
}

#careerApplicationForm button[type="submit"]:hover {
    background: #6B0000 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.3) !important;
}

#careerApplicationForm button[type="submit"]:active {
    transform: translateY(0) !important;
}

/* Mobile Form Responsive */
@media (max-width: 768px) {
    .form-row-responsive {
        flex-direction: column !important;
        gap: 0 !important;
    }
    
    .form-row-responsive > div {
        margin-bottom: 25px !important;
    }
    
    .form-row-responsive > div:last-child {
        margin-bottom: 0 !important;
    }
}

/* Career Page Styles */
.career-page-wrapper {
    padding: 100px 60px;
    background: white;
    color: #333;
    min-height: 60vh;
}

.career-container {
    max-width: 1200px;
    margin: 0 auto;
}

.career-title {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--navy);
    font-weight: 600;
}

.career-badges {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.career-badge {
    background: #f0f0f0;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #555;
}

.career-badge i {
    color: var(--green);
    font-size: 0.9rem;
}

.career-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
    font-weight: 300;
}

.career-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 50px;
}

.career-sections {
    display: grid;
    gap: 40px;
    margin-bottom: 60px;
}

.career-section {
    padding: 30px;
    background: #f9f9f9;
    border-radius: 12px;
    border-left: 4px solid var(--green);
}

.career-section-title {
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 20px;
    font-weight: 600;
}

.career-section-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.career-application-box {
    margin-top: 50px;
    padding: 50px;
    background: var(--navy);
    border-radius: 12px;
}

.career-application-title {
    color: white;
    margin-bottom: 35px;
    font-size: 1.8rem;
    text-align: center;
    font-weight: 600;
}

.career-application-form {
    max-width: 700px;
    margin: 0 auto;
}

.career-application-form .form-group {
    margin-bottom: 25px;
}

.career-application-form .form-group:last-of-type {
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group-half {
    width: calc(50% - 10px);
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-label {
    display: block;
    color: white;
    margin-bottom: 10px;
    font-size: 0.95rem;
    font-weight: 500;
}

.form-input,
.form-textarea,
.form-file {
    width: 100%;
    padding: 14px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 1rem;
    box-sizing: border-box;
    font-family: inherit;
    transition: all 0.3s;
}

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

.form-input:focus,
.form-textarea:focus,
.form-file:focus {
    outline: none;
    border-color: var(--green);
    background: rgba(255,255,255,0.15);
    box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.1);
}

.form-textarea {
    background: rgba(255,255,255,0.1);
    color: white;
}

.form-textarea:focus {
    background: rgba(255,255,255,0.15);
}

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

.form-file {
    cursor: pointer;
    padding: 12px;
}

.form-file::-webkit-file-upload-button {
    background: var(--green);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    margin-right: 10px;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.form-file::-webkit-file-upload-button:hover {
    background: #6B0000;
}

.form-file::file-selector-button {
    background: var(--green);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    margin-right: 10px;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.form-file::file-selector-button:hover {
    background: #6B0000;
}

.form-help {
    display: block;
    color: rgba(255,255,255,0.7);
    margin-top: 8px;
    font-size: 0.85rem;
}

.file-name-display {
    color: var(--green);
    margin-top: 10px;
    font-size: 0.9rem;
    display: none;
}

.form-message {
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 8px;
    display: none;
    font-size: 0.95rem;
}

.form-submit-btn {
    width: 100%;
    padding: 16px 40px;
    background: var(--green);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.form-submit-btn:hover {
    background: #6B0000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.3);
}

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

/* Mobile Career Page */
@media (max-width: 768px) {
    .career-page-wrapper {
        padding: 40px 15px;
    }
    
    .career-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .career-badges {
        gap: 10px;
        margin-bottom: 30px;
    }
    
    .career-badge {
        padding: 8px 14px;
        font-size: 0.85rem;
    }
    
    .career-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .career-content {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .career-sections {
        gap: 25px;
        margin-bottom: 40px;
    }
    
    .career-section {
        padding: 20px;
    }
    
    .career-section-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .career-section-content {
        font-size: 1rem;
    }
    
    .career-application-box {
        padding: 30px 20px;
        margin-top: 30px;
    }
    
    .career-application-title {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .form-group-half {
        width: 100%;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
}