/* ============================================================ */
/* 1. YEREL FONT TANIMLARI (HIZ OPTİMİZASYONU: SWAP)            */
/* ============================================================ */
@font-face {
    font-family: 'OzelTaksiFontu';
    src: url('fonts/montserrat-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap; /* Kritik Hız Ayarı: Bekleme yapma! */
}

@font-face {
    font-family: 'OzelTaksiFontu';
    src: url('fonts/montserrat-bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap; /* Kritik Hız Ayarı */
}

/* ============================================================ */
/* 2. RENK VE GENEL AYARLAR                                     */
/* ============================================================ */
:root {
    /* ARAMA BUTONU (Senin Seçtiğin Özel Renkler) */
    --arama-renk-1: #FFB703;  /* Bal Sarısı */
    --arama-renk-2: #FB8500;  /* Gün Batımı Turuncusu */

    /* WHATSAPP BUTONU (Standart Yeşil) */
    --wp-renk-1: #25d366;    
    --wp-renk-2: #128c7e;    

    /* SİTE GENEL RENGİ */
    --ana-renk: #FFB703;
    
    /* ZEMİN RENKLERİ */
    --koyu-zemin: #121212;
    --yazi-renk: #e0e0e0;
}

body {
    font-family: 'OzelTaksiFontu', sans-serif;
    margin: 0;
    padding: 0;
    color: var(--yazi-renk);
    background: var(--koyu-zemin);
    line-height: 1.6;
    overflow-x: hidden;
}

* { box-sizing: border-box; }

/* 3. HEADER (Camsı Arka Plan) */
header {
    background: rgba(18, 18, 18, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 183, 3, 0.2);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--ana-renk);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-image {
    width: 60px;
    height: auto;
    border-radius: 50%;
    border: 2px solid var(--ana-renk);
}

/* ============================================================ */
/* 4. HERO SECTION (GARANTİLİ OKUNABİLİRLİK VE RESPONSIVE)      */
/* ============================================================ */
.hero {
    position: relative;
    height: 100vh;
    height: 100dvh;
    min-height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    overflow: hidden; /* Taşmaları önle */
    z-index: 1; /* Yeni bir katman sırası başlat */
}

/* KATMAN 1 (EN ALT): Arka Plan Resmi (Responsive Yapı) */
/* picture etiketi için ayarlar */
picture.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2; /* En arkaya gönder */
    display: block; /* Resmin boşluk yapmasını engeller */
}

/* picture içindeki asıl resim (img etiketi) */
picture.hero-bg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Resmi sündürmeden alanı kapla */
    object-position: center; /* Resmi ortala */
    filter: none;
}

/* KATMAN 2 (ORTA): Koyu Siyah Perde (Overlay) */
/* Yazının okunmasını sağlayan sihirli katman */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Yukarıdan aşağıya koyulaşan güçlü bir siyah perde */
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.9));
    z-index: -1; /* Resmin önünde, yazının arkasında */
}

/* KATMAN 3 (EN ÜST): Yazılar ve İçerik */
.hero-content {
    z-index: 10; /* En üstte */
    position: relative; 
    max-width: 800px;
    padding: 20px;
    width: 100%;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 15px;
    color: var(--ana-renk);
    text-shadow: 2px 2px 15px rgba(0,0,0,0.9); /* Güçlü gölge */
    font-weight: 700;
}

.hero p {
    font-size: clamp(1rem, 3vw, 1.3rem);
    margin-bottom: 30px;
    font-weight: 400;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.7);
}

/* --- CAMSI & GRADIENT BUTONLAR --- */
.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.hero-buttons-row {
    display: flex;
    gap: 15px;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 25px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    
    /* CAM VE GÖLGE EFEKTİ */
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    filter: brightness(1.1); /* Parlama Efekti */
}

.btn:active { transform: scale(0.98); }

/* Renkleri :root değişkenlerinden çeker */
.whatsapp-btn { 
    background: linear-gradient(135deg, var(--wp-renk-1) 0%, var(--wp-renk-2) 100%);
    width: 100%; 
}

