:root { 
    --primary: #E67E22; 
    --dark: #0A0A0A; 
    --bg-card: #161616; 
    --white: #FFF; 
    --gray: #B3B3B3; 
    --shadow: 0 10px 20px rgba(0,0,0,0.5); 
}

* { margin:0; padding:0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--dark); color: var(--white); font-family: 'Roboto', sans-serif; line-height: 1.6; }

.container { width: 90%; max-width: 1200px; margin: auto; }
.section { padding: 100px 0; }
.bg-dark { background: var(--bg-card); }
.title { font-family: 'Teko', sans-serif; font-size: 3.5rem; color: var(--primary); margin-bottom: 40px; }
.title.center { text-align: center; }
.title.left { text-align: left; margin-bottom: 20px; }

/* NAVBAR KÖKTEN ÇÖZÜM */
.navbar { 
    background: #000; 
    height: 100px; 
    border-bottom: 2px solid var(--primary); 
    position: fixed; 
    width: 100%; 
    top: 0; 
    z-index: 1000; 
    /* display: flex'i buradan kaldırdık, işi nav-flex'e bıraktık */
}

/* Masaüstünde mobil butonları gizle */
.mobile-btns { display: none; }
.nav-flex {
    display: flex;
    justify-content: space-between; /* Logoyu sola, menüyü ortaya, butonları sağa iter */
    align-items: center; /* İŞTE BU HER ŞEYİ DİKEYDE TAM ORTALAR */
    width: 95%; 
    max-width: 1400px;
    margin: 0 auto;
    height: 100px; /* Navbar ile aynı boyda olmalı */
}

/* LOGO BÜYÜTÜLDÜ */
.main-logo { 
    height: 200px !important; 
    width: auto !important; 
    max-width: 300px !important; 
    min-width: 150px !important; 
    object-fit: contain;
    display: inline-block !important;
    transition: 0.3s ease;
}
.main-logo:hover {
    transform: scale(1.05); 
    filter: drop-shadow(0px 0px 8px var(--primary)); 
}
.logo {
    display: flex;
    align-items: center;
    padding-left: 20px; 
}
.logo a { 
    display: flex; 
    align-items: center; 
    height: 100%; 
    text-decoration: none; 
}

/* LİNKLER */
.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
    margin: 0;
    padding: 0;
    white-space: nowrap; 
}
.nav-links a { 
    color: #fff; 
    text-decoration: none; 
    font-weight: 600; 
    font-size: 0.9rem; 
    line-height: normal; 
    text-transform: uppercase; 
    transition: 0.3s;
}
.nav-links a:hover { color: var(--primary); }

/* Kapsayıcı Butonlar - Tavana Çarpma Engellendi */
.nav-btns {
    display: flex;
    gap: 12px;
    align-items: center; 
    /* height: 100% kodunu sildik, tavan yapmasını engelledik */
}

/* BUTONLARIN ORTAK STİLLERİ (Artık Global Alanda) */
.btn { 
    padding: 10px 22px; 
    border-radius: 4px; 
    text-decoration: none; 
    font-weight: bold; 
    font-size: 0.8rem; 
    border: none; 
    cursor: pointer; 
    transition: 0.3s; 
}

/* SAĞDAKİ BUTONLAR - 3 KARDEŞ AYARI */
.nav-btns .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 145px !important; /* 3 butonun eşit genişliği */
    padding: 0;
    font-size: 0.8rem; 
    font-weight: 700;
    margin: 10px;
}

/* BUTON RENK VARYASYONLARI */
.btn-login {
    background-color: transparent;
    color: #fff;
    border: 1px solid transparent;
}
.btn-login:hover {
    color: var(--primary);
}

.btn-primary { 
    background: var(--primary); 
    color: #fff !important; /* Siyahı beyaza çevirdik, şimdi mermi gibi parlayacak */
    border: 2px solid var(--primary);
    text-decoration: none !important; /* Alt çizgiyi kesin olarak yok eder */
}
.btn-primary:hover {
    background: transparent;
    color: var(--primary) !important; /* Üzerine gelince turuncu olacak */
}
.btn-outline { 
    border: 2px solid var(--primary); 
    color: var(--primary); 
    background: transparent; 
}
.btn-outline:hover { 
    background: var(--primary); 
    color: #000; 
}

