@charset "UTF-8";

        @font-face {
            font-family: 'Poppins';
            font-style: normal;
            font-weight: 300;
            font-display: swap;
            src: url('/assets/v25/fonts/poppins/poppins-v24-latin_latin-ext-300.woff2') format('woff2');
        }
        @font-face {
            font-family: 'Poppins';
            font-style: normal;
            font-weight: 400;
            font-display: swap;
            src: url('/assets/v25/fonts/poppins/poppins-v24-latin_latin-ext-regular.woff2') format('woff2');
        }
        @font-face {
            font-family: 'Poppins';
            font-style: normal;
            font-weight: 500;
            font-display: swap;
            src: url('/assets/v25/fonts/poppins/poppins-v24-latin_latin-ext-500.woff2') format('woff2');
        }
        @font-face {
            font-family: 'Poppins';
            font-style: normal;
            font-weight: 600;
            font-display: swap;
            src: url('/assets/v25/fonts/poppins/poppins-v24-latin_latin-ext-600.woff2') format('woff2');
        }
        @font-face {
            font-family: 'Poppins';
            font-style: normal;
            font-weight: 700;
            font-display: swap;
            src: url('/assets/v25/fonts/poppins/poppins-v24-latin_latin-ext-700.woff2') format('woff2');
        }
                :root {
            /* RENKLER */
            --alarmdc-kurumsal: #1d4156;
            --alarmdc-blue: #0070c0;
            --alarmdc-white: #ffffff;
            --alarmdc-green: #34A853;
            --alarmdc-dark-blue: #005691;
            --alarmdc-light-gray: #f2f3f4;
            --alarmdc-text-color: #333333;
            
            /* BOYUTLAR */
            --main-nav-height: 65px; 
            --sub-nav-height: 48px;  
            
            --sticky-top-margin: calc(var(--main-nav-height) + var(--sub-nav-height) + 40px);
        }
                /* GENEL SIFIRLAMA */
        a { text-decoration: none !important; } 
        * { box-sizing: border-box; }
        ul { list-style: none; margin: 0; padding: 0; }

        body {
            font-family: 'Poppins', sans-serif; 
            margin: 0;
            padding-top: calc(var(--main-nav-height) + var(--sub-nav-height)); 
            background-color: white;
            color: var(--alarmdc-text-color);
            line-height: 1.6;
        }

        .container {
            width: 85%;
            max-width: 1400px; 
            margin: auto;
            height: 100%; 
        }
                /* 1. HEADER VE MENÜ YAPISI */
        .fixed-container { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; }
        
        .main-header { 
            background-color: white; 
            height: var(--main-nav-height); 
            border-bottom: 1px solid #e0e0e0; 
            transition: transform 0.3s ease-in-out; 
            box-shadow: 0 2px 4px rgba(0,0,0,0.05); 
            position: relative; 
            z-index: 1001; 
        }
        .main-header.hidden { transform: translateY(calc(0px - var(--main-nav-height))); }
        
        .main-nav { 
            display: flex; 
            align-items: center; 
            justify-content: space-between; 
            height: 100%; 
        }
        
        .logo img { height: 32px; vertical-align: middle; }
                /* Sol taraf: Logo ve Menü Linkleri */
        .left-side-nav { display: flex; align-items: center; height: 100%; }
        .logo { margin-right: 30px; display: flex; align-items: center; }
        
        .main-menu { height: 100%; }
        .main-menu ul { display: flex; height: 100%; }
        .main-menu ul li { height: 100%; display: flex; align-items: center; }
                /* Main Menu Linkleri */
        .main-menu ul li a { 
            color: var(--alarmdc-text-color); 
            text-decoration: none; 
            padding: 0 15px; 
            height: 100%; 
            display: flex; 
            align-items: center; 
            font-weight: 400; 
            font-size: 14px; 
            transition: color 0.3s, border-color 0.3s; 
            white-space: nowrap; 
            border-bottom: 3px solid transparent; 
            border-top: 3px solid transparent; 
        }
                .main-menu ul li a:hover { color: var(--alarmdc-blue); }
        /* Aktif olanda sadece border rengi değişir, boyutu aynı kalır */
        #kaynaklar-link.main-active { 
            color: var(--alarmdc-blue); 
            border-bottom-color: var(--alarmdc-blue); 
        }
                /* Sağ taraf: Dil ve Butonlar */
        .right-section { display: flex; align-items: center; height: 100%; }
        .right-buttons { display: flex; align-items: center; gap: 10px; margin-left: 20px;}
        
        .action-button { 
            font-weight: 500; 
            font-size: 13px; 
            padding: 8px 18px; 
            border-radius: 4px; 
            transition: background-color 0.3s, color 0.3s; 
            white-space: nowrap; 
            text-decoration: none; 
            line-height: 1.2;
        }
        .login-button { background-color: var(--alarmdc-blue); color: white !important; }
        .login-button:hover { background-color: var(--alarmdc-dark-blue); }
        .request-button { background-color: white; color: var(--alarmdc-blue); border: 1px solid var(--alarmdc-blue); }
        .request-button:hover { background-color: var(--alarmdc-light-gray); color: var(--alarmdc-dark-blue); }
                /* HAMBURGER BUTONU */
        .hamburger-btn { 
            display: none; 
            font-size: 24px; 
            color: var(--alarmdc-kurumsal); 
            background: none; 
            border: none; 
            cursor: pointer; 
            padding: 5px; 
            margin-left: auto; 
        }
                /* MOBİL MENÜ OVERLAY */
        .mobile-menu-overlay { 
            position: fixed; 
            top: var(--main-nav-height); 
            left: 0; width: 100%; 
            height: calc(100vh - var(--main-nav-height)); 
            background-color: rgba(255,255,255,0.99); z-index: 999; 
            display: none; flex-direction: column; padding: 20px; 
            overflow-y: auto; border-top: 1px solid #eee;
        }
        .mobile-menu-overlay.active { display: flex; }
        .mobile-menu-links li { border-bottom: 1px solid #f0f0f0; width: 100%; }
        .mobile-menu-links li a { display: block; padding: 18px 0; font-size: 16px; color: var(--alarmdc-kurumsal); font-weight: 500; }
        
        .mobile-buttons-area { margin-top: 30px; display: flex; flex-direction: column; gap: 15px; }
        .mobile-action-btn { text-align: center; padding: 14px; border-radius: 4px; font-weight: 600; font-size: 15px; display: block; }
        
        
        .sub-nav { 
            background-color: var(--alarmdc-light-gray); 
            border-bottom: 1px solid #ccc; 
            height: var(--sub-nav-height); 
            display: none; 
            width: 100%; 
            z-index: 99; 
            transition: all 0.3s ease-in-out; 
            position: relative; 
            top: 0; 
        }
        .sub-nav.open { display: block; }
        .sub-nav.sticky-top { transform: translateY(calc(0px - var(--main-nav-height))); box-shadow: 0 2px 4px rgba(0,0,0,0.05); }
        
        .sub-nav-content { height: 100%; }
        .sub-nav-content ul { display: flex; align-items: center; justify-content: flex-start; height: 100%; }
        
        #active-main-title { 
            color: var(--alarmdc-text-color); 
            font-size: 13px; 
            font-weight: 700; 
            margin-right: 5px; 
            white-space: nowrap; 
            display: flex; 
            align-items: center; 
            height: 100%;
        }
        
        .sub-nav-content ul li { height: 100%; display: flex; align-items: center; }
        .sub-nav-content ul li a { 
            color: var(--alarmdc-text-color); 
            text-decoration: none;
            padding: 0 12px; 
            height: 100%;
            display: flex;
            align-items: center;
            font-weight: 400; 
            font-size: 13px; 
            transition: color 0.3s, border-bottom 0.3s; 
            border-bottom: 3px solid transparent; 
            white-space: nowrap; 
        }
        .sub-nav-content ul li a.active { color: var(--alarmdc-blue); font-weight: 600; border-bottom: 3px solid var(--alarmdc-blue); }
                /* 2. HERO BANNER */
        #hero-banner { min-height: 450px; background-color: var(--alarmdc-white); display: flex; align-items: center; padding: 0; }
        .banner-content { display: flex; align-items: center; justify-content: space-between; height: 100%; padding: 40px 0; }
        .banner-text-area { flex: 1; max-width: 60%; }
        .banner-image-area { flex: 1; max-width: 40%; display: flex; justify-content: center; align-items: center; }
        .banner-text-area h1 { font-size: 4.5rem; line-height: 1.1; margin-bottom: 20px; color: var(--alarmdc-kurumsal); font-weight: 600; }
        .banner-text-area p { font-size: 1.15rem; color: var(--alarmdc-text-color); max-width: 85%; }
        .banner-image-area img { max-height: 100%; max-width: 90%; object-fit: contain; }
                /* 3. HİZMET KARTLARI */
        .service-cards { margin-top: 50px; display: flex; flex-direction: column; gap: 70px; }
        .service-item { display: flex; align-items: center; justify-content: space-between; gap: 50px; padding: 40px 0; }
        .service-item .content { flex: 1; max-width: 55%; }
        .service-item .content h3 { color: var(--alarmdc-kurumsal); font-size: 2rem; font-weight: 600; margin-bottom: 15px; }
        .service-item .content p { color: var(--alarmdc-text-color); font-size: 1rem; }
        .service-item .content p a { text-decoration: none; transition: color 0.3s; }
        .service-item .content p a:hover { text-decoration: none; color: var(--alarmdc-blue); } 
        .service-item .image { flex: 1; max-width: 45%; height: 300px; background-color: var(--alarmdc-light-gray); border-radius: 8px; overflow: hidden; box-shadow: 0 4px 10px rgba(0,0,0,0.1); display: flex; justify-content: center; align-items: center; }
        .service-item .image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
        .service-item:hover .image img { transform: scale(1.05); }
        .service-item.reverse { flex-direction: row-reverse; }
                /* 4. TAB (SEKME) YAPISI */
        .tab-navigation { display: flex; border-bottom: 2px solid #e0e0e0; margin-top: 20px; margin-bottom: 30px; overflow-x: visible; white-space: normal; }
        .tab-button { background-color: transparent; border: none; padding: 15px 30px; font-size: 16px; font-weight: 500; cursor: pointer; transition: color 0.3s, border-bottom 0.3s; color: var(--alarmdc-text-color); border-bottom: 3px solid transparent; margin-bottom: -2px; white-space: nowrap; }
        .tab-button.active { color: var(--alarmdc-blue); border-bottom: 3px solid var(--alarmdc-blue); font-weight: 600; }
        .tab-pane { display: none; animation: fadeIn 0.5s; }
        .tab-pane.active { display: block; }
        .tab-pane h3 { color: var(--alarmdc-kurumsal); font-size: 24px; margin-bottom: 10px; font-weight: 600; }
        @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
                /* 5. RAKAMSAL VERİ */
        .key-metrics { display: flex; justify-content: space-between; gap: 30px; margin-top: 40px; padding: 30px 0; }
        .metric-card { flex: 1; background-color: white; padding: 30px 20px; border-radius: 8px; text-align: center; border: 1px solid #eee; }
        .metric-value { font-size: 3rem; font-weight: 500; color: var(--alarmdc-green); line-height: 1; margin-bottom: 10px; }
        .metric-label { font-size: 1rem; font-weight: 500; color: var(--alarmdc-text-color); }
                /* 6. SÜRDÜRÜLEBİLİRLİK */
        .sustainability-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 40px; }
        .sustainability-card { background-color: white; border: 1px solid #f0f0f0; padding: 30px; border-radius: 8px; display: flex; flex-direction: column; justify-content: space-between; }
        .sustainability-card h3 { color: var(--alarmdc-kurumsal); font-size: 1.5rem; font-weight: 600; margin-top: 0; margin-bottom: 10px; }
        .sustainability-card .details-list { list-style: none; padding: 0; margin: 15px 0 0 0; border-top: 1px dashed #e0e0e0; padding-top: 15px; }
        .sustainability-card .details-list li::before { content: "•"; color: var(--alarmdc-blue); font-weight: bold; display: inline-block; width: 1em; margin-left: -1em; }
        .sustainability-card .read-more { display: inline-block; margin-top: 15px; color: var(--alarmdc-blue); font-weight: 600; text-decoration: none; transition: color 0.3s; font-size: 0.9rem; }
        .sustainability-card .read-more:hover { color: var(--alarmdc-dark-blue); text-decoration: none; }
                /* 7. KARİYER ALANI */
        #kariyer { min-height: 150vh; } 
        .career-layout { display: flex; justify-content: space-between; gap: 50px; margin-top: 30px; }
        .sticky-sidebar { width: 35%; position: sticky; top: var(--sticky-top-margin); height: fit-content; padding-right: 20px; box-sizing: border-box; }
        .sticky-sidebar h3 { color: var(--alarmdc-kurumsal); font-size: 2rem; font-weight: 700; margin-top: 0; border-bottom: 3px solid var(--alarmdc-kurumsal); padding-bottom: 10px; margin-bottom: 20px; }
        .sticky-sidebar p { font-size: 1.1rem; color: var(--alarmdc-text-color); line-height: 1.8; }
        .scroll-content { width: 65%; display: flex; flex-direction: column; gap: 40px; }
        .career-item { background-color: white; padding: 40px; border-radius: 12px; box-shadow: none; border: 1px solid #eee; min-height: 350px; }
        .career-item img { max-width: 100%; height: 200px; object-fit: cover; border-radius: 8px; margin-bottom: 15px; }
        .career-item h4 { color: var(--alarmdc-kurumsal); font-size: 1.5rem; font-weight: 600; margin: 0 0 10px 0; }
        .career-item p { font-size: 0.95rem; color: var(--alarmdc-text-color); }
                #kaynaklar { min-height: 300px; }
        main { padding-top: 40px; }
        h1 { color: var(--alarmdc-kurumsal); font-size: 36px; font-weight: 700; margin-bottom: 40px; }
        h2 { color: var(--alarmdc-kurumsal); font-size: 28px; padding-top: 80px; margin-top: -80px; }
        section { padding: 40px 0; border-bottom: 1px solid #eee; }
                /* DİL SEÇİM */
        .language-selector { display: flex; align-items: center; gap: 15px; padding-right: 15px; border-right: 1px solid #e0e0e0; height: 30px; }
        .language-selector a { color: var(--alarmdc-blue); font-size: 14px; font-weight: 500; opacity: 0.7; transition: opacity 0.3s, color 0.3s; }
        .language-selector a.active-lang { color: var(--alarmdc-dark-blue); font-weight: 700; opacity: 1; }
        .language-selector a:hover { opacity: 1; color: var(--alarmdc-dark-blue); }
                /* --- FOOTER --- */
        footer { background-color: #0b1c2b; color: #a0aeb9; padding: 80px 0 0 0; font-size: 14px; text-align: left; }
        .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.05); }
        .footer-heading { color: white; font-size: 16px; font-weight: 700; margin-bottom: 20px; letter-spacing: 0.5px; }
        .footer-links { list-style: none; padding: 0; margin: 0; }
        .footer-links li { margin-bottom: 12px; }
        .footer-links a { color: #a0aeb9; text-decoration: none; transition: all 0.3s ease; display: inline-block; }
        .footer-links a:hover { color: white; transform: translateX(5px); }
        .contact-info p { margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
        .contact-info i { color: var(--alarmdc-blue); width: 20px; text-align: center; }
        
        .footer-socials { display: flex; gap: 15px; }
        .footer-socials a { width: 36px; height: 36px; background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center; border-radius: 50%; color: white; transition: 0.3s; }
        .footer-socials a:hover { background: var(--alarmdc-blue); transform: rotate(360deg); }

        .support-btn { display: flex; align-items: center; gap: 10px; background-color: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); padding: 12px 15px; border-radius: 6px; color: #fff; text-decoration: none; transition: 0.3s; margin-bottom: 15px; }
        .support-btn:hover { background-color: var(--alarmdc-blue); border-color: var(--alarmdc-blue); }
        
        .status-indicator { display: flex; align-items: center; gap: 12px; background-color: rgba(40, 167, 69, 0.1); border: 1px solid rgba(40, 167, 69, 0.3); padding: 10px 15px; border-radius: 6px; text-decoration: none; transition: 0.3s; }
        .status-indicator:hover { background-color: rgba(40, 167, 69, 0.2); }
        .status-dot { width: 10px; height: 10px; background-color: #28a745; border-radius: 50%; display: inline-block; animation: pulse-green 2s infinite; }
        @keyframes pulse-green { 0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7); } 70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(40, 167, 69, 0); } 100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(40, 167, 69, 0); } }

        .footer-bottom { background-color: #081622; padding: 25px 0; }
        .bottom-flex { display: flex; justify-content: space-between; align-items: center; }
        .copyright { font-size: 13px; opacity: 0.7; }
        .copyright a { color: inherit; text-decoration: none; transition: 0.3s; }
        .copyright a:hover { color: white; }
        .sep { margin: 0 10px; opacity: 0.5; }
        .cert-badges { display: flex; gap: 20px; }
        .cert-badges span { font-size: 12px; font-weight: 600; color: #5d6d7e; display: flex; align-items: center; gap: 8px; border: 1px solid #1c2e3e; padding: 5px 12px; border-radius: 20px; transition: 0.3s; cursor: default; }
        .cert-badges span:hover { color: white; border-color: var(--alarmdc-green); }
                /* MODAL */
        .modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.6); backdrop-filter: blur(5px); z-index: 2000; display: none; justify-content: center; align-items: center; opacity: 0; transition: opacity 0.3s ease-in-out; }
        .modal-overlay.open { display: flex; opacity: 1; }
        .modal-content-wrapper { 
            background-color: white; 
            border-radius: 12px; 
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); 
            max-width: 950px; 
            width: 90%; 
            display: flex; 
            flex-direction: column; 
            position: relative; 
            transform: scale(0.95); 
            transition: transform 0.3s ease-in-out;
            max-height: 90vh; 
            overflow-y: auto; 
        }
        .modal-overlay.open .modal-content-wrapper { transform: scale(1); }
        .modal-intro-text { padding: 30px 30px 15px 30px; border-bottom: 1px solid var(--alarmdc-light-gray); }
        .modal-intro-text h2 { color: var(--alarmdc-dark-blue); font-size: 1.8rem; margin-top: 0; }
        .modal-intro-text p { color: var(--alarmdc-text-color); font-size: 0.95rem; margin-bottom: 0; }
        .modal-form-panel { padding: 30px; background-color: white; }
        .modal-form-panel .contact-form { background-color: white; padding: 0; }
        .modal-close-btn { position: absolute; top: 15px; right: 15px; background: none; border: none; color: var(--alarmdc-dark-blue); font-size: 24px; cursor: pointer; z-index: 1010; opacity: 0.7; transition: opacity 0.2s, color 0.2s; line-height: 1; }
        .modal-close-btn:hover { opacity: 1; color: var(--alarmdc-blue); }
        .modal-form-panel .contact-form h4 { display: none; }
        .modal-form-panel .contact-form input, .modal-form-panel .contact-form select, .modal-form-panel .contact-form textarea { background-color: var(--alarmdc-light-gray); border: 1px solid #ccc; color: var(--alarmdc-text-color); }
        .modal-form-panel .contact-form label { color: var(--alarmdc-text-color); }
        
        .contact-form { background-color: #3f3f3f; padding: 25px; border-radius: 8px; }
        .contact-form h4 { color: white; font-size: 18px; font-weight: 600; margin-bottom: 20px; }
        .form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; margin-bottom: 5px; }
        .form-full-width { grid-column: 1 / -1; margin-bottom: 5px; }
        .contact-form input, .contact-form select, .contact-form textarea { width: 100%; padding: 10px; border: 1px solid #555; background-color: #444; color: white; border-radius: 4px; box-sizing: border-box; font-family: 'Poppins', sans-serif; font-size: 14px; }
        .contact-form textarea { resize: vertical; min-height: 80px; }
        .contact-form label { display: block; margin-bottom: 8px; color: #ccc; font-size: 14px; font-weight: 500; }
        .checkbox-group { display: flex; align-items: flex-start; margin-top: 20px; margin-bottom: 0px; }
        .checkbox-group input[type="checkbox"] { margin-top: 5px; margin-right: 10px; width: 16px; height: 16px; cursor: pointer; }
        .checkbox-group label { font-size: 13px; line-height: 1.4; color: #aaa; margin-bottom: 0; }
        .contact-form button { background-color: var(--alarmdc-blue); color: white; border: none; padding: 12px 25px; cursor: pointer; border-radius: 4px; font-size: 16px; font-weight: 500; transition: background-color 0.3s; width: 100%; margin-top: 15px; }
        .error-message { color: red; font-size: 0.8em; display: none; margin-top: -10px; margin-bottom: 5px; font-weight: 500; }
        .error-visible { visibility: visible !important; }

        #feedbackModal .modal-content-wrapper { max-width: 400px; }
        #feedbackModal .modal-intro-text h2 { font-size: 1.5rem; }
        #feedbackModal .modal-form-panel { padding-top: 0; text-align: center; }
        #feedbackForm button { font-size: 14px; font-weight: 600; padding: 8px 15px; margin: 5px; border: 1px solid var(--alarmdc-blue); color: var(--alarmdc-blue); background-color: white; border-radius: 4px; cursor: pointer; transition: background-color 0.2s; }
        #feedbackForm button:hover { background-color: var(--alarmdc-light-gray); }
        #feedbackMessage { margin-top: 15px; color: green; font-weight: 500; display: none; }

        
        .features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; text-align: center; }
        
        
        .premium-modal-layout {
            display: flex;
            min-height: 500px;
        }

        
        .modal-info-side {
            flex: 2; 
            background: linear-gradient(135deg, var(--alarmdc-kurumsal) 0%, var(--alarmdc-blue) 100%);
            padding: 40px;
            color: white;
            display: flex;
            flex-direction: column;
            position: relative;
            overflow: hidden;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
        }
        .contact-item i {
            background: rgba(255,255,255,0.2);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-size: 18px;
        }
        .contact-item strong { display: block; font-size: 13px; opacity: 0.8; margin-bottom: 2px; }
        .contact-item span { font-size: 15px; font-weight: 500; }

        
        .modal-form-side {
            flex: 3; 
            padding: 40px;
            background-color: white;
        }

        
        #contactFormModal label { font-size: 13px; font-weight: 600; color: #444; display: block; margin-bottom: 5px; }
        #contactFormModal input, #contactFormModal select, #contactFormModal textarea {
            width: 100%; padding: 10px; border: 1px solid #ddd; border-radius: 4px;
            font-family: 'Poppins', sans-serif; font-size: 14px; margin-bottom: 15px;
        }
        #contactFormModal .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 0; }
        #contactFormModal .checkbox-group { display: flex; align-items: flex-start; gap: 10px; margin-top: 5px; }
        #contactFormModal .checkbox-group input { width: auto; margin-top: 3px; }

        
        #contactModal .modal-content-wrapper {
            max-height: 90vh !important; 
            overflow-y: auto !important; 
            overflow-x: hidden; 
        }

        
        #contactModal .modal-content-wrapper::-webkit-scrollbar { width: 8px; }
        #contactModal .modal-content-wrapper::-webkit-scrollbar-track { background: #f1f1f1; }
        #contactModal .modal-content-wrapper::-webkit-scrollbar-thumb { background: #ccc; border-radius: 4px; }
        #contactModal .modal-content-wrapper::-webkit-scrollbar-thumb:hover { background: #aaa; }
                /* --- TALEP GÖNDER MODALI FOCUS AYARI --- */
        #contactFormModal input:focus,
        #contactFormModal select:focus,
        #contactFormModal textarea:focus {
            border-color: var(--alarmdc-blue) !important; 
            outline: none !important; 
            background-color: #fff;
        }
        #contactFormModal input:hover,
        #contactFormModal select:hover,
        #contactFormModal textarea:hover {
            border-color: #bbb;
        }
         /* --- YASAL POLİTİKA KARTLARI CSS --- */
        .policy-card {
            background: white;
            padding: 25px;
            border-radius: 10px;
            border: 1px solid #e0e0e0;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }
        .policy-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.08);
            border-color: var(--alarmdc-blue);
        }
        
        .policy-card .card-header {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }
        .policy-card .card-header i {
            font-size: 22px;
            margin-right: 15px;
        }
        .policy-card .card-header h4 {
            margin: 0;
            font-size: 16px;
            color: var(--alarmdc-kurumsal);
            font-weight: 600;
        }
        .policy-card p {
            font-size: 13px;
            color: #666;
            margin: 0;
            padding-left: 37px;
            line-height: 1.5;
        }
        
        .full-width-card {
            grid-column: 1 / -1; 
        }
                /* --- GENERIC POLICY MODAL CSS --- */
        #genericPolicyModal .modal-content-wrapper {
            display: flex;
            flex-direction: column; 
            max-height: 90vh !important; 
            padding: 0 !important; 
            overflow: hidden !important; 
        }

        #genericPolicyModal .modal-header-custom {
            padding: 40px 50px 20px 50px;
            flex-shrink: 0; 
            border-bottom: 1px solid #eee;
            background: #fff;
        }

        #policyContent {
            padding: 30px 50px;
            overflow-y: auto; 
            flex: 1; 
            max-height: none !important; 
            font-size: 15px;
            line-height: 1.8;
            color: #444;
        }
        #policyContent::-webkit-scrollbar { width: 8px; }
        #policyContent::-webkit-scrollbar-track { background: #f1f1f1; }
        #policyContent::-webkit-scrollbar-thumb { background: #ccc; border-radius: 4px; }
        #policyContent::-webkit-scrollbar-thumb:hover { background: #999; }
                /* --- TEKNİK DESTEK FORMU (supportFormModal) STİLLERİ --- */
        #supportFormModal input[type="text"],
        #supportFormModal input[type="tel"],
        #supportFormModal input[type="email"],
        #supportFormModal select,
        #supportFormModal textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ccc;
            border-radius: 6px;
            background-color: #ffffff;
            color: #333;
            font-size: 14px;
            font-family: 'Poppins', sans-serif;
            margin-bottom: 15px;
            box-shadow: none;
            display: block;
        }

        #supportFormModal textarea {
            min-height: 100px !important;
            resize: vertical;
        }

        #supportFormModal input:focus,
        #supportFormModal select:focus,
        #supportFormModal textarea:focus {
            border-color: var(--alarmdc-blue) !important;
            outline: none;
            background-color: #fff;
            box-shadow: 0 0 0 3px rgba(0, 112, 192, 0.1);
        }

        #supportFormModal label {
            display: block;
            margin-bottom: 6px;
            font-weight: 600;
            color: var(--alarmdc-kurumsal);
            font-size: 13px;
        }

        #supportFormModal .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 5px;
        }

        #supportFormModal .form-full-width {
            width: 100%;
            margin-bottom: 10px;
        }
        
        #supportModal .modal-content-wrapper {
            max-height: 90vh !important; 
            overflow-y: auto !important; 
            overflow-x: hidden; 
            display: flex;
            flex-direction: column;
        }
                /* Yeşil Nokta Canlandırma Efekti */
        @keyframes pulse-green {
            0% { box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7); }
            70% { box-shadow: 0 0 0 6px rgba(40, 167, 69, 0); }
            100% { box-shadow: 0 0 0 0 rgba(40, 167, 69, 0); }
        }

        .fa-circle {
            border-radius: 50%;
            animation: pulse-green 2s infinite; 
        }

        
        @media (max-width: 992px) {
            .container { width: 95%; }
            .banner-content { flex-direction: column; text-align: center; padding: 30px 0; }
            .banner-text-area { max-width: 100%; margin-bottom: 30px; }
            .banner-text-area h1 { font-size: 3rem; }
            .banner-image-area { max-width: 80%; }
            
            .service-item, .service-item.reverse { flex-direction: column; gap: 20px; padding: 20px 0; }
            .service-item .content, .service-item .image { max-width: 100%; }
            .key-metrics { flex-direction: column; gap: 15px; }
            .sustainability-cards { grid-template-columns: 1fr; }
            
            .footer-grid { grid-template-columns: 1fr; gap: 40px; }
            .footer-links-group { width: 100%; margin-bottom: 20px; }
            
            .features-grid { grid-template-columns: 1fr !important; }
            
            .policy-grid { grid-template-columns: 1fr !important; }
        }
                /* Telefon Ekranları */
        @media (max-width: 1060px) {
            .hamburger-btn { display: block; }
            .left-side-nav { display: flex; align-items: center; width: 100%; justify-content: flex-start; }
            .main-menu { display: none; }
            .right-section { display: none; } 
            .logo { margin-right: auto; }

            .tab-navigation { overflow-x: auto; white-space: nowrap; justify-content: flex-start; padding-bottom: 5px; }
            .sub-nav { overflow-x: auto; white-space: nowrap; -webkit-overflow-scrolling: touch; }
            .sub-nav-content ul { display: flex; flex-wrap: nowrap; justify-content: flex-start; padding-bottom: 5px; }
            .sub-nav-content ul li { flex: 0 0 auto; width: auto; }
            .sub-nav-content ul li a { padding: 10px 15px; font-size: 13px; border-top: none; }
            .sub-nav::-webkit-scrollbar { display: none; }
            .sub-nav { -ms-overflow-style: none; scrollbar-width: none; }


            .career-layout { flex-direction: column; gap: 30px; }
            .sticky-sidebar, .scroll-content { width: 100%; position: static; }
            .sticky-sidebar h3 { font-size: 1.8rem; }
            
            .footer-content { flex-direction: column; gap: 40px; }
            .footer-right { border-top: 1px solid #444; padding-top: 20px; }
            
            .modal-content-wrapper { max-width: 95%; margin: 10px; max-height: 85vh; }
            .form-row { grid-template-columns: 1fr; }
            .modal-intro-text h2 { font-size: 1.5rem; }
        }
        
        @media (max-width: 768px) {
            .premium-modal-layout { flex-direction: column; }
            .modal-info-side { padding: 30px 20px; text-align: center; }
            .contact-item { justify-content: center; text-align: left; }
            .modal-close-btn { color: #333 !important; top: 10px; right: 15px; }
            
            #contactModal .modal-content-wrapper { max-height: 95vh !important; margin: 10px auto; }
            .premium-modal-layout { min-height: auto !important; flex-direction: column; }

            #genericPolicyModal .modal-header-custom,
            #policyContent,
            #genericPolicyModal .modal-footer-custom { padding: 20px !important; }
            
            #supportFormModal .form-row { grid-template-columns: 1fr !important; gap: 10px; }
            
            #supportModal .modal-content-wrapper { max-height: 95vh !important; width: 95% !important; margin: 10px auto; }
            #supportModal .premium-modal-layout { flex-direction: column; height: auto; min-height: auto; }
        }
                /* --- ÇÖZÜM ORTAKLARI GRID STİLLERİ --- */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* Masaüstü 5 Sütun */
    gap: 30px;
    margin-top: 40px;
}

.partner-card {
    background: var(--alarmdc-white);
    border: 1px solid var(--alarmdc-light-gray);
    padding: 20px 15px;
    border-radius: 12px;
    text-align: center;
    transition: box-shadow 0.3s, transform 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 220px; /* Görsel ve metin yüksekliğini dengelemek için */
}

.partner-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.partner-logo img {
    max-height: 40px;
    width: auto;
    max-width: 100%;
    filter: grayscale(100%); /* Başlangıçta gri tonlu, hover'da renkli */
    opacity: 0.6;
    transition: all 0.3s;
    margin-bottom: 15px;
}

.partner-card:hover .partner-logo img {
    filter: grayscale(0%);
    opacity: 1;
}

.partner-description {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
    margin-top: 10px;
}

/* Mobil Uyum */
@media (max-width: 992px) {
    .partners-grid {
        grid-template-columns: repeat(3, 1fr); /* Tablet 3 Sütun */
        gap: 20px;
    }
}
@media (max-width: 600px) {
    .partners-grid {
        grid-template-columns: 1fr 1fr; /* Telefon 2 Sütun */
    }
}
/* --- BLOG ÖZEL STİLLERİ --- */
        
        /* 1. Blog Hero */
        .blog-hero { padding: 60px 0 40px 0; text-align: center; }
        .blog-hero h1 { font-size: 3rem; color: var(--alarmdc-kurumsal); margin-bottom: 15px; font-weight: 700; }
        .blog-hero p { font-size: 1.1rem; color: #666; max-width: 700px; margin: 0 auto; }

        /* 2. Featured Post (Manşet) */
        .featured-post { display: flex; background: white; border-radius: 15px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.05); border: 1px solid #eee; margin-bottom: 60px; min-height: 400px; }
        .featured-image { flex: 1.2; position: relative; overflow: hidden; }
        .featured-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
        .featured-post:hover .featured-image img { transform: scale(1.05); }
        .featured-content { flex: 1; padding: 50px; display: flex; flex-direction: column; justify-content: center; }
        .post-tag { background: #e3f2fd; color: var(--alarmdc-blue); padding: 5px 12px; border-radius: 20px; font-size: 12px; font-weight: 600; display: inline-block; margin-bottom: 15px; width: fit-content; }
        .featured-content h2 { font-size: 2.2rem; color: var(--alarmdc-kurumsal); margin: 10px 0 20px 0; line-height: 1.2; }
        .featured-content p { color: #555; margin-bottom: 25px; font-size: 1.05rem; }
        .read-more-btn { color: var(--alarmdc-blue); font-weight: 600; display: inline-flex; align-items: center; gap: 8px; transition: 0.3s; }
        .read-more-btn:hover { gap: 12px; color: var(--alarmdc-dark-blue); }

        /* 3. Filtreleme Çubuğu */
        .filter-bar { display: flex; justify-content: center; gap: 15px; margin-bottom: 40px; flex-wrap: wrap; }
        .filter-btn { border: 1px solid #eee; background: white; padding: 10px 25px; border-radius: 30px; cursor: pointer; font-size: 14px; color: #555; transition: 0.3s; font-family: 'Poppins', sans-serif; font-weight: 500; }
        .filter-btn:hover, .filter-btn.active { background: var(--alarmdc-kurumsal); color: white; border-color: var(--alarmdc-kurumsal); }

        /* 4. Blog Grid */
        .blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
        .blog-card { background: white; border-radius: 12px; overflow: hidden; border: 1px solid #eee; transition: 0.3s; display: flex; flex-direction: column; }
        .blog-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.08); }
        .card-img-top { height: 220px; overflow: hidden; position: relative; }
        .card-img-top img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
        .blog-card:hover .card-img-top img { transform: scale(1.1); }
        .card-body { padding: 25px; display: flex; flex-direction: column; flex: 1; }
        .card-meta { font-size: 12px; color: #888; margin-bottom: 10px; display: flex; justify-content: space-between; }
        .blog-card h3 { font-size: 1.2rem; margin: 0 0 15px 0; color: var(--alarmdc-kurumsal); line-height: 1.4; font-weight: 600; }
        .blog-card p { font-size: 0.9rem; color: #666; margin-bottom: 20px; flex: 1; } /* flex:1 içeriği eşitler */
        
        /* 5. Newsletter */
        .newsletter-section { background: linear-gradient(135deg, var(--alarmdc-kurumsal) 0%, var(--alarmdc-blue) 100%); padding: 60px 0; border-radius: 20px; text-align: center; color: white; margin-top: 80px; position: relative; overflow: hidden; }
        .newsletter-content { position: relative; z-index: 2; }
        .newsletter-input-group { display: flex; max-width: 500px; margin: 30px auto 0 auto; gap: 10px; }
        .newsletter-input-group input { flex: 1; padding: 15px; border-radius: 8px; border: none; font-family: 'Poppins', sans-serif; }
        .newsletter-input-group button { background: var(--alarmdc-green); color: white; border: none; padding: 0 30px; border-radius: 8px; cursor: pointer; font-weight: 600; transition: 0.3s; }
        .newsletter-input-group button:hover { background: #2e7d32; }
        /* --- Reading Progress (GÜNCELLENDİ) --- */
#reading-progress { 
    position: absolute;  /* Fixed yerine Absolute yapıyoruz */
    bottom: 0;           /* Menünün en altına yapıştır */
    left: 0; 
    top: auto;           /* Üst boşluğu iptal et */
    width: 0%; 
    height: 4px; 
    background: var(--alarmdc-blue); 
    z-index: 1002; 
    transition: width 0.1s; 
}