.call-btn { 
    background: linear-gradient(135deg, var(--arama-renk-1) 0%, var(--arama-renk-2) 100%);
    color: #fff; 
    flex: 1;
    min-width: 250px;
}

.btn img { margin-right: 10px; width: 26px; height: 26px; filter: drop-shadow(0 2px 2px rgba(0,0,0,0.2)); }

/* 5. GENEL BÖLÜMLER */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.features, .services, .contact, .reviews, .areas { padding: 60px 20px; }

h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--ana-renk);
    position: relative;
    padding-bottom: 15px;
}
h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--ana-renk);
    border-radius: 3px;
}

.feature-grid, .service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

/* KART TASARIMI */
.feature-card, .service-item {
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.95), rgba(20, 20, 20, 0.95));
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.3s;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.service-item { border-bottom: 3px solid var(--ana-renk); }

.feature-card:hover, .service-item:hover { 
    transform: translateY(-5px); 
    border-color: var(--ana-renk); 
    box-shadow: 0 10px 20px rgba(251, 133, 0, 0.15); 
}

.feature-icon img { width: 64px; height: 64px; margin-bottom: 15px; filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3)); }

/* 6. YORUMLAR */
.reviews { background: #0a0a0a; }
.reviews-slider {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.review-card {
    display: none;
    background: #1e1e1e;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #333;
    animation: fadeIn 0.5s ease;
    width: 100%;
}
.review-card.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.review-author { display: flex; justify-content: center; align-items: center; gap: 10px; margin-top: 15px; color: var(--ana-renk); font-weight: 700; }
.slider-dots { margin-top: 20px; text-align: center; }
.dot { display: inline-block; width: 10px; height: 10px; background: #444; border-radius: 50%; margin: 0 5px; cursor: pointer; }
.dot.active { background: var(--ana-renk); transform: scale(1.2); }
.google-review-btn { background: #fff; color: #333 !important; font-size: 0.9rem; margin-top: 20px; }

/* 7. HİZMET BÖLGELERİ & İLETİŞİM */
.area-accordion { background: #1e1e1e; border-radius: 10px; overflow: hidden; border: 1px solid #333; }
.area-accordion summary { padding: 20px; background: #252525; cursor: pointer; font-weight: 700; color: var(--ana-renk); text-align: center; }
.area-list { padding: 20px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.area-list span { background: #111; padding: 5px 12px; border-radius: 20px; font-size: 0.9rem; color: #ccc; border: 1px solid #333; }
.area-list a { transition: all 0.3s ease; }
.area-list a:hover { background: var(--ana-renk); color: #000 !important; }

.contact-info { display: flex; flex-direction: column; gap: 15px; align-items: center; font-size: 1.1rem; margin-bottom: 30px; }
.contact-item span:first-child { font-size: 1.5rem; }

footer { background: #000; text-align: center; padding: 40px 20px 100px 20px; color: #999; border-top: 1px solid #222; }
.footer-image { display: block; margin: 15px auto; }

/* 8. MOBİL YAPIŞKAN MENÜ */
.sticky-mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px;
    z-index: 9999;
    border-top: 1px solid rgba(255, 183, 3, 0.3);
    box-shadow: 0 -5px 20px rgba(0,0,0,0.7);
    gap: 10px;
}
.sticky-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-radius: 12px;
    color: white;
    text-decoration: none;
    font-weight: 700;
    gap: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}
.sticky-btn.whatsapp { 
    background: linear-gradient(135deg, var(--wp-renk-1) 0%, var(--wp-renk-2) 100%); 
}
.sticky-btn.call { 
    background: linear-gradient(135deg, var(--arama-renk-1) 0%, var(--arama-renk-2) 100%);
    color: #fff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .header-content { padding: 0 15px; }
    .hero-buttons-row { flex-direction: column; }
    .btn { width: 100%; padding: 18px; }
    .feature-grid, .service-list { grid-template-columns: 1fr; }
    .sticky-mobile-nav { display: flex; }
    .hero-bg-img { height: 100dvh; }
}