.btn-main { background: var(--primary); color: #fff; padding: 15px 40px; text-decoration: none; border-radius: 4px; font-weight: bold; margin-right: 15px; display: inline-block; }
.btn-sub { background: var(--primary); color: #fff; padding: 15px 40px; text-decoration: none; border-radius: 4px; font-weight: bold; margin-right: 15px; display: inline-block;}
.block { display: block; text-align: center; margin-top: 20px; }

/* HERO */
.hero { height: 100vh; background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.85)), url('https://images.unsplash.com/photo-1486262715619-67b85e0b08d3?q=80&w=2000'); background-size: cover; background-position: center; display: flex; align-items: center; text-align: center; }
.hero h1 { font-family: 'Teko', sans-serif; font-size: 5rem; line-height: 1; margin-bottom: 20px; }
.hero h1 span { color: var(--primary); }
.hero p { color: var(--gray); font-size: 1.3rem; margin-bottom: 40px; }

/* HAKKIMIZDA MODERMLEŞTİ */
.about-modern-grid { display: grid; grid-template-columns: 80px 1fr 1fr; gap: 40px; align-items: center; }
.about-icon i { font-size: 4rem; color: var(--primary); }
.about-text-box p { color: var(--gray); font-size: 1.1rem; margin-bottom: 15px; }
.about-stats-box { display: flex; flex-direction: column; gap: 20px; }
.stat-card { background: var(--dark); padding: 25px; border-left: 5px solid var(--primary); border-radius: 4px; text-align: center; }
.stat-card h3 { font-family: 'Teko', sans-serif; font-size: 3rem; color: var(--primary); }

/* GRIDS */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

/* --- 1. ÖZELLİKLER KUTULARI (KARİZMA EFEKTİ) --- */
.card { 
    background: #111; /* Daha tok bir siyah */
    padding: 40px 30px; 
    border: 1px solid #222; 
    text-align: center; 
    border-radius: 12px; /* Köşeleri modernleştirdik */
    transition: all 0.3s ease; /* Yumuşak geçiş */
}
.card:hover {
    transform: translateY(-10px); /* Üzerine gelince hafif yukarı kalkar */
    border-color: var(--primary); /* Çerçeve turuncu olur */
    box-shadow: 0 10px 20px rgba(230, 126, 34, 0.15); /* Hafif turuncu parlama */
}
.card i { 
    font-size: 3.5rem; 
    color: var(--primary); 
    margin-bottom: 20px; 
    filter: drop-shadow(0 0 8px rgba(230,126,34,0.4)); /* İkona neon efekti */
}

/* PAKETLER EŞİT BOYUTTA */
.price-grid-equal { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; max-width: 900px; margin: auto; }
.p-card { 
    background: #111; 
    padding: 50px 30px; 
    border: 1px solid #222; 
    position: relative; 
    text-align: center; 
    border-radius: 12px;
    transition: all 0.3s ease;
}
.p-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(230, 126, 34, 0.15);
}
.p-card.featured { 
    border-color: var(--primary); 
    box-shadow: 0 0 15px rgba(230, 126, 34, 0.2); /* Esnaf favorisi her zaman parlar */
}
.badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--primary); padding: 5px 15px; border-radius: 20px; font-size: 0.7rem; font-weight: bold; }
.amt { font-size: 3.5rem; font-weight: bold; color: var(--primary); margin: 20px 0; }
.p-card ul { list-style: none; text-align: left; color: var(--gray); margin-bottom: 20px; }
.p-card ul li:before { content: "✓ "; color: var(--primary); }

/* SSS MODERMLEŞTİ */
.sss-grid-box { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.sss-box { 
    background: #111; 
    padding: 30px; 
    border: 1px solid #222; 
    border-radius: 12px; 
    transition: 0.3s ease; 
}
.sss-box:hover {
    border-color: var(--primary);
    background: #151515; /* Üzerine gelince rengi 1 tık açılır */
}
.sss-box h4 { color: var(--primary); margin-bottom: 15px; }
.sss-box p { color: var(--gray); font-size: 0.95rem; }

/* --- İLETİŞİM BÖLÜMÜ MODERNİZASYONU --- */
.iletisim-grid { 
    display: grid; 
    grid-template-columns: 1fr 1.5fr; /* Sağ form alanı biraz daha geniş */
    gap: 60px; 
    align-items: start;
}

/* Sol Taraf - Bilgi Kutuları */
.iletisim-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-box {
    display: flex;
    align-items: center;
    background: #111;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #222;
    transition: all 0.3s ease;
}

.info-box:hover {
    border-color: var(--primary);
    transform: translateX(10px); /* Üzerine gelince sağa doğru hafifçe kayar */
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.1); /* Hafif turuncu gölge */
}

