/* * Ekim Peyzaj Kurumsal Tasarım
 * Geliştirici: Anatolia Sapiens AG
 * Tarih: 2024 - 2026
 */

:root {
    --primary-green: #28a745;
    --dark-primary-green: #1a6b2c;
    --light-green: #d4edda;
    --background-color: #080c0a;
    --text-color: #f0f0f0;
    --card-bg: rgba(255, 255, 255, 0.03);
    --border-color: rgba(255, 255, 255, 0.08);
    --font-family: 'Inter', sans-serif;
    --transition-speed: 0.4s ease;
    --orange-theme: #ff9800;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-family); background-color: var(--background-color);
    color: var(--text-color); line-height: 1.6;
    -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a { text-decoration: none; color: var(--primary-green); transition: all var(--transition-speed); }
a:hover { color: var(--light-green); }
button { cursor: pointer; border: none; outline: none; background: transparent; font-family: var(--font-family); }

/* --- Loading Overlay --- */
.loading-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: var(--background-color); display: flex; justify-content: center; align-items: center; z-index: 9999; flex-direction: column; transition: opacity 0.5s, visibility 0.5s; }
.loading-overlay.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.logo-circle { width: 70px; height: 70px; border-radius: 50%; background: var(--primary-green); display: flex; justify-content: center; align-items: center; margin: 0 auto 15px auto; color: white; font-size: 2.5em; box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3); }
.loader-content h2 { color: var(--text-color); margin-bottom: 25px; font-weight: 700; letter-spacing: 1px;}
.loader { border: 3px solid var(--border-color); border-top: 3px solid var(--primary-green); border-radius: 50%; width: 40px; height: 40px; animation: spin 1s linear infinite; margin: 0 auto; }
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* --- Kurumsal Header --- */
.header { position: fixed; top: 0; left: 0; width: 100%; padding: 20px 50px; display: flex; justify-content: space-between; align-items: center; z-index: 1000; transition: all 0.4s ease; border-bottom: 1px solid transparent; }
.header.scrolled { background-color: rgba(8, 12, 10, 0.98); backdrop-filter: blur(15px); padding: 15px 50px; border-bottom: 1px solid var(--border-color); box-shadow: 0 5px 20px rgba(0,0,0,0.5); }
.logo-container { display: flex; align-items: center; gap: 15px; }
.logo-container .logo-circle { width: 45px; height: 45px; font-size: 1.6em; margin: 0; box-shadow: none; }
.logo-text h1 { font-size: 1.5em; margin: 0; font-weight: 800; letter-spacing: -0.5px; color: white;}
.logo-text p { font-size: 0.8em; color: var(--primary-green); margin: 0; font-weight: 500;}

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-link { color: #ddd; font-weight: 500; font-size: 0.95em; position: relative; padding: 5px 0; }
.nav-link:not(.shop-btn):after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background-color: var(--primary-green); transition: width 0.3s; }
.nav-link:hover, .nav-link.active { color: white; }
.nav-link.active:after, .nav-link:not(.shop-btn):hover:after { width: 100%; }

/* --- MAĞAZA BUTONU (Yeşillik Temalı) --- */
.shop-btn { 
    background: linear-gradient(135deg, #1e7e34 0%, #34ce57 100%); 
    color: white !important; 
    padding: 10px 24px !important; 
    border-radius: 50px; 
    font-weight: 700; 
    display: flex; 
    align-items: center; 
    gap: 8px; 
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}
.shop-btn:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.6); 
    border-color: rgba(255,255,255,0.5);
}
.mobile-menu-btn { display: none; background: transparent; color: white; font-size: 1.5em; cursor: pointer; }

