/* DAİ DANIŞMANLIK - MASTER STYLE SHEET */
:root { --cyan: #00bcd4; --pink: #ce355a; --dark: #0a0a0a; --white-bg: #f8fafc; }

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; background: var(--dark); color: white; overflow-x: hidden; line-height: 1.6; }
.container { max-width: 1400px; margin: 0 auto; padding: 0 40px; }

/* HEADER & NAVBAR - GÜNCEL */
header { 
    position: absolute; 
    width: 100%; 
    top: 0; 
    z-index: 5000; 
    transition: 0.3s; 
}

header.scrolled { 
    position: fixed; 
    background: rgba(10,10,10,0.95); 
    backdrop-filter: blur(10px); 
    border-bottom: 1px solid rgba(255,255,255,0.1); 
}

.top-bar { 
    border-bottom: 1px solid rgba(255,255,255,0.05); 
    padding: 10px 0; 
}

.flex-end { 
    display: flex; 
    justify-content: flex-end; 
}

.lang-btn { 
    text-decoration: none; 
    color: white; 
    font-size: 11px; 
    font-weight: 700; 
    border: 1px solid #333; 
    padding: 4px 10px; 
    border-radius: 4px; 
    margin-left: 5px; 
    transition: 0.3s; 
}

.lang-btn.active, .lang-btn:hover { 
    border-color: var(--cyan); 
    color: var(--cyan); 
}

/* Nav Row ve Logo/Slogan Alanı */
.nav-row { 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    height: 100px;
}

.logo-area {
    display: flex;
    align-items: center;
}

.logo img { 
    height: 66px;
    width: auto;
    display: block;
}

.header-slogan {
    margin-left: 24px;
    padding-left: 24px;
    border-left: 2px solid rgba(255,255,255,0.2);
}

.header-slogan span {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    white-space: nowrap;
}

/* HAMBURGER MENU */
.hamburger {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 6000;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: white;
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Menü Linkleri */
.nav-links { 
    display: flex; 
    list-style: none; 
    gap: 25px; 
    align-items: center; 
}

.main-link { 
    color: white; 
    text-decoration: none; 
    font-size: 14px; 
    font-weight: 600; 
    text-transform: uppercase; 
}

.btn-analyze { 
    background: var(--cyan); 
    color: #000; 
    padding: 12px 25px; 
    border-radius: 4px; 
    font-weight: 800; 
    text-decoration: none; 
    transition: 0.3s; 
    font-size: 13px;
}

.btn-analyze:hover {
    background: #fff;
    transform: translateY(-2px);
}

/* SUBMENU */
.dropdown { position: relative; }
.submenu { 
    position: absolute; 
    top: 100%; 
    left: 0; 
    background: #111; 
    min-width: 200px; 
    padding: 10px 0; 
    list-style: none; 
    opacity: 0; 
    visibility: hidden; 
    transform: translateY(10px); 
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); /* Daha yumuşak ve yavaş */
    border-top: 3px solid var(--cyan); 
}
.dropdown:hover .submenu { 
    opacity: 1; 
    visibility: visible; 
    transform: translateY(0); 
}
.submenu li a { 
    color: #ccc; 
    padding: 10px 20px; 
    display: block; 
    text-decoration: none; 
    font-size: 13px; 
    transition: all 0.3s ease; /* Yumuşak geçiş */
}
.submenu li a:hover { 
    color: var(--cyan); 
    background: #1a1a1a; 
    padding-left: 30px; /* 25px'ten 30px'e çıkardım, daha belirgin kayma */
}

/* HERO SECTION */
.hero-area { height: 100vh; position: relative; overflow: hidden; }
.swiper-slide { height: 100vh; background-size: cover; background-position: center; display: flex; align-items: center; }
.hero-content { position: relative; z-index: 10; margin-left: 8%; }

.cyan { color: var(--cyan); }

/* HERO İÇERİK DÜZENLEME */
.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 15px;
    color: #ffffff;
}

.hero-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
    font-weight: 400;
    max-width: 500px;
}

/* BUTON BOYUTU */
.btn-hero-main {
    display: inline-block;
    background: var(--cyan);
    color: #000;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    transition: 0.3s ease;
}