.icon-circle {
    width: 50px;
    height: 50px;
    background: rgba(230, 126, 34, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.icon-circle i {
    color: var(--primary);
    font-size: 1.5rem;
}

.info-text h4 {
    color: var(--white);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.info-text p {
    color: var(--gray);
    font-size: 0.95rem;
    margin: 0;
}

/* Sağ Taraf - Form Kutusu */
.contact-form {
    background: #111;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #222;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5); /* Derinlik katar */
}

.form-group {
    margin-bottom: 20px;
}

/* Input ve Textarea Ayarları */
.contact-form input, 
.contact-form textarea { 
    width: 100%; 
    padding: 15px 20px; 
    background: #1a1a1a; 
    border: 1px solid #333; 
    color: #fff; 
    border-radius: 8px; /* Oval köşeler */
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none; /* Varsayılan mavi tarayıcı çizgisini siler */
}

.contact-form textarea { 
    height: 150px; 
    resize: vertical; /* Sadece aşağı doğru uzatılabilir */
}

/* Fokus (Tıklanınca Yanan Farlar) Efekti */
.contact-form input:focus, 
.contact-form textarea:focus {
    border-color: var(--primary);
    background: #222;
    box-shadow: 0 0 10px rgba(230, 126, 34, 0.2); /* Tıklanan kutunun etrafı turuncu parlar */
}

/* Gönder Butonu Büyütüldü */
.contact-form .block-btn {
    width: 100%;
    height: 50px;
    font-size: 1.1rem;
    margin-top: 10px;
}

/* --- YENİ MODERN FOOTER (AMG PAKET) --- */
.modern-footer { 
    background: #000; 
    border-top: 2px solid var(--primary); 
    padding-top: 70px; 
    color: var(--gray); 
}

/* 3 Sütunlu Izgara Yapısı */
.footer-grid { 
    display: grid; 
    grid-template-columns: 2fr 1fr 1fr; /* Sol taraf biraz daha geniş */
    gap: 50px; 
    padding-bottom: 50px; 
}

/* Başlıklar */
.footer-col h4 { 
    color: var(--white); 
    font-size: 1.2rem; 
    margin-bottom: 25px; 
    position: relative; 
    padding-bottom: 10px; 
}
/* Başlıkların altındaki şık turuncu çizgi */
.footer-col h4::after { 
    content: ''; 
    position: absolute; 
    left: 0; 
    bottom: 0; 
    width: 40px; 
    height: 2px; 
    background: var(--primary); 
}

/* Logo ve Slogan */
.footer-logo-img { 
    height: 80px; 
    width: auto; 
    margin-bottom: 20px; 
    filter: drop-shadow(0 0 8px rgba(230,126,34,0.3)); 
    transition: transform 0.3s ease;
}
.footer-logo-img:hover { transform: scale(1.05); }
.footer-desc { font-size: 0.95rem; margin-bottom: 25px; line-height: 1.7; }

/* Sosyal Medya İkonları */
.social-icons { display: flex; gap: 15px; }
.social-icons a { 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    width: 42px; 
    height: 42px; 
    background: #111; 
    color: var(--white); 
    border-radius: 50%; 
    text-decoration: none; 
    transition: all 0.3s ease; 
    border: 1px solid #222; 
    font-size: 1.1rem;
}
.social-icons a:hover { 
    background: var(--primary); 
    color: #000; 
    transform: translateY(-5px); /* Havaya kalkma efekti */
    border-color: var(--primary); 
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
}

/* Hızlı Linkler */
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { 
    color: var(--gray); 
    text-decoration: none; 
    font-size: 0.95rem; 
    transition: all 0.3s ease; 
    display: inline-block; 
}
.footer-links a i { font-size: 0.7rem; color: var(--primary); margin-right: 8px; transition: 0.3s; }
.footer-links a:hover { color: var(--primary); transform: translateX(8px); /* Sağa kayma efekti */ }

/* İletişim Özeti */
.footer-contact-info p { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; font-size: 0.95rem; }
.footer-contact-info i { color: var(--primary); font-size: 1.2rem; }

/* En Alt İmza ve Link Şeridi */
.footer-bottom { 
    background: #050505; 
    border-top: 1px solid #151515; 
    padding: 25px 0; 
    font-size: 0.85rem; 
    color: #999; /* Rengini açtık, artık okunuyor */
}
.bottom-flex { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; }
.legal-links { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.legal-links a { color: #999; text-decoration: none; transition: 0.3s; }
.legal-links a:hover { color: var(--primary); }
.ayrac { color: #333; }

/* RESPONSIVE TEMEL */
.menu-toggle { display: none; color: var(--primary); font-size: 2rem; cursor: pointer; }
.desktop-only { display: block; }
/* --- ÇEREZ (COOKIE) BANNER --- */
.cookie-banner {
    position: fixed;
    bottom: -100%; /* Başlangıçta ekranın dışında gizli */
    left: 0;
    width: 100%;
    background: #0a0a0a;
    border-top: 2px solid var(--primary);
    box-shadow: 0 -5px 25px rgba(0,0,0,0.8);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999; /* Her şeyin üstünde dursun */
    transition: bottom 0.5s ease-in-out; /* Aşağıdan kayarak çıkma efekti */
}

/* JavaScript bu sınıfı ekleyince banner yukarı çıkacak */
.cookie-banner.goster {
    bottom: 0;
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 80%;
}

.cookie-icon {
    font-size: 2rem;
    color: var(--primary);
}

.cookie-content p {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
}

.cookie-content a {
    color: var(--primary);
    text-decoration: underline;
}

.cookie-btn {
    white-space: nowrap;
    height: 45px;
    padding: 0 30px;
}

/* Çerez Banner Mobil Ayarı */
@media (max-width: 900px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 15px;
    }
    .cookie-content {
        flex-direction: column;
        max-width: 100%;
        gap: 10px;
    }
    .cookie-btn {
        width: 100%;
    }
}

/* TABLET VE KÜÇÜK LAPTOPLAR (1100px ve altı) */
@media (max-width: 1400px) {
    .navbar { height: 100px !important; display: flex; align-items: center; }
    .nav-flex { padding: 0 20px; }
    
    .nav-links { 
        display: none; 
        flex-direction: column; 
        position: absolute; 
        top: 80px; 
        left: 0; 
        width: 100%; 
        background: rgba(0, 0, 0, 0.95); 
        padding: 30px; 
        border-bottom: 2px solid var(--primary);
        z-index: 999;
    }
    .nav-links.active { display: flex !important; }
    .nav-links li { margin: 15px 0; text-align: center; }
    .nav-links a { font-size: 1.1rem; }
    
    .menu-toggle { margin-right: 15px; display: flex; align-items: center; }
    .main-logo { height: 90px !important; width: auto !important; margin-left: 15px; max-height: 80px !important; }
    .hero h1 { font-size: 2.5rem; line-height: 1.2; }
    
    /* İŞTE SİHRİN OLDUĞU YER: Mobilde sağ butonları komple gizliyoruz, karışıklık bitiyor */
    .desktop-only { display: none !important; }
    
    .about-modern-grid, .grid-3, .price-grid-equal, .sss-grid-box, .iletisim-grid, .footer-grid { grid-template-columns: 1fr !important; gap: 30px; }
    .about-title.left { text-align: center; }
    /* Mobilde mobil butonları menünün içinde göster */
    .mobile-btns {
        display: flex !important;
        flex-direction: column;
        gap: 15px;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid #333; /* Menü linkleriyle butonlar arasına ince, şık bir çizgi çektik */
    }
    .mobile-btns .btn {
        width: 100% !important; /* Ekranı tam kaplasın, yağlı elle basması kolay olsun */
        height: 45px;
    }
  /* --- FOOTER MOBİL/TABLET AYARI (ZİKZAK ÇÖZÜMÜ) --- */
    .footer-grid { 
        grid-template-columns: 1fr !important; 
        text-align: center; 
        gap: 40px; 
    }
    
    /* Logoyu mobilde biraz daha heybetli yapalım */
    .footer-logo-img {
        height: 55px !important; 
    }

    .footer-col h4::after { 
        left: 50%; 
        transform: translateX(-50%); 
    }
    
    .social-icons { 
        justify-content: center; 
    }
    
    /* ZİKZAK DÜZELTME: Linkler */
    .footer-links { 
        align-items: center; 
    }
    .footer-links a { 
        width: 140px; /* Sabit bir kalıp veriyoruz */
        text-align: left; /* Kalıbın içinde sola dayıyoruz */
    }

    /* ZİKZAK DÜZELTME: İletişim Bilgileri */
    .footer-contact-info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer-contact-info p { 
        width: 260px; /* E-posta uzun olduğu için geniş kalıp */
        justify-content: flex-start; /* İçerideki ikon ve yazıyı sola dayar */
    }

    .bottom-flex { 
        flex-direction: column; 
        text-align: center; 
        gap: 15px; 
    }
    
}

/* TELEFONLAR (600px ve altı) */
@media (max-width: 600px) {
    .hero h1 { font-size: 2rem; }
    .hero p { font-size: 1rem; }
    .footer-content { flex-direction: column; gap: 20px; text-align: center; }
    .footer-nav a { margin: 0 10px; }
    .bottom-flex { flex-direction: column; gap: 10px; text-align: center; }
    .footer-logo img { height: 70px; }
}