/* =========================================
   1. GENEL AYARLAR VE DEĞİŞKENLER
   ========================================= */
:root {
    --bg-dark: #0f172a;       /* Gece Mavisi */
    --bg-card: #1e293b;       /* Kart Rengi */
    --primary: #f59e0b;       /* Saf Altın */
    --primary-hover: #d97706; /* Koyu Altın */
    --text-main: #f8fafc;     /* Beyazımsı */
    --text-muted: #94a3b8;    /* Gri */
    --border: rgba(255, 255, 255, 0.1);
    --glow: 0 0 25px rgba(245, 158, 11, 0.4);
}

* { box-sizing: border-box; margin: 0; padding: 0; outline: none; }
body { 
    font-family: 'Inter', system-ui, sans-serif; 
    background-color: var(--bg-dark); 
    color: var(--text-main); 
    line-height: 1.6; 
    overflow-x: hidden;
    padding-bottom: 80px !important; /* Yapışkan bar için yer */
}
a { text-decoration: none; transition: 0.3s; color: inherit; }
ul { list-style: none; }

/* =========================================
   2. HEADER
   ========================================= */
.navbar { background: rgba(15, 23, 42, 0.90); backdrop-filter: blur(15px); padding: 15px 0; position: fixed; width: 100%; top: 0; z-index: 1000; border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
.nav-container { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 0 20px; }
.brand-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-icon-box { width: 45px; height: 45px; background: linear-gradient(135deg, var(--primary), #d97706); border-radius: 12px; display: flex; align-items: center; justify-content: center; box-shadow: 0 0 25px rgba(245, 158, 11, 0.5); position: relative; overflow: hidden; }
.logo-icon-box svg { width: 24px; height: 24px; fill: white; z-index: 2; }
.logo-icon-box::after { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: linear-gradient(to right, transparent, rgba(255,255,255,0.6), transparent); transform: rotate(45deg); animation: shineLogo 3s infinite; }
.logo-text-group { display: flex; flex-direction: column; justify-content: center; }
.logo-main-text { font-size: 1.4rem; font-weight: 900; color: white; line-height: 1; text-transform: uppercase; letter-spacing: -0.5px; }
.logo-sub-text { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 500; margin-top: 2px; }
.nav-links a { color: var(--text-muted); font-weight: 500; margin-left: 25px; font-size: 0.95rem; }
.nav-links a:hover { color: var(--primary); }
.nav-btn { background: var(--primary); color: #fff !important; padding: 10px 25px; border-radius: 50px; font-weight: bold; box-shadow: var(--glow); }

/* =========================================
   3. HERO SECTION (FERAH)
   ========================================= */
.hero { position: relative; min-height: 90vh; background: var(--bg-dark); overflow: hidden; display: flex; align-items: center; justify-content: center; text-align: center; padding-top: 120px; padding-bottom: 60px; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to bottom, rgba(15, 23, 42, 0.4), var(--bg-dark)), url('https://images.unsplash.com/photo-1505562725-783c74902b9e?q=80&w=1920&auto=format&fit=crop'); background-size: cover; background-position: center; z-index: 1; animation: zoomEffect 25s infinite alternate linear; }
.scanner-line { position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, transparent, var(--primary), transparent); box-shadow: 0 0 30px var(--primary); z-index: 2; animation: scanDown 5s ease-in-out infinite; opacity: 0.6; }
.hero-content { position: relative; z-index: 3; max-width: 850px; padding: 0 20px; animation: fadeUp 1.2s ease-out; }
.hero h1 { font-size: 4.2rem; font-weight: 900; line-height: 1.15; margin-bottom: 20px; color: white; text-transform: uppercase; letter-spacing: -1px; text-shadow: 0 10px 40px rgba(0,0,0,0.6); }
.hero h1 span { color: var(--primary); }
.glow-text { font-size: 1rem; color: var(--primary); text-transform: uppercase; letter-spacing: 4px; font-weight: 700; margin-bottom: 25px; display: block; animation: pulseText 3s infinite; }
.hero p { font-size: 1.25rem; color: #cbd5e1; margin-bottom: 50px; max-width: 600px; margin-left: auto; margin-right: auto; text-shadow: 0 2px 5px rgba(0,0,0,0.5); line-height: 1.7; }
.hero-btn-group { display: flex; gap: 25px; justify-content: center; margin-bottom: 40px; }
.btn-glow { background: linear-gradient(135deg, var(--primary), #d97706); color: white; padding: 18px 45px; font-size: 1.1rem; font-weight: 800; border-radius: 50px; box-shadow: var(--glow); position: relative; overflow: hidden; z-index: 1; border: none; cursor: pointer; transition: 0.3s; }
.btn-glass { background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(10px); color: white; padding: 18px 45px; font-size: 1.1rem; font-weight: 700; border-radius: 50px; border: 1px solid rgba(255,255,255,0.15); transition: 0.3s; }
.hero-info-bar { display: flex; justify-content: center; gap: 30px; font-size: 0.9rem; color: var(--text-muted); margin-top: 20px; }

/* =========================================
   4. ŞEHİR / İLÇE IZGARALARI & KARTLAR
   ========================================= */
.city-grid, .district-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 15px; justify-content: center; margin-top: 20px; }
.city-tag, .district-btn { background: rgba(255,255,255,0.05); border: 1px solid var(--border); color: var(--text-muted); padding: 15px 10px; text-align: center; border-radius: 12px; transition: 0.3s; font-weight: 600; font-size: 0.95rem; display: flex; align-items: center; justify-content: center; height: 100%; width: 100%; cursor: pointer; }
.city-tag:hover, .district-btn:hover { background: var(--primary); color: white; transform: translateY(-5px); border-color: var(--primary); box-shadow: var(--glow); }
.city-wrapper { background: var(--bg-card); padding: 40px; border-radius: 20px; border: 1px solid var(--border); box-shadow: 0 10px 30px rgba(0,0,0,0.2); }

/* SÜREÇ & YORUMLAR */
.process-grid { display: flex; justify-content: center; align-items: stretch; gap: 30px; margin-top: 40px; width: 100%; max-width: 1100px; margin-left: auto; margin-right: auto; }
.process-card { background: rgba(255, 255, 255, 0.03); border: 1px solid var(--border); padding: 40px 25px; border-radius: 20px; text-align: center; flex: 1; display: flex; flex-direction: column; align-items: center; transition: 0.3s; position: relative; backdrop-filter: blur(5px); }
.process-icon { font-size: 2.5rem; margin-bottom: 15px; color: var(--primary); text-shadow: 0 0 20px rgba(245, 158, 11, 0.5); }
.process-card h3 { color: white; margin-bottom: 10px; font-size: 1.2rem; }
.process-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.5; }

.reviews-grid { display: flex; flex-direction: row; justify-content: center; align-items: stretch; gap: 25px; margin-top: 40px; width: 100%; max-width: 1100px; margin-left: auto; margin-right: auto; }
.review-card { background: linear-gradient(145deg, rgba(30, 41, 59, 0.6), rgba(15, 23, 42, 0.8)); backdrop-filter: blur(15px); border: 1px solid rgba(255, 255, 255, 0.08); padding: 35px 30px; border-radius: 20px; flex: 1; display: flex; flex-direction: column; transition: all 0.3s ease; }
.review-header { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 15px; }
.review-avatar { width: 50px; height: 50px; background: rgba(255,255,255,0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.2rem; color: var(--text-main); border: 1px solid rgba(255,255,255,0.1); }
.review-info h4 { margin: 0; font-size: 1.05rem; color: white; font-weight: 700; }
.review-text { font-style: italic; color: #cbd5e1; font-size: 0.95rem; line-height: 1.7; margin-bottom: 25px; flex-grow: 1; }

/* =========================================
   5. İÇERİK VE GENEL
   ========================================= */
.section { padding: 100px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 5; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-title { font-size: 2.5rem; color: white; margin-bottom: 15px; font-weight: 800; }

.faq-wrapper { display: flex; flex-direction: column; gap: 15px; margin-top: 40px; max-width: 800px; margin-left: auto; margin-right: auto; }
.faq-item { border: 1px solid var(--border); border-radius: 12px; overflow: hidden; background: rgba(30, 41, 59, 0.4); }
.faq-btn { width: 100%; background: none; border: none; padding: 20px 25px; text-align: left; color: white; font-size: 1.1rem; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; background: rgba(0,0,0,0.2); }
.faq-content p { padding: 25px; color: var(--text-muted); border-top: 1px solid var(--border); }

.full-map-section { position: relative; width: 100%; height: 450px; overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-top: 50px; }
.full-map-section iframe { width: 100%; height: 100%; filter: grayscale(100%) invert(92%) contrast(83%); display: block; }

footer { background: #020617; border-top: 1px solid var(--border); padding: 80px 0 40px; margin-top: 0; color: var(--text-muted); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 50px; margin-bottom: 50px; max-width: 1100px; margin-left: auto; margin-right: auto; }

/* 🔥🔥 ESKİ BUTONLARI YOK ET (TÜM SAYFALARDA) 🔥🔥 */
.tech-card .btn-glow, 
.tech-card a[class*="btn"], 
.tech-card a[href*="tel:"] { 
    display: none !important; 
}

/* ANİMASYONLAR */
@keyframes fadeUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scanDown { 0% { top: -10%; opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } 100% { top: 110%; opacity: 0; } }
@keyframes zoomEffect { 0% { transform: scale(1); } 100% { transform: scale(1.08); } }
@keyframes pulseText { 0%, 100% { opacity: 0.8; text-shadow: 0 0 15px var(--primary); } 50% { opacity: 1; text-shadow: 0 0 30px var(--primary); } }
@keyframes shineLogo { 0% { left: -100%; } 20% { left: 100%; } 100% { left: 100%; } }

/* =========================================
   📱 MOBİL ÖZEL AYARLAR (ŞEHİR SAYFASI FIX)
   ========================================= */
@media only screen and (max-width: 900px) {
    .nav-links { display: none; }
    .navbar { padding: 12px 0; background: rgba(15, 23, 42, 0.95) !important; }
    
    /* 1. HERO */
    header.hero { height: auto !important; min-height: 85vh !important; padding-top: 100px !important; padding-bottom: 50px !important; display: flex !important; flex-direction: column !important; background-color: #0f172a !important; }
    .hero-content { padding: 0 25px !important; width: 100% !important; }
    header.hero h1 { font-size: 2rem !important; line-height: 1.2 !important; margin-bottom: 15px !important; }
    .hero-btn-group { display: flex !important; flex-direction: column !important; gap: 15px !important; }
    
    /* 2. 🔥 ŞEHİR SAYFASI ZORLA DÜZELTME (FLEX FORCE) 🔥 */
    /* Sayfanın kapsayıcısını SÜTUN yap */
    .section .container {
        display: flex !important;
        flex-direction: column !important;
    }

    /* Kapsayıcının içindeki HER ŞEYİ tam genişlik yap */
    .section .container > div, 
    .section .row,
    .section .d-flex {
        display: block !important;
        width: 100% !important;
        flex: none !important;
    }

    /* Sol yazı ve Sağ kutu (Bootstrap Grid) hepsini %100 yap */
    .col, .col-12, .col-md-4, .col-md-8, div[class*="col-"] {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        margin-bottom: 25px !important;
        padding-right: 0 !important;
    }
    
    /* O Sağdaki Kutuyu Hizaya Sok */
    .tech-card {
        display: block !important;
        width: 100% !important;
        margin-top: 20px !important;
        clear: both !important;
    }

    /* 3. DİĞERLERİ */
    .section-title { font-size: 1.6rem !important; line-height: 1.3 !important; padding: 0 10px !important; }
    .city-grid, .district-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }
    .city-tag, .district-btn { padding: 12px 5px !important; font-size: 0.8rem !important; white-space: normal !important; min-height: 50px !important; }
    .city-wrapper { padding: 25px 20px !important; }
    .process-grid, .reviews-grid { flex-direction: column !important; margin: 30px 0 !important; max-width: 100% !important; gap: 20px !important; }
    .process-card, .review-card { width: 100% !important; flex: none !important; }
    .featured-review { transform: none !important; }
    .full-map-section { height: 300px !important; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
}