/* --- Hero Section (Arka Plan Videolu) --- */
.hero { height: 100vh; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden;}
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; background-color: #080c0a;}
.hero-bg video { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
.hero:after { content: ''; position: absolute; top:0; left:0; width:100%; height:100%; background: linear-gradient(to bottom, rgba(8,12,10,0.8) 0%, rgba(0,0,0,0.2) 50%, rgba(8,12,10,1) 100%); z-index: 0; pointer-events: none; }
.hero-content { text-align: center; max-width: 900px; padding: 0 20px; z-index: 2; }
.hero-title { font-size: 4.5em; line-height: 1.1; margin-bottom: 20px; font-weight: 800; opacity: 0; transform: translateY(30px); animation: fadeUp 1s forwards; text-shadow: 0 5px 25px rgba(0,0,0,0.9); }
.hero-subtitle { font-size: 1.3em; color: #eee; margin-bottom: 40px; opacity: 0; transform: translateY(30px); animation: fadeUp 1s 0.2s forwards; text-shadow: 0 2px 10px rgba(0,0,0,0.9); font-weight: 400; }
.hero-btn { display: inline-block; padding: 18px 50px; background-color: var(--primary-green); color: white; border-radius: 50px; font-size: 1.1em; font-weight: 700; opacity: 0; transform: translateY(30px); animation: fadeUp 1s 0.4s forwards; transition: all 0.3s; border: 2px solid transparent;}
.hero-btn:hover { background-color: transparent; border-color: var(--primary-green); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.5); color: var(--primary-green); }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* --- Sections Genel --- */
.section { padding: 100px 50px; }
.section-title { font-size: 2.8em; text-align: center; margin-bottom: 70px; font-weight: 800; position: relative; color: white;}
.section-title:after { content: ''; position: absolute; bottom: -15px; left: 50%; transform: translateX(-50%); width: 70px; height: 3px; background-color: var(--primary-green); }

/* --- Proje Kartları --- */
.video-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 35px; }
.video-card { background-color: var(--card-bg); border-radius: 12px; border: 1px solid var(--border-color); overflow: hidden; transition: transform 0.4s, box-shadow 0.4s; opacity: 0; transform: translateY(30px); }
.video-card.visible { opacity: 1; transform: translateY(0); }
.video-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.6); border-color: rgba(40,167,69,0.4); }
.video-wrapper { position: relative; width: 100%; height: 260px; overflow: hidden; }
.video-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.video-card:hover .video-wrapper img { transform: scale(1.08); }
.video-overlay { position: absolute; bottom: 0; left: 0; width: 100%; background: linear-gradient(to top, rgba(0,0,0,0.95), transparent); padding: 40px 20px 20px; }
.video-title { color: white; font-size: 1.3em; font-weight: 700; margin: 0; text-shadow: 0 2px 5px rgba(0,0,0,0.8);}
.video-content { padding: 30px 25px; }
.video-description { color: #bbb; font-size: 0.95em; line-height: 1.8; }

/* --- Kurumsal Yaklaşım (Özellikler) --- */
.features-section { background: rgba(0,0,0,0.4); border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); }
.features-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }
.feature-card { padding: 50px 30px; background: var(--card-bg); border-radius: 12px; text-align: center; border: 1px solid transparent; transition: all 0.4s; opacity: 0; transform: translateY(30px); }
.feature-card.visible { opacity: 1; transform: translateY(0); }
.feature-card:hover { border-color: rgba(40,167,69,0.3); background: rgba(255,255,255,0.05); transform: translateY(-5px);}
.feature-icon { font-size: 2.8em; color: var(--primary-green); margin-bottom: 25px; }
.feature-title { font-size: 1.4em; margin-bottom: 15px; color: white; font-weight: 700;}
.feature-description { color: #aaa; font-size: 1em; line-height: 1.7;}

/* --- İstatistikler --- */
.stats-section { padding: 100px 50px; background: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="%23080c0a"/><circle cx="50" cy="50" r="1.5" fill="%2328a745" opacity="0.15"/></svg>'); }
.stats-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat-item { opacity: 0; transform: scale(0.9); transition: all 0.5s; }
.stat-item.visible { opacity: 1; transform: scale(1); }
.stat-number { font-size: 4em; font-weight: 900; color: var(--primary-green); line-height: 1; margin-bottom: 15px; font-family: monospace; text-shadow: 0 0 20px rgba(40,167,69,0.2);}
.stat-label { color: #ddd; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; font-size: 0.9em; }

/* === KUNYE.HTML İLE BİREBİR AYNI KUSURSUZ FOOTER CSS === */
.corporate-footer { background-color: #050806; border-top: 2px solid var(--primary-green); color: #ccc; font-size: 0.95em; }
.footer-top { padding: 80px 50px 50px; }
.footer-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 50px; }

.footer-logo { display: flex; align-items: center; gap: 10px; color: white; font-size: 1.5em; font-weight: 800; margin-bottom: 20px; }
.footer-logo i { color: var(--primary-green); }
.company-desc { line-height: 1.7; margin-bottom: 25px; color: #999; }
.work-hours { background: rgba(255,255,255,0.03); padding: 15px; border-left: 3px solid var(--primary-green); border-radius: 0 4px 4px 0; font-size: 0.9em; }

.widget-title { color: white; font-size: 1.1em; font-weight: 600; margin-bottom: 25px; position: relative; padding-bottom: 10px; }
.widget-title:after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: var(--primary-green); }

.links-widget ul { list-style: none; }
.links-widget li { margin-bottom: 15px; }
.links-widget a { color: #999; display: flex; align-items: center; gap: 10px; transition: color 0.3s; }
.links-widget a i { font-size: 0.8em; color: var(--primary-green); transition: transform 0.3s; }
.links-widget a:hover { color: white; }
.links-widget a:hover i { transform: translateX(5px); }

.app-widget p { margin-bottom: 20px; color: #999; }
.app-downloads-pro { display: flex; flex-direction: column; gap: 12px; }
.store-btn { display: flex; align-items: center; background: #111; border: 1px solid #333; padding: 10px 20px; border-radius: 6px; color: white; transition: all 0.3s; width: 100%; max-width: 220px; }
.store-btn i { font-size: 1.8em; margin-right: 15px; }
.store-text { display: flex; flex-direction: column; align-items: flex-start; }
.store-text span { font-size: 0.65em; text-transform: uppercase; color: #888; }
.store-text strong { font-size: 1em; font-weight: 600; letter-spacing: 0.5px; }
.store-btn:hover { background: #1a1a1a; border-color: var(--primary-green); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding: 25px 50px; background: #030504; }
.bottom-container { display: flex; justify-content: space-between; align-items: center; grid-template-columns: none; }
.copyright p { margin-bottom: 5px; color: #777; font-size: 0.9em; }
.copyright strong { color: white; }
.theme-link { color: var(--orange-theme) !important; font-weight: 600; }
.theme-link:hover { text-decoration: underline; color: #fff !important; }

.social-links-pro { display: flex; gap: 10px; }
.social-links-pro a { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; background: #111; color: #999; border-radius: 4px; transition: all 0.3s; }
.social-links-pro a:hover { background: var(--primary-green); color: white; transform: translateY(-3px); }

/* --- Çerez Banner'ı CSS --- */
.cookie-banner { position: fixed; bottom: 0; left: 0; width: 100%; background-color: rgba(8, 12, 10, 0.98); border-top: 2px solid var(--primary-green); padding: 20px 50px; display: flex; justify-content: space-between; align-items: center; z-index: 99999; box-shadow: 0 -10px 40px rgba(0,0,0,0.8); transform: translateY(100%); transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.cookie-banner.show { transform: translateY(0); }
.cookie-banner.hidden { display: none !important; }
.cookie-content { display: flex; align-items: center; gap: 25px; max-width: 75%; }
.cookie-icon { font-size: 2.5em; color: var(--orange-theme); }
.cookie-content p { color: #ddd; font-size: 0.95em; margin: 0; line-height: 1.6; }
.cookie-content a { color: var(--primary-green); text-decoration: none; font-weight: 600; border-bottom: 1px dashed var(--primary-green); padding-bottom: 2px;}
.cookie-content a:hover { color: white; border-color: white;}
.cookie-buttons { display: flex; gap: 15px; }
.cookie-btn { padding: 12px 30px; border-radius: 6px; font-weight: 600; font-size: 0.95em; transition: all 0.3s; cursor: pointer; border: none;}
.cookie-btn.accept { background-color: var(--primary-green); color: white; box-shadow: 0 4px 15px rgba(40,167,69,0.3);}
.cookie-btn.accept:hover { background-color: var(--dark-primary-green); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(40,167,69,0.5); }
.cookie-btn.reject { background-color: transparent; color: #aaa; border: 1px solid #555; }
.cookie-btn.reject:hover { background-color: rgba(255,255,255,0.05); color: white; border-color: white; }

/* --- Araçlar (Scroll & Müzik) --- */
.scroll-to-top { position: fixed; bottom: 30px; right: 30px; background: var(--primary-green); color: white; width: 45px; height: 45px; border-radius: 4px; display: flex; justify-content: center; align-items: center; font-size: 1.2em; z-index: 1000; opacity: 0; visibility: hidden; transition: all 0.3s; }
.scroll-to-top.show { opacity: 1; visibility: visible; }
.scroll-to-top:hover { background: var(--dark-primary-green); transform: translateY(-5px); }

.music-control { position: fixed; bottom: 30px; left: 30px; background: rgba(0,0,0,0.6); border: 1px solid var(--border-color); color: white; width: 45px; height: 45px; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 1.2em; z-index: 1000; cursor: pointer; transition: all 0.3s; backdrop-filter: blur(5px); }
.music-control:hover { border-color: var(--primary-green); color: var(--primary-green); }
.music-control.paused { color: #666; }

/* --- RESPONSIVE TASARIM (Mobil Uyum) --- */
@media (max-width: 1024px) {
    .header { padding: 20px 30px; }
    .hero-title { font-size: 3.5em; }
    .section { padding: 80px 30px; }
    .footer-container { grid-template-columns: 1fr 1fr; gap: 40px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .cookie-banner { padding: 20px 30px; }
}

@media (max-width: 768px) {
    .header { padding: 15px 20px; }
    .header.scrolled { padding: 15px 20px; }
    .nav-links { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: #080c0a; flex-direction: column; padding: 20px 0; border-top: 1px solid var(--border-color); }
    .nav-links.active { display: flex; }
    .nav-link { font-size: 1.1em; width: 100%; text-align: center; padding: 10px 0; }
    .shop-btn { width: auto; margin: 10px auto; }
    .mobile-menu-btn { display: block; }
    
    .hero-title { font-size: 2.6em; }
    .hero-subtitle { font-size: 1.1em; }
    
    .section { padding: 60px 20px;}
    .section-title { font-size: 2.2em;}
    
    .footer-top { padding: 60px 20px 40px; }
    .footer-container { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .footer-logo { justify-content: center; }
    .widget-title:after { left: 50%; transform: translateX(-50%); }
    .links-widget a { justify-content: center; }
    .app-downloads-pro { align-items: center; }
    
    .bottom-container { flex-direction: column; gap: 20px; text-align: center; }
    
    .cookie-banner { flex-direction: column; gap: 20px; text-align: center; padding: 20px; }
    .cookie-content { max-width: 100%; flex-direction: column; gap: 10px;}
    .cookie-buttons { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.2em; }
    .stats-grid { grid-template-columns: 1fr; gap: 40px;}
    .music-control { bottom: 20px; left: 20px;}
    .scroll-to-top { bottom: 20px; right: 20px;}
    .cookie-buttons { flex-direction: column; }
    .cookie-btn { width: 100%; }
}