/* STATS SECTION */
.dark-stats-section { padding: 100px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.stat-card { background: #111; padding: 50px; border-radius: 15px; text-align: center; border: 1px solid #222; transition: 0.3s; }

.stat-card h2 {
    font-size: 2.2rem;
    color: var(--cyan);
    margin-bottom: 5px;
}

.stat-card p {
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #888;
}

.white-modern-section {
    padding: 100px 0;
    background-color: #ffffff;
    overflow: hidden;
}

.modern-header {
    text-align: center;
    margin-bottom: 60px;
}

.sub-title {
    color: var(--cyan);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.modern-header h2 {
    font-size: 32px;
    color: #1a1a1a;
    font-weight: 700;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.3;
}

.gradient-text {
    background: linear-gradient(90deg, #00d2ff, #3a7bd5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Grid Yapısı */
.modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* Zarif Kart Tasarımı */
.m-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid #f0f0f0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
}

.m-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border-color: var(--cyan);
}

/* İkon Kutusu */
.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(0, 210, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: 0.3s;
}

.icon-box i {
    font-size: 24px;
    color: var(--cyan);
}

.m-card:hover .icon-box {
    background: var(--cyan);
}

.m-card:hover .icon-box i {
    color: #fff;
}

/* Metin Ayarları */
.m-card h3 {
    font-size: 18px;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 600;
}

.m-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Kartın Arkasına Hafif Bir Efekt */
.m-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at top right, rgba(0,210,255,0.05), transparent);
    border-radius: 20px;
    z-index: -1;
}

/* INCENTIVES AREA */
.incentives-area { padding: 100px 0; text-align: center; background: #080808; }
.incentives-header h2 { font-size: 2.8rem; margin-bottom: 20px; }
.ticker-box { background: #111; padding: 40px 0; border-y: 1px solid var(--cyan); margin: 50px 0; overflow: hidden; }
.ticker-content { display: flex; width: max-content; animation: tickerSlide 30s linear infinite; }
.t-item { padding: 0 50px; font-weight: 700; display: flex; align-items: center; white-space: nowrap; font-size: 1.2rem; }
.t-item i { color: var(--cyan); font-style: normal; margin-right: 15px; font-size: 1.5rem; }
@keyframes tickerSlide { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* EXPORT READY */
.export-ready { background: #fff; padding: 120px 0; color: #1a1a1a; }
.export-flex { display: flex; align-items: center; gap: 80px; }
.export-img { flex: 1; }
.export-img img { width: 100%; border-radius: 20px; box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.export-text { flex: 1; }
.export-text h2 { font-size: 3rem; margin-bottom: 25px; font-weight: 800; }

/* =========================================
   TOPLUMSAL FARKINDALIK - ÖZEL TASARIM
   ========================================= */

.awareness-section {
    padding: 120px 0;
    background: #0f1115;
    position: relative;
}

/* Ortalanmış Başlık Tasarımı */
.awareness-header {
    text-align: center;
    margin-bottom: 60px;
}

.awareness-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 1px;
}

.awareness-header .cyan {
    color: var(--cyan);
}

.header-line {
    width: 80px;
    height: 4px;
    background: var(--cyan);
    margin: 20px auto 0;
    border-radius: 2px;
}

/* Grid Yapısı */
.awareness-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

/* Kart Tasarımı */
.awareness-item {
    position: relative;
    display: block;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    aspect-ratio: 1;
}

.awareness-item:hover {
    transform: translateY(-15px) scale(1.03);
    z-index: 10;
}

/* Görsel Arka Plan */
.awareness-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.awareness-item:hover .awareness-img {
    transform: scale(1.1);
}

/* İçerik Overlay */
.awareness-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, transparent 100%);
    transition: 0.3s;
}

.card-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    transition: 0.3s;
}

.card-hover-info {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.awareness-item:hover .card-hover-info {
    max-height: 100px;
}

.card-hover-info p {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 10px;
}

.read-more {
    color: var(--cyan);
    font-size: 13px;
    font-weight: 700;
}

/* Footer */
.main-footer { background: #0a0a0a; padding: 80px 0 30px 0; border-top: 1px solid #222; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 50px; }
.footer-col h4 { color: var(--cyan); font-size: 14px; margin-bottom: 20px; letter-spacing: 1px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a, .footer-col p { color: #888; text-decoration: none; font-size: 14px; transition: 0.3s; }
.footer-col ul li a:hover { color: var(--cyan); padding-left: 5px; }
.footer-col.branding img { height: 60px; margin-bottom: 20px; }
.footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid #1a1a1a; }
.footer-bottom p { color: #666; font-size: 13px; }

/* =========================================
   PROFESYONEL TAB (SEKME) SİSTEMİ
   ========================================= */

.tabs-wrapper {
    margin-bottom: 50px;
}

.tabs-nav-modern {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.t-btn {
    background: #f5f5f5;
    border: 2px solid transparent;
    padding: 18px 30px;
    border-radius: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 15px;
    color: #333;
}

.t-btn:hover {
    border-color: var(--cyan);
    background: rgba(0,188,212,0.05);
}

.t-btn.active {
    background: var(--cyan);
    color: #fff;
    border-color: var(--cyan);
}

.t-icon {
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.t-btn.active .t-icon i {
    animation: iconBounce 0.5s ease;
}

@keyframes iconBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Tab İçerik Panelleri */
.tabs-main-container {
    position: relative;
}

.tab-content-panel {
    display: none;
    animation: tabSlideUp 0.5s ease;
}

.tab-content-panel.active {
    display: block;
}

.panel-flex {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 50px;
    background: #fafafa;
    border-radius: 30px;
}

.panel-info {
    flex: 1.2;
}

.panel-visual {
    flex: 1;
}

.panel-tag {
    display: inline-block;
    background: rgba(0,188,212,0.1);
    color: var(--cyan);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.panel-info h3 {
    font-size: 36px;
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.panel-info p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

.panel-features {
    list-style: none;
    margin-bottom: 35px;
}

.panel-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: #333;
}

.panel-features li i {
    color: var(--cyan);
    font-size: 18px;
    margin-top: 2px;
}

.panel-features strong {
    color: #1a1a1a;
    font-weight: 700;
}

.tab-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* Profesyonel Buton */
.btn-professional {
    background: #000;
    color: #fff;
    padding: 16px 35px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    display: inline-block;
    transition: 0.3s;
    border: 2px solid #000;
}

.btn-professional:hover {
    background: transparent;
    color: #000;
    transform: translateY(-5px);
}

/* Animasyonlar */
@keyframes tabSlideUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* PROFESYONEL İHRACAT ANALİZ BÖLÜMÜ */
.export-ready-pro {
    padding: 120px 0;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

/* Cam Efekti Kartı */
.glass-card-wrapper {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 40px;
    padding: 60px;
    backdrop-filter: blur(15px);
}

.export-flex-pro {
    display: flex;
    align-items: center;
    gap: 80px;
}

/* Görsel ve Animasyonlar */
.export-visual-pro {
    flex: 1;
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.main-export-img {
    width: 100%;
    display: block;
    filter: grayscale(20%) brightness(0.8);
    transition: 0.5s;
}

/* Tarama Çizgisi Efekti */
.scanning-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--cyan);
    box-shadow: 0 0 20px var(--cyan);
    animation: scanning 3s linear infinite;
    z-index: 2;
}

@keyframes scanning {
    0% { top: 0; }
    100% { top: 100%; }
}

/* Veri Baloncukları */
.data-badge {
    position: absolute;
    background: rgba(0, 188, 212, 0.9);
    color: #000;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 3;
    animation: floating 3s ease-in-out infinite;
}

.db-1 { top: 20%; right: -20px; }
.db-2 { bottom: 15%; left: -20px; animation-delay: 1.5s; }

@keyframes floating {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Metin İçerik */
.export-text-pro {
    flex: 1.2;
}

.top-tag {
    color: var(--cyan);
    letter-spacing: 3px;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 20px;
    display: block;
}

.export-text-pro h2 {
    font-size: 46px;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
    color: #fff;
}

.export-text-pro p {
    color: #aaa;
    font-size: 18px;
    margin-bottom: 35px;
}

.analysis-check-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255,255,255,0.03);
    padding: 15px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.05);
}

.check-item i {
    color: var(--cyan);
    font-size: 20px;
}

.check-item span {
    font-size: 14px;
    font-weight: 600;
    color: #eee;
}

/* Buton */
.btn-analyze-pro {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    color: #000;
    padding: 22px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
    transition: 0.4s;
}

.btn-analyze-pro:hover {
    background: var(--cyan);
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 188, 212, 0.3);
}

/* AYDINLIK İHRACAT ANALİZ BÖLÜMÜ */
.export-ready-pro.light-version {
    padding: 100px 0;
    background: #f8fafc;
}

.white-card-wrapper {
    background: #ffffff;
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.04);
    border: 1px solid #edf2f7;
}

/* Görsel Alanı */
.image-container-simple {
    border-radius: 20px;
    overflow: hidden;
    line-height: 0;
}

.cyan-text {
    color: var(--cyan);
}

/* Light version için özel yazı renkleri */
.export-ready-pro.light-version .top-tag {
    color: var(--cyan);
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.export-ready-pro.light-version .export-text-pro h2 {
    font-size: 42px;
    color: #1a202c;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 25px;
}

.export-ready-pro.light-version .export-text-pro p {
    color: #4a5568;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 35px;
}

/* Özellik Listesi */
.analysis-check-list-light {
    margin-bottom: 40px;
}

.check-item-light {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-weight: 600;
    color: #2d3748;
}

.check-item-light i {
    color: var(--cyan);
    font-size: 18px;
}

/* Buton */
.btn-analyze-cyan {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--cyan);
    color: #fff;
    padding: 18px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(0, 188, 212, 0.2);
}

.btn-analyze-cyan:hover {
    background: #00acc1;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 188, 212, 0.3);
}

/* =========================================
   MOBİL UYUMLULUK (RESPONSIVE DESIGN)
   ========================================= */

/* Tablet - 992px ve altı */
@media (max-width: 992px) {
    .container { padding: 0 20px; }
    
    /* Header mobil düzenlemesi */
    .hamburger { display: flex; }
    
    .header-slogan {
        display: none; /* Mobilde slogan gizleniyor */
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        transition: 0.4s;
        padding-top: 100px;
        z-index: 5500;
        overflow-y: auto;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    
    .nav-links > li {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .main-link {
        display: block;
        padding: 18px 25px;
        font-size: 16px;
    }
    
    .dropdown .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border: none;
        background: rgba(0, 188, 212, 0.05);
    }
    
    .dropdown.active .submenu {
        max-height: 500px;
    }
    
    .submenu li a {
        padding: 12px 40px;
    }
    
    .btn-analyze {
        margin: 20px 25px;
        display: block;
        text-align: center;
    }
    
    /* Hero düzenlemesi */
    .hero-content {
        margin-left: 5%;
        padding: 0 20px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 0.95rem;
    }
    
    /* Stats grid */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Tabs */
    .panel-flex { 
        flex-direction: column; 
        text-align: center; 
        padding: 30px;
    }
    .panel-info h3 { font-size: 28px; }
    .panel-features { 
        display: inline-block; 
        text-align: left; 
    }
    .tabs-nav-modern { 
        overflow-x: auto; 
        justify-content: flex-start; 
    }
    .t-btn { 
        min-width: 140px; 
    }
    .tab-content-panel { 
        padding: 40px 30px; 
    }
    .tab-img { 
        height: 300px; 
    }
    
    /* Export section */
    .export-flex-pro { 
        flex-direction: column; 
        text-align: center; 
        gap: 40px;
    }
    .glass-card-wrapper { 
        padding: 30px; 
    }
    .white-card-wrapper { 
        padding: 30px; 
    }
    .export-text-pro h2 { 
        font-size: 32px; 
    }
    .analysis-check-list { 
        grid-template-columns: 1fr; 
    }
    .check-item-light { 
        justify-content: center; 
    }
    .data-badge { 
        display: none; 
    }
    
    /* Awareness grid */
    .awareness-grid { 
        grid-template-columns: repeat(2, 1fr); 
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .incentives-header h2 {
        font-size: 2rem;
    }
}

/* Mobil - 768px ve altı */
@media (max-width: 768px) {
    .logo img {
        height: 50px;
    }
    
    .nav-row {
        height: 80px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-card {
        padding: 30px;
    }
    
    .modern-header h2 {
        font-size: 24px;
    }
    
    .awareness-grid {
        grid-template-columns: 1fr;
    }
    
    .awareness-item {
        aspect-ratio: 4/3;
    }
    
    .t-item {
        font-size: 1rem;
        padding: 0 30px;
    }
}

/* Küçük mobil - 576px ve altı */
@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    .main-nav {
        width: 100%;
    }
    
    .hero-content h1 {
        font-size: 1.6rem;
    }
    
    .hero-content p {
        font-size: 0.85rem;
    }
    
    .btn-hero-main {
        padding: 10px 25px;
        font-size: 12px;
    }
    
    .modern-header h2 {
        font-size: 20px;
    }
    
    .panel-info h3 {
        font-size: 22px;
    }
    
    .panel-info p {
        font-size: 14px;
    }
    
    .tab-img {
        height: 250px;
    }
    
    .export-text-pro h2 {
        font-size: 26px;
    }
    
    .export-text-pro p {
        font-size: 15px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .awareness-header h2 {
        font-size: 1.8rem;
    }
    
    .incentives-header h2 {
        font-size: 1.5rem;
    }
    
    .incentives-header p {
        font-size: 14px;
    }
    
    .t-item {
        font-size: 0.85rem;
    }
}

/* Light Theme Awareness */
.awareness-section.light-theme {
    background: #ffffff;
    padding: 100px 0;
}

.awareness-section.light-theme .awareness-header h2 {
    color: #1a1a1a;
}

.awareness-section.light-theme .awareness-item {
    border: 1px solid #eee;
}

.awareness-section.light-theme .awareness-content {
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
}
/* Hero Video Konteynı - %40 Küçültülmüş ve Sabitlenmiş */
.hero-video-box {
    flex: 1;
    width: 100%;
    max-width: 350px; /* Genişlik 550px'den 350px'e çekildi */
    max-height: 220px; /* Yükseklik 350px'den 220px'e çekildi */
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border: 3px solid #fff;
    background: #000;
}

.hero-video-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* Hero Görsel Konteynırı */
.hero-image-box {
    flex: 1;
    width: 100%;
    max-width: 450px; /* Görselin aşırı yayılmasını önler */
    height: auto;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 5px solid #fff;
    transition: transform 0.3s ease;
}

.hero-image-box:hover {
    transform: translateY(-5px); /* Hafif etkileşim ekler */
}

.hero-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Görselin kutu içine tam sığmasını sağlar */
    display: block;
}