
        :root {
            /* Renk Paleti */
            --primary: #B56820;   /* Ana Renk (Butonlar, Vurgular) */
            --light: #E59A4C;     /* Açık Renk (İkonlar, Hover) */
            --dark: #7A4216;      /* Koyu Renk (Gölgeler, Gradient) */
            
            /* Zemin ve Metin Renkleri */
            --bg-dark: #0a0f16;
            --bg-card: #141b25;
            --text-main: #f8fafc;
            --text-muted: #94a3b8;
        }

        /* --- Temel Sıfırlama --- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
            scroll-behavior: smooth; /* Yumuşak kaydırma */
        }

        html, body {
            margin: 0;
            padding: 0;
        }

        body {
            background-color: var(--bg-dark);
            color: var(--text-main);
            overflow-x: hidden;
        }

        /* Link alt çizgilerini kaldır */
        a {
            text-decoration: none !important;
        }

        /* --- Scroll Animasyon Sınıfları --- */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s ease-out;
        }
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Mobilde uzun .reveal bölümlerde IO eşiği yetişmeyebilir; içerik şeffaf kalmasın */
        @media (max-width: 768px) {
            .reveal {
                opacity: 1;
                transform: none;
                transition: opacity 0.5s ease-out, transform 0.5s ease-out;
            }
        }

        /* --- Topbar (Üst Bilgi Bandı) --- */
        .topbar {
            background-color: #05080c;
            color: var(--text-muted);
            padding: 8px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.85rem;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 36px;
            z-index: 1001;
            border-bottom: 1px solid rgba(181, 104, 32, 0.1);
        }

        .topbar-left {
            display: flex;
            gap: 20px;
        }

        .topbar-left i {
            color: var(--primary);
            margin-right: 5px;
        }

        .topbar-right {
            display: flex;
            gap: 15px;
        }

        .topbar-right a {
            color: var(--text-muted);
            transition: 0.3s;
        }

        .topbar-right a:hover {
            color: var(--light);
            transform: translateY(-2px);
        }

        /* --- Header & Nav (Ana Menü) --- */
        header {
            position: fixed;
            width: 100%;
            top: 36px; /* Topbar'ın hemen altı */
            z-index: 1000;
            /* Scroll'a göre şeffaf -> mevcut form */
            background: rgba(10, 15, 22, 0);
            backdrop-filter: blur(0px); /* Scroll öncesi cam kapalı */
            border-bottom: 1px solid rgba(181, 104, 32, 0);
            padding: 15px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: top 0.3s ease, background 0.3s ease, padding 0.3s ease, backdrop-filter 0.3s ease, border-bottom-color 0.3s ease;
        }

        /* Header scroll ile mevcut formuna döner */
        #main-header.header-solid {
            background: rgba(10, 15, 22, 0.85);
            backdrop-filter: blur(15px); /* Cam efekti */
            border-bottom: 1px solid rgba(181, 104, 32, 0.1);
        }

        .logo {
            flex: 1;
            display: flex;
            justify-content: flex-start;
        }

        .logo img {
            height: 68px;
            width: auto;
            filter: brightness(0) invert(1);
            transition: height 0.3s ease;
        }

        .nav-menu {
            flex: 2;
            display: flex;
            justify-content: center;
        }

        .header-right {
            flex: 1;
            display: flex;
            justify-content: flex-end;
            align-items: center;
            gap: 20px;
        }

        nav ul {
            display: flex;
            gap: 35px;
            list-style: none;
            align-items: center;
            transition: all 0.3s ease;
        }

        nav a {
            color: var(--text-main);
            font-size: 0.95rem;
            font-weight: 500;
            letter-spacing: 1px;
            transition: 0.3s;
        }

        nav a:hover {
            color: var(--light);
        }

        /* --- Panel Butonu Stili --- */
        .btn-panel {
            background: linear-gradient(45deg, var(--dark), var(--primary));
            padding: 12px 28px;
            border-radius: 30px;
            color: #fff !important;
            font-weight: 700;
            font-size: 0.9rem;
            box-shadow: 0 4px 15px rgba(181, 104, 32, 0.3);
            transition: all 0.3s ease;
            border: 1px solid transparent;
            display: inline-block;
            white-space: nowrap;
        }

        .btn-panel:hover {
            background: linear-gradient(45deg, var(--primary), var(--light));
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(229, 154, 76, 0.4);
        }

        .mobile-btn-li {
            display: none;
        }

        .menu-toggle {
            display: none;
            color: var(--text-main);
            font-size: 1.8rem;
            cursor: pointer;
        }

        /* --- Hero Section (Giriş) --- */
        .hero {
            min-height: 100vh;
            padding-top: 150px;
            padding-bottom: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            overflow: hidden;
            background: radial-gradient(circle at center, #181411 0%, var(--bg-dark) 70%);
            padding-left: 5%;
            padding-right: 5%;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            /* Blur kaldırıldı: sadece karartma overlay'i */
            background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url('images/othership.png') center / cover no-repeat;
            opacity: 1;
            filter: blur(0px);
            transform: scale(1);
            z-index: 1;
        }

        /* index.php üst görseli farklı (slide.jpg) */
        .hero.hero-home::before {
            background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url('images/slide.jpg') center / cover no-repeat;
        }

        .hero::after {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            /* Dokuyu bozmamak için mevcut cube pattern'ı koruyoruz */
            background: url('https://www.transparenttextures.com/patterns/cubes.png');
            opacity: 0.03;
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
            animation: fadeIn 1.5s ease-out;
        }

        .badge {
            display: inline-block;
            padding: 8px 20px;
            background: rgba(229, 154, 76, 0.1);
            color: var(--light);
            border: 1px solid rgba(229, 154, 76, 0.3);
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 25px;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .hero h1 {
            font-size: clamp(2.8rem, 6vw, 5.8rem);
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 25px;
            background: linear-gradient(to right, #fff, #d1d5db);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero p {
            font-size: 1.25rem;
            color: var(--text-muted);
            margin-bottom: 45px;
            font-weight: 300;
            line-height: 1.6;
        }

        /* --- Stats Row (İstatistikler) --- */
        .stats-container {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: -60px;
            position: relative;
            z-index: 10;
            padding: 0 5%;
            flex-wrap: wrap;
        }

        .stat-box {
            background: var(--bg-card);
            border: 1px solid rgba(181, 104, 32, 0.1);
            padding: 35px 40px;
            border-radius: 15px;
            text-align: center;
            flex: 1 1 220px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            transition: 0.4s;
        }

        .stat-box:hover {
            border-color: var(--light);
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(181, 104, 32, 0.15);
        }

        .stat-box h3 {
            font-size: 3.2rem;
            color: var(--light);
            font-weight: 900;
            margin-bottom: 5px;
        }

        .stat-box p {
            color: var(--text-muted);
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* --- İçerik Bölümleri Genel --- */
        .section-padding { padding: 120px 5%; }

        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        /* Online İşlemler (3 kolon) */
        .online-grid-3 {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 18px;
            align-items: start;
        }

        .online-grid-3 .theme-entry-content {
            padding: 16px 10px;
        }

        .online-grid-3 .theme-card {
            min-width: 0;
            align-self: start;
            height: auto;
        }

        .online-grid-3 .theme-entry-content h3 {
            font-size: 0.98rem;
            margin-bottom: 8px;
        }

        .online-grid-3 .theme-entry-content p {
            font-size: 0.85rem;
            margin-bottom: 10px;
        }

        .online-grid-3 .theme-sidebar-card {
            padding: 16px 10px;
            position: relative;
            top: auto;
        }

        .online-grid-3 .theme-sidebar-title {
            font-size: 0.92rem;
            margin-bottom: 8px;
        }

        /* Online panel form alanlarını küçült */
        .online-grid-3 #login-panel .theme-form-label {
            font-size: 0.9rem;
            margin-bottom: 6px;
        }

        .online-grid-3 #login-panel .theme-form-field {
            padding: 9px 12px;
            font-size: 0.88rem;
        }

        .online-grid-3 #login-panel .btn-panel {
            padding: 9px 18px;
            font-size: 0.95rem;
        }

        /* İşlem sorgulama alanı için de form etiketlerini küçült */
        .online-grid-3 .theme-form-label {
            font-size: 0.9rem;
            margin-bottom: 6px;
        }

        /* 2. ve 3. kutu metinleri daha kompakt */
        .online-grid-3 #login-panel .theme-form-label,
        .online-grid-3 #login-panel .theme-form-field,
        .online-grid-3 #login-panel .btn-panel,
        .online-grid-3 #login-panel .login-type-btn {
            font-size: 0.82rem;
        }

        .online-grid-3 #login-panel .theme-form-field {
            padding: 8px 10px;
        }

        .online-grid-3 #login-panel .login-type-btn {
            padding: 8px 10px;
        }

        .online-grid-3 .online-search-card h3 {
            font-size: 0.92rem;
        }

        .online-grid-3 .online-search-card p {
            font-size: 0.8rem;
            margin-bottom: 8px;
        }

        .online-grid-3 .online-search-card .theme-form-label,
        .online-grid-3 .online-search-card .theme-form-field,
        .online-grid-3 .online-search-card .btn-panel {
            font-size: 0.82rem;
        }

        .online-grid-3 .online-search-card .theme-form-field {
            padding: 8px 10px;
        }

        /* Online işlemler sayfası arkaplan */
        .online-page-bg {
            position: relative;
            overflow: hidden;
        }

        .online-page-section {
            padding-top: 135px;
        }

        .online-page-bg::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('images/online.jpg') center / cover no-repeat;
            filter: blur(0.6px);
            opacity: 0.25;
            transform: scale(1.04);
            z-index: 0;
        }

        .online-page-bg > * {
            position: relative;
            z-index: 1;
        }

        @media (max-width: 992px) {
            .online-grid-3 {
                grid-template-columns: 1fr;
                gap: 16px;
            }
        }

        @media (max-width: 576px) {
            .online-page-section {
                padding-top: 108px;
            }
            .online-grid-3 {
                gap: 12px;
            }
            .online-grid-3 .theme-entry-content {
                padding: 26px 16px;
            }
        }

        .sec-title {
            font-size: 2.8rem;
            margin-bottom: 25px;
            font-weight: 700;
            line-height: 1.2;
        }
        
        .sec-title span { color: var(--primary); }

        .text-lead {
            color: var(--text-muted);
            line-height: 1.8;
            margin-bottom: 35px;
            font-size: 1.15rem;
            font-weight: 300;
        }

        .icon-box i {
            color: var(--light);
            font-size: 1.3rem;
            margin-right: 12px;
        }

        /* --- Kurumsal Resim Üzerindeki Yüzen Kutular --- */
        .kurumsal-img-wrapper {
            position: relative;
        }
        
        .floating-box {
            position: absolute;
            background: rgba(20, 27, 37, 0.85);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(181, 104, 32, 0.3);
            padding: 15px 25px;
            border-radius: 12px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            z-index: 5;
            animation: float 4s ease-in-out infinite;
        }
        
        .floating-box.box-1 {
            bottom: -25px;
            left: -35px;
        }
        
        .floating-box.box-2 {
            top: -25px;
            right: -35px;
            padding: 15px; /* Sadece logo için padding ayarı */
            animation-delay: 2s;
        }
        
        .floating-box i {
            font-size: 2rem;
            color: var(--light);
        }
        
        .floating-box .box-text h5 {
            font-size: 1.2rem;
            color: #fff;
            margin-bottom: 2px;
            font-weight: 700;
        }
        
        .floating-box .box-text p {
            color: var(--text-muted);
            font-size: 0.85rem;
            margin: 0;
        }
        
        .box-logo {
            height: 35px;
            filter: brightness(0) invert(1);
        }

        .box-2 .box-logo {
            height: 40px; /* Sadece logo olduğu için bir tık büyük */
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-12px); }
        }

        /* --- Services (Hizmetler) --- */
        .services { background: #0d131c; }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }

        .srv-card {
            background: var(--bg-card);
            padding: 50px 40px;
            border-radius: 20px;
            border: 1px solid rgba(255,255,255,0.02);
            transition: 0.4s;
            position: relative;
            overflow: hidden;
        }

        .srv-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 4px;
            background: linear-gradient(90deg, var(--dark), var(--light));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .srv-card:hover::before { transform: scaleX(1); }

        .srv-card:hover {
            background: #121822;
            box-shadow: 0 20px 40px rgba(0,0,0,0.4);
            transform: translateY(-5px);
        }

        .srv-card i {
            font-size: 3.5rem;
            color: var(--light);
            margin-bottom: 25px;
            transition: 0.3s;
            display: inline-block;
        }
        
        .srv-card:hover i {
            color: var(--primary);
            transform: scale(1.1);
        }

        .srv-card h3 { font-size: 1.5rem; margin-bottom: 18px; font-weight: 600; }
        .srv-card p { color: var(--text-muted); font-size: 1rem; line-height: 1.7; font-weight: 300; }

        /* --- Blog Bölümü --- */
        .blog-section {
            background-color: var(--bg-dark);
        }

        .blog-layout {
            display: grid;
            grid-template-columns: minmax(0, 1fr) 320px;
            gap: 28px;
            align-items: start;
            margin-top: 44px;
        }

        .blog-main-list .blog-grid {
            margin-top: 0;
        }
        
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 35px;
            margin-top: 50px;
        }
        
        .blog-card {
            background: var(--bg-card);
            border-radius: 18px;
            overflow: hidden;
            border: 1px solid rgba(181, 104, 32, 0.05);
            transition: all 0.4s ease;
        }
        
        .blog-card:hover {
            transform: translateY(-10px);
            border-color: rgba(181, 104, 32, 0.3);
            box-shadow: 0 15px 35px rgba(0,0,0,0.3);
        }
        
        .blog-img {
            width: 100%;
            height: 220px;
            overflow: hidden;
            position: relative;
        }
        
        .blog-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        
        .blog-card:hover .blog-img img {
            transform: scale(1.1);
        }
        
        .blog-category {
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--primary);
            color: #fff;
            padding: 5px 15px;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
            z-index: 2;
        }
        
        .blog-content {
            padding: 30px;
        }
        
        .blog-date {
            color: var(--light);
            font-size: 0.85rem;
            font-weight: 500;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .blog-meta-row {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 10px;
        }

        .blog-author,
        .blog-time {
            color: #aab7c9;
            font-size: 0.85rem;
            display: inline-flex;
            align-items: center;
            gap: 7px;
        }
        
        .blog-title {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: #fff;
            font-weight: 600;
            line-height: 1.4;
            transition: color 0.3s;
        }
        
        .blog-card:hover .blog-title {
            color: var(--light);
        }
        
        .blog-desc {
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .blog-tags-inline {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 20px;
        }

        .blog-tags-inline span {
            font-size: 0.75rem;
            font-weight: 600;
            color: #d9e4f2;
            padding: 6px 10px;
            border-radius: 999px;
            border: 1px solid rgba(181, 104, 32, 0.25);
            background: rgba(181, 104, 32, 0.1);
        }

        .blog-card-actions {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
        }

        .share-mini {
            display: inline-flex;
            gap: 8px;
        }

        .share-mini a {
            width: 30px;
            height: 30px;
            border-radius: 8px;
            border: 1px solid rgba(181, 104, 32, 0.22);
            background: rgba(181, 104, 32, 0.08);
            color: #fff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 0.85rem;
            transition: all 0.25s ease;
        }

        .share-mini a:hover {
            transform: translateY(-2px);
            border-color: rgba(181, 104, 32, 0.45);
            background: rgba(181, 104, 32, 0.2);
        }

        .blog-widget h3 {
            font-size: 1.02rem;
            margin-bottom: 16px;
            color: #fff;
            display: flex;
            align-items: center;
            gap: 9px;
        }

        .blog-widget .theme-form-field {
            margin-bottom: 0;
        }

        .blog-sidebar {
            display: grid;
            gap: 14px;
            align-content: start;
        }

        .sticky-widget {
            position: sticky;
            top: 106px;
        }

        .blog-layout .blog-detail-wrap {
            max-width: none;
            margin: 0;
            width: 100%;
        }

        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .tag-cloud a {
            font-size: 0.76rem;
            color: #e6edf8;
            border: 1px solid rgba(181, 104, 32, 0.25);
            background: rgba(181, 104, 32, 0.1);
            padding: 7px 10px;
            border-radius: 999px;
            transition: all 0.25s ease;
        }

        .tag-cloud a:hover {
            border-color: rgba(181, 104, 32, 0.5);
            background: rgba(181, 104, 32, 0.2);
        }

        .tag-cloud a.is-active {
            border-color: rgba(181, 104, 32, 0.7);
            background: rgba(181, 104, 32, 0.28);
            color: #fff;
        }

        .recent-posts {
            display: grid;
            gap: 10px;
        }

        .recent-post-item {
            display: grid;
            grid-template-columns: 64px 1fr;
            gap: 10px;
            align-items: center;
            border: 1px solid rgba(181, 104, 32, 0.14);
            border-radius: 12px;
            padding: 8px;
            transition: all 0.25s ease;
        }

        .recent-post-item:hover {
            border-color: rgba(181, 104, 32, 0.35);
            transform: translateX(2px);
        }

        .recent-post-item img {
            width: 64px;
            height: 52px;
            border-radius: 8px;
            object-fit: cover;
        }

        .recent-post-item span {
            font-size: 0.82rem;
            color: #d8e1ee;
            line-height: 1.45;
            font-weight: 500;
        }

        .blog-empty-state {
            margin-top: 22px;
            border: 1px dashed rgba(181, 104, 32, 0.35);
        }

        .blog-empty-state h3 {
            color: #fff;
            margin-bottom: 10px;
            font-size: 1.25rem;
        }

        .blog-empty-state p {
            color: var(--text-muted);
            margin-bottom: 18px;
            line-height: 1.8;
        }
        
        .read-more {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #fff;
            font-weight: 600;
            font-size: 0.95rem;
            transition: 0.3s;
        }
        
        .read-more i {
            font-size: 0.8rem;
            transition: transform 0.3s;
        }
        
        .read-more:hover {
            color: var(--light);
        }
        
        .read-more:hover i {
            transform: translateX(5px);
        }

        .blog-detail-wrap {
            max-width: 980px;
            margin: 0 auto;
            background: var(--bg-card);
            border: 1px solid rgba(181, 104, 32, 0.1);
            border-radius: 20px;
            overflow: hidden;
        }

        .blog-detail-head {
            padding: 32px 34px 20px;
        }

        .blog-detail-head .blog-category {
            position: static;
            display: inline-block;
            margin-bottom: 14px;
        }

        .blog-detail-head h2 {
            font-size: 2rem;
            line-height: 1.3;
            margin: 12px 0 12px;
            color: #fff;
        }

        .blog-detail-head p {
            color: var(--text-muted);
            line-height: 1.8;
            margin: 0;
            font-size: 1rem;
        }

        .blog-detail-image {
            width: 100%;
            height: 380px;
            overflow: hidden;
        }

        .blog-detail-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .blog-detail-body {
            padding: 28px 34px 20px;
        }

        .blog-detail-body p {
            color: #d3dae4;
            line-height: 1.9;
            margin-bottom: 18px;
            font-weight: 300;
        }

        .blog-detail-actions {
            padding: 0 34px 34px;
        }

        .blog-share-strip {
            margin: 4px 34px 24px;
            padding: 14px 16px;
            border-radius: 14px;
            border: 1px solid rgba(181, 104, 32, 0.2);
            background: rgba(181, 104, 32, 0.08);
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 10px;
        }

        .blog-share-strip span {
            font-size: 0.9rem;
            font-weight: 600;
            color: #fff;
        }

        .blog-share-strip a {
            font-size: 0.82rem;
            color: #f0f5ff;
            border: 1px solid rgba(181, 104, 32, 0.24);
            border-radius: 10px;
            padding: 7px 10px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.2s ease;
        }

        .blog-share-strip a:hover {
            background: rgba(181, 104, 32, 0.18);
            border-color: rgba(181, 104, 32, 0.5);
        }

        /* --- Online Panel Callout --- */
        .panel-cta {
            background: linear-gradient(135deg, var(--bg-dark) 0%, var(--dark) 100%);
            border-radius: 30px;
            padding: 80px 60px;
            text-align: center;
            margin: 120px 5%;
            border: 1px solid rgba(181, 104, 32, 0.3);
            box-shadow: 0 20px 50px rgba(122, 66, 22, 0.2);
        }

        .panel-cta h2 { font-size: 2.8rem; margin-bottom: 20px; font-weight: 700; }
        .panel-cta p { color: #cbd5e1; margin-bottom: 40px; font-size: 1.25rem; font-weight: 300; }

        /* --- Footer (Alt Bilgi) --- */
        footer {
            position: relative;
            background: transparent;
            padding: 100px 5% 0;
            margin: 0;
            overflow: hidden;
            border-top: 1px solid rgba(181, 104, 32, 0.35);
        }

        /* Footer'da reveal animasyonu alt kayma/boşluk etkisi oluşturmasın */
        footer.reveal {
            opacity: 1 !important;
            transform: none !important;
        }

        /* Slider görselini footer'a al - çok hafif değil, belirgin blur */
        footer::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('images/slide.jpg') center / cover no-repeat;
            filter: blur(12px);
            transform: scale(1.08);
            opacity: 0.45;
            z-index: 0;
        }

        /* Görseli bastırıp yazı okunurluğunu artıran overlay */
        footer::after {
            content: '';
            position: absolute;
            inset: 0;
            background:
                linear-gradient(180deg, rgba(5, 8, 12, 0.30) 0%, rgba(5, 8, 12, 0.82) 55%, rgba(5, 8, 12, 0.96) 100%),
                radial-gradient(circle at top, rgba(181, 104, 32, 0.18) 0%, rgba(5, 8, 12, 0) 55%);
            z-index: 1;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 50px;
            margin-bottom: 80px;
            position: relative;
            z-index: 2;
        }

        .footer-logo { filter: brightness(0) invert(1); height: 65px; margin-bottom: 25px; }

        .footer-col h4 {
            color: #fff;
            margin-bottom: 30px;
            font-size: 1.2rem;
            position: relative;
            padding-bottom: 12px;
            font-weight: 600;
        }
        
        /* Başlık altı çizgi */
        .footer-col h4::after {
            content: '';
            position: absolute;
            left: 0; bottom: 0;
            width: 40px; height: 2px;
            background: var(--primary);
        }

        .footer-col ul { list-style: none; }
        .footer-col ul li { margin-bottom: 15px; }
        .footer-col ul li a {
            color: var(--text-muted);
            transition: 0.3s;
            font-size: 0.95rem;
            text-decoration: none !important;
        }
        .footer-col ul li a:hover { color: var(--light); padding-left: 8px; }

        .contact-info p {
            color: var(--text-muted);
            margin-bottom: 20px;
            display: flex;
            align-items: flex-start;
            gap: 15px;
            line-height: 1.6;
            font-size: 0.95rem;
        }
        .contact-info i { color: var(--light); font-size: 1.2rem; margin-top: 3px; }

        .copyright {
            text-align: center;
            color: var(--text-muted);
            font-size: 0.9rem;
            padding-top: 40px;
            padding-bottom: 0;
            margin-bottom: 0;
            border-top: 1px solid rgba(255,255,255,0.05);
            font-weight: 300;
            position: relative;
            z-index: 2;
        }

        /* --- Sticky Left Actions (Hızlı İletişim İkonları) --- */
        .sticky-actions {
            position: fixed;
            bottom: 0;
            left: 0;
            z-index: 999;
            display: flex;
            flex-direction: column;
            gap: 8px;
            background: rgba(10, 15, 22, 0.96);
            border: 1px solid rgba(181, 104, 32, 0.28);
            border-left: 0;
            border-bottom: 0;
            border-top-right-radius: 16px;
            padding: 8px 7px 10px 5px;
            box-shadow: 0 12px 26px rgba(0,0,0,0.35);
        }

        .action-btn {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1rem;
            box-shadow: 0 3px 10px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
            position: relative;
        }

        /* İkon Renkleri */
        .action-btn.phone { background-color: var(--primary); }
        .action-btn.whatsapp { background-color: #25D366; }
        .action-btn.online { background-color: var(--bg-card); border: 1px solid var(--primary); }

        .action-btn:hover {
            transform: translateX(2px);
            color: #fff;
        }

        /* Tek kutu tasarımda taşmayı engellemek için tooltip kapatıldı */
        .action-btn::after {
            display: none;
        }

        .action-btn:hover::after {
            display: none;
        }

        /* Keyframes */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* --- MEDIA QUERIES (Mobil Uyumluluk) --- */
        
        /* Tablet ve Altı */
        @media (max-width: 992px) {
            .topbar { display: none; }
            .grid-2, .footer-grid { grid-template-columns: 1fr; gap: 50px; }
            
            .desktop-btn { display: none !important; }
            
            .logo img { height: 55px; } 

            .mobile-btn-li {
                display: block;
                width: 100%;
                text-align: center;
                margin-top: 30px !important;
                margin-bottom: 15px !important;
                padding-left: 0 !important;
            }
            .mobile-btn-li .btn-panel {
                width: 80%;
                justify-content: center;
                display: inline-flex;
                align-items: center;
                gap: 10px;
            }
            
            header {
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 10px 5%;
            }

            .logo { 
                flex: 1; 
                display: flex;
                justify-content: flex-start;
            }

            .header-right { 
                flex: 1; 
                display: flex;
                justify-content: flex-end; 
                gap: 15px; 
            }
            
            .menu-toggle { display: block; }
            
            .nav-menu {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                display: block;
                z-index: 1000;
            }

            nav ul {
                flex-direction: column;
                background: rgba(10, 15, 22, 0.98);
                backdrop-filter: blur(15px);
                padding: 0;
                max-height: 0;
                overflow: hidden;
                align-items: flex-start;
                transition: max-height 0.5s ease-in-out, padding 0.5s ease;
                border-bottom: 1px solid rgba(181, 104, 32, 0);
            }

            nav ul.active {
                max-height: 800px;
                padding: 30px 8% 40px; 
                /* Mobilde üst menü altında çizgi olmasın */
                border-bottom: 1px solid rgba(181, 104, 32, 0);
            }

            nav ul li { width: 100%; margin: 12px 0; padding-left: 10px;}
            nav a { font-size: 1.1rem; display: block; width: 100%; }
            
            .hero {
                min-height: auto; 
                padding-top: 180px; 
                padding-bottom: 100px;
                align-items: flex-start;
            }

            .unified-login-section {
                padding-top: 180px !important;
            }

            .hero h1 { font-size: 3.2rem; }
            .hero p { font-size: 1.15rem; }
            
            .stats-container { margin-top: 20px; gap: 20px;}
            
            .floating-box.box-1 { left: 10px; bottom: 10px; }
            .floating-box.box-2 { right: 10px; top: 10px; }

            .panel-cta { margin: 80px 5%; padding: 60px 30px; }
            .section-padding { padding: 80px 5%; }
            .sec-title { font-size: 2.4rem; }
        }

        /* Hizmetlerimiz (servis alt sayfaları) - mobilde sol menü tek sütun */
        @media (max-width: 992px) {
            .section-padding.services .grid-2 {
                grid-template-columns: 1fr !important;
                gap: 32px !important;
            }
        }

        /* Hizmetlerimiz (tek sayfa) - mobilde kartlar alt alta */
        @media (max-width: 992px) {
            #hizmetlerimiz .services-grid {
                grid-template-columns: 1fr !important;
                gap: 18px !important;
                margin-top: 28px !important;
            }

            #hizmetlerimiz .srv-card {
                padding: 26px 18px !important;
                min-height: 170px !important;
            }

            #hizmetlerimiz .srv-card i {
                font-size: 2.0rem !important;
                margin-bottom: 12px !important;
            }

            #hizmetlerimiz .srv-card .btn-panel {
                padding: 10px 18px !important;
                margin-top: 14px !important;
            }
        }

        @media (max-width: 576px) {
            #hizmetlerimiz .srv-card {
                padding: 22px 14px !important;
                min-height: 160px !important;
            }
        }

        /* Online giriş paneli: Personel/Firma seçim butonları */
        .login-type-btn {
            flex: 1;
            padding: 10px 12px;
            border-radius: 14px;
            border: 1px solid rgba(181, 104, 32, 0.35);
            background: rgba(20, 27, 37, 0.35);
            color: var(--text-main);
            font-weight: 700;
            cursor: pointer;
            transition: 0.25s ease;
        }

        .login-type-btn:hover {
            border-color: rgba(181, 104, 32, 0.6);
        }

        .login-type-btn.active {
            background: linear-gradient(45deg, var(--dark), var(--primary));
            border-color: transparent;
            color: #fff;
            box-shadow: 0 14px 35px rgba(181, 104, 32, 0.18);
        }

        /* Küçük Tablet / Büyük Telefon */
        @media (max-width: 768px) {
            .topbar-left span:nth-child(2) { display: none; }
            
            .sticky-actions { bottom: 0; left: 0; gap: 10px; }
            .action-btn { width: 34px; height: 34px; font-size: 0.95rem; }
            .action-btn::after { display: none; }

            .blog-layout {
                grid-template-columns: 1fr;
                gap: 18px;
            }

            .blog-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .sticky-widget {
                position: static;
            }

            .blog-card-actions {
                flex-direction: column;
                align-items: flex-start;
            }

            .blog-detail-head {
                padding: 24px 20px 16px;
            }

            .blog-detail-head h2 {
                font-size: 1.45rem;
            }

            .blog-detail-image {
                height: 240px;
            }

            .blog-detail-body {
                padding: 22px 20px 14px;
            }

            .blog-detail-actions {
                padding: 0 20px 24px;
            }

            .blog-share-strip {
                margin: 0 20px 20px;
            }
        }

        /* Telefon */
        @media (max-width: 576px) {
            .topbar { display: none; }
            
            /* Tam şeffaf: mobilde header alt çizgisi/çizgisi hiç görünmesin */
            header {
                top: 0;
                padding: 12px 5%;
                border-bottom: 0 !important;
                box-shadow: none !important;
                outline: none !important;
            }

            /* Mobilde "header-solid" olunca da alt çizgi görünmesin */
            #main-header.header-solid {
                border-bottom: 0 !important;
                box-shadow: none !important;
            }

            nav ul,
            nav ul.active {
                border-bottom: 0 !important;
            }
            
            .logo img { height: 50px; }

            .menu-toggle { font-size: 1.6rem; }
            
            .mobile-btn-li .btn-panel { width: 100%; }

            .hero {
                padding-top: 140px; 
                padding-bottom: 80px;
            }

            .unified-login-section {
                padding-top: 140px !important;
            }

            .header-right { gap: 10px; }
            
            .stat-box { flex: 1 1 100%; padding: 30px; }
            .hero h1 { font-size: 2.5rem; }
            .sec-title { font-size: 2rem; }
            .hero p { font-size: 1.1rem; }
            .panel-cta h2 { font-size: 2.2rem; }
            .panel-cta p { font-size: 1.1rem; }
            
            .floating-box { padding: 10px 15px; }
            .floating-box i { font-size: 1.5rem; }
            .floating-box .box-text h5 { font-size: 1rem; }
            .box-logo { height: 25px; }

            /* Footer mobil uyumu (alttaki alt çizgi görünmesin) */
            footer { padding: 70px 5% 0; }
            .footer-col h4::after { display: none; }
        }
    
        /* ==============================
           Hizmetlerimiz Dropdown Menüsü
           ============================== */
        .nav-menu .has-dropdown {
            position: relative;
        }
        
        .nav-menu .dropdown {
            display: none;
            position: absolute;
            /* Hover üzerinden menüye geçerken kapanmasın diye boşluğu azalttık */
            top: calc(100% + 6px);
            left: 0;
            flex-direction: column;
            gap: 0 !important;
            padding: 10px 0;
            margin: 0;
            list-style: none;
            min-width: 320px;
            background: rgba(10, 15, 22, 0.98);
            border: 1px solid rgba(181, 104, 32, 0.25);
            border-radius: 16px;
            z-index: 1002;
            box-shadow: 0 20px 50px rgba(0,0,0,0.45);
            align-items: stretch !important;
        }

        /* Dropdown'a inerken aradaki boşlukta :hover kalkmasın */
        .nav-menu .has-dropdown::after {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            top: 100%;
            height: 14px;
            background: transparent;
            z-index: 1;
        }
        
        .nav-menu .dropdown li {
            display: block;
            margin: 0;
            padding: 0;
        }
        
        .nav-menu .dropdown li a {
            display: block;
            padding: 12px 18px;
            color: var(--text-main);
            font-size: 0.95rem;
            font-weight: 500;
            letter-spacing: 0.2px;
            transition: 0.25s ease;
        }
        
        .nav-menu .dropdown li a:hover {
            color: var(--light);
            background: rgba(181, 104, 32, 0.10);
            padding-left: 28px;
        }
        
        .nav-menu .has-dropdown:hover > .dropdown {
            display: flex;
        }
        
        @media (max-width: 576px) {
            /* Mobil menüde dropdown'u dikey liste olarak göster */
            .nav-menu .dropdown {
                display: none !important;
                position: static;
                min-width: unset;
                background: rgba(10, 15, 22, 0.98);
                border: 1px solid rgba(181, 104, 32, 0.18);
                box-shadow: none;
                border-radius: 12px;
                padding: 8px 0;
                margin: 8px 0 0 0;
            }

            .nav-menu .has-dropdown.dropdown-open > .dropdown {
                display: block !important;
            }

            .nav-menu .has-dropdown:hover > .dropdown {
                display: none !important;
            }

            /* Mobilde hover ile ilgili geçiş boşluğu kullanma */
            .nav-menu .has-dropdown::after { display: none; }
        }

        /* 992 altı (tablet dahil) - dropdown'u hover'a bırakma, tıklamayla aç/kapa */
        @media (max-width: 992px) {
            .nav-menu .dropdown {
                position: static;
                min-width: unset;
                display: none !important;
                background: rgba(10, 15, 22, 0.98);
                border: 1px solid rgba(181, 104, 32, 0.18);
                border-radius: 12px;
                box-shadow: none;
                padding: 8px 0;
                margin: 8px 0 0 0;
            }

            .nav-menu .has-dropdown.dropdown-open > .dropdown {
                display: block !important;
            }

            .nav-menu .has-dropdown:hover > .dropdown {
                display: none !important;
            }

            .nav-menu .has-dropdown::after { display: none; }
        }

        /* Kurumsal iki sütun (inline) alanını mobilde tek sütun yap */
        @media (max-width: 992px) {
            .kurumsal-two-col {
                grid-template-columns: 1fr !important;
            }
        }
        
        /* ==============================
           Tema Uyumlu Sayfa Bileşenleri
           ============================== */
        .theme-card {
            background: var(--bg-card);
            border: 1px solid rgba(181, 104, 32, 0.10);
            border-radius: 20px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.25);
        }
        
        .theme-card-inner {
            padding: 45px 40px;
        }
        
        .theme-sidebar-card {
            background: var(--bg-card);
            border: 1px solid rgba(181, 104, 32, 0.14);
            border-radius: 20px;
            padding: 32px 26px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.25);
            position: sticky;
            top: 120px;
        }
        
        .theme-sidebar-title {
            color: #fff;
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 18px;
            position: relative;
            padding-left: 16px;
        }

        .theme-sidebar-title::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 5px;
            height: 26px;
            border-radius: 6px;
            background: linear-gradient(180deg, var(--primary), var(--light));
            box-shadow: 0 10px 25px rgba(181, 104, 32, 0.25);
        }
        
        .theme-sidebar-list {
            list-style: none;
            margin-top: 10px;
        }
        
        .theme-sidebar-list li {
            margin-bottom: 12px;
        }
        
        .theme-sidebar-list a {
            color: var(--text-muted);
            font-size: 1rem;
            font-weight: 300;
            transition: 0.25s ease;
            display: block;
            padding: 10px 12px;
            border-radius: 14px;
            border: 1px solid rgba(181, 104, 32, 0.0);
        }
        
        .theme-sidebar-list a:hover {
            color: var(--light);
            background: rgba(181, 104, 32, 0.10);
            border-color: rgba(181, 104, 32, 0.35);
            padding-left: 16px;
        }

        .theme-sidebar-list a.active {
            color: var(--light);
            background: rgba(181, 104, 32, 0.14);
            border-color: rgba(181, 104, 32, 0.55);
            box-shadow: 0 14px 35px rgba(181, 104, 32, 0.18);
            padding-left: 16px;
        }
        
        .theme-sidebar-cta {
            margin-top: 26px;
            border: 1px solid rgba(181, 104, 32, 0.18);
            border-radius: 16px;
            padding: 22px 18px;
            background: linear-gradient(180deg, rgba(181, 104, 32, 0.10), rgba(181, 104, 32, 0.03));
        }
        
        .theme-sidebar-cta h4 {
            color: #fff;
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .theme-sidebar-cta p {
            color: var(--text-muted);
            line-height: 1.8;
            font-weight: 300;
            margin-bottom: 18px;
        }

        /* Sticky sidebar düzeni (mobilde sabit kalmasın) */
        @media (max-width: 992px) {
            .theme-sidebar-card {
                position: relative;
                top: auto;
                margin-bottom: 22px;
            }
        }
        
        .theme-sidebar-cta p {
            color: var(--text-muted);
            line-height: 1.8;
            font-weight: 300;
            margin-bottom: 18px;
        }
        
        .theme-entry-content {
            padding: 45px 40px;
        }
        
        .theme-entry-content h3 {
            font-size: 1.4rem;
            color: #fff;
            margin-bottom: 16px;
            font-weight: 700;
        }
        
        .theme-entry-content p {
            color: var(--text-muted);
            font-size: 1rem;
            line-height: 1.8;
            font-weight: 300;
            margin-bottom: 16px;
        }
        
        .theme-accordion {
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-top: 28px;
        }
        
        .theme-accordion details {
            background: var(--bg-card);
            border: 1px solid rgba(181, 104, 32, 0.10);
            border-radius: 16px;
            padding: 16px 16px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.25);
        }
        
        .theme-accordion summary {
            cursor: pointer;
            color: #fff;
            font-weight: 700;
            font-size: 1rem;
            outline: none;
        }
        
        .theme-accordion details > div {
            margin-top: 14px;
            color: var(--text-muted);
            font-weight: 300;
            line-height: 1.85;
            font-size: 1rem;
        }
        
        .theme-checklist {
            list-style: none;
            margin-top: 22px;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        
        .theme-checklist li {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-muted);
            font-weight: 300;
            line-height: 1.7;
        }
        
        .theme-checklist i {
            color: var(--primary);
            font-size: 1.1rem;
        }
        
        .theme-contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.1fr;
            gap: 35px;
            align-items: start;
        }
        
        .theme-map-frame {
            width: 100%;
            height: 420px;
            border: 0;
            border-radius: 18px;
            overflow: hidden;
        }
        
        .theme-form-field {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid rgba(181, 104, 32, 0.15);
            background: rgba(20, 27, 37, 0.25);
            border-radius: 12px;
            color: var(--text-main);
            outline: none;
            transition: 0.25s ease;
            font-size: 0.98rem;
            font-weight: 300;
        }
        
        .theme-form-field::placeholder {
            color: rgba(148, 163, 184, 0.9);
        }
        
        .theme-form-field:focus {
            border-color: rgba(181, 104, 32, 0.55);
            box-shadow: 0 0 0 4px rgba(122, 66, 22, 0.18);
        }
        
        .theme-form-label {
            color: #fff;
            font-weight: 600;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.95rem;
        }
        
        .theme-form-group {
            margin-bottom: 16px;
        }
        
        .theme-form-textarea {
            min-height: 140px;
            resize: vertical;
        }
        
        @media (max-width: 992px) {
            .theme-contact-grid {
                grid-template-columns: 1fr;
            }
            
            .theme-map-frame {
                height: 320px;
            }
        }

        /* Mobilde kurumsal sayfasındaki kayan kutular taşmasın */
        @media (max-width: 992px) {
            .floating-box {
                padding: 12px 16px;
            }

            body {
                overflow-x: hidden;
            }

            .floating-box.box-1 {
                bottom: 16px;
                left: 16px;
            }

            .floating-box.box-2 {
                top: 16px;
                right: 16px;
            }

            /* Kurumsal Belgeler (inline 3 kol olabilir) - mobilde taşmasın */
            .section-padding.reveal .services-grid {
                grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important;
                gap: 20px !important;
            }
        }

