/* =========================================
   1. GENEL AYARLAR VE DEĞİŞKENLER
   ========================================= */
:root {
    --primary-color: #f1c40f; /* Klasik Taksi Sarısı */
    --dark-color: #2c3e50;    /* Koyu Lacivert/Gri */
    --light-bg: #f9f9f9;      /* Açık Gri Arka Plan */
    --white: #ffffff;
    --text-color: #333333;
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
}

body { 
    line-height: 1.6; 
    color: var(--text-color); 
    background-color: var(--white);
    overflow-x: hidden; /* Yatay kaymayı engeller */
}

a { 
    text-decoration: none; 
}

ul { 
    list-style: none; 
}

/* =========================================
   2. YARDIMCI SINIFLAR (UTILITIES)
   ========================================= */
.container { 
    width: 90%; 
    max-width: 1200px; 
    margin: 0 auto; 
}

section { 
    padding: 80px 0px; 
}

.section-title { 
    text-align: center; 
    margin-bottom: 50px; 
}

.section-title h2 { 
    font-size: 2.5rem; 
    color: var(--dark-color); 
    margin-bottom: 15px; 
    position: relative; 
    display: inline-block; 
}

.section-title h2::after { 
    content: ''; 
    width: 60px; 
    height: 4px; 
    background: var(--primary-color); 
    position: absolute; 
    bottom: -10px; 
    left: 50%; 
    transform: translateX(-50%); 
    border-radius: 2px;
}

.section-title p { 
    color: #666; 
    font-size: 1.1rem; 
    margin-top: 10px;
}

/* =========================================
   3. HEADER VE NAVİGASYON (PREMİUM)
   ========================================= */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    background: var(--dark-color);
}

/* Üst Bilgi Çubuğu (Top Bar) */
.top-bar {
    background: #1a252f; /* Ana arka plandan bir tık daha koyu */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 8px 0;
    font-size: 0.85rem;
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    color: #a0aab2;
}

.top-contact a {
    color: #a0aab2;
    transition: color 0.3s;
}

.top-contact a:hover {
    color: var(--primary-color);
}

.top-contact i {
    color: var(--primary-color);
    margin-right: 5px;
}

.divider {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.2);
}

.top-social a {
    color: #a0aab2;
    margin-left: 15px;
    transition: color 0.3s;
}

.top-social a:hover {
    color: var(--primary-color);
}

/* Ana Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo a { 
    color: var(--white); 
    font-size: 2rem; 
    font-weight: 800; 
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.logo-highlight { 
    color: var(--primary-color); 
}

.logo a { 
    display: flex;
    align-items: center;
}

/* Logonun boyutunu ve esnekliğini ayarlayan alan */
.logo a img {
    max-height: 50px; /* Logonuz çok büyük/küçük gelirse bu değeri 40px veya 60px yapabilirsiniz */
    width: auto;
    transition: transform 0.3s ease;
}

/* Logoya fare ile üzerine gelince hafif büyüme efekti */
.logo a:hover img {
    transform: scale(1.05);
}

.nav-links { 
    display: flex; 
    align-items: center;
}

.nav-links li { 
    margin: 0 15px; 
}

.nav-links a { 
    color: var(--white); 
    font-weight: 600; 
    font-size: 1.05rem;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease; 
}

/* Menü Linkleri İçin Alt Çizgi Animasyonu */
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0; /* Başlangıçta çizgi yok */
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active { 
    color: var(--primary-color); 
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%; /* Üzerine gelince çizgi tam boyuta ulaşır */
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Sağ Üst Buton Tasarımı */
.call-btn a {
    background: var(--primary-color);
    padding: 12px 25px;
    border-radius: 50px;
    color: var(--dark-color);
    font-weight: 800;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(241, 196, 15, 0.3);
}

.call-btn a i {
    font-size: 1.2rem;
    animation: ring 2s infinite; /* İkonun çalma animasyonu */
}

.call-btn a:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Telefon Sallanma Efekti (Keyframes) */
@keyframes ring {
    0% { transform: rotate(0); }
    10% { transform: rotate(15deg); }
    20% { transform: rotate(-15deg); }
    30% { transform: rotate(10deg); }
    40% { transform: rotate(-10deg); }
    50% { transform: rotate(0); }
    100% { transform: rotate(0); }
}

/* Mobil Menü (Masaüstünde Gizli) */
.hamburger {
    cursor: pointer;
    position: relative;
    z-index: 1100; /* Menüden daha yüksek bir değer */
}

/* =========================================
   4. HERO (ANA EKRAN) BÖLÜMÜ (PREMİUM)
   ========================================= */
.hero {
    height: 85vh; /* Biraz daha genişlettik */
    min-height: 600px;
    background: linear-gradient(rgba(26, 37, 47, 0.75), rgba(26, 37, 47, 0.85)), url('https://images.unsplash.com/photo-1626956291772-3aa243614fd0?q=80&w=1920&auto=format&fit=crop') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
}

.hero-content { 
    max-width: 850px; 
    padding: 20px; 
    animation: fadeInUp 1s ease-out; /* Giriş Animasyonu */
}

/* Üstteki Minik Rozet */
.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 25px;
    backdrop-filter: blur(5px);
}

.hero-badge i {
    color: var(--primary-color);
    margin-right: 5px;
}

.hero h1 { 
    font-size: 4rem; 
    margin-bottom: 25px; 
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 5px 15px rgba(0,0,0,0.3); 
}

/* Başlıktaki Sarı Vurgu */
.hero h1 .highlight {
    color: var(--primary-color);
}

.hero p { 
    font-size: 1.25rem; 
    margin-bottom: 40px; 
    color: #e0e0e0;
    font-weight: 400;
}

/* Butonları Yan Yana Dizmek İçin */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.main-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    background: var(--primary-color);
    color: var(--dark-color);
    font-size: 1.2rem;
    font-weight: 800;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(241, 196, 15, 0.4);
}

.main-btn:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Dikkat Çeken Pulse Animasyonu */
.pulse-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(241, 196, 15, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(241, 196, 15, 0); }
    100% { box-shadow: 0 0 0 0 rgba(241, 196, 15, 0); }
}

/* Şeffaf WhatsApp Butonu */
.secondary-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: transparent;
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid var(--white);
    transition: all 0.3s ease;
}

.secondary-btn i {
    font-size: 1.4rem;
    color: #25D366; /* WhatsApp Yeşili */
}

.secondary-btn:hover {
    background: var(--white);
    color: var(--dark-color);
}

/* Sayfa Yüklenince Yukarı Kayma Animasyonu */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   22. ÜCRET HESAPLAMA ARACI STİLLERİ
   ========================================= */
.calculator-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.calc-text-area h2 {
    font-size: 2.2rem;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.calc-text-area p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.calc-features {
    list-style: none;
    padding: 0;
}

.calc-features li {
    font-size: 1.05rem;
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.calc-features li i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Form Alanı */
.calc-form-box {
    background: #fdfdfd;
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #eee;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}

.input-with-icon input,
.input-with-icon select {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    color: #555;
    outline: none;
    transition: all 0.3s;
    background: var(--white);
}

.input-with-icon input:focus,
.input-with-icon select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(241, 196, 15, 0.2);
}

.calc-submit-btn {
    width: 100%;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    margin-top: 10px;
    justify-content: center;
}

/* Sonuç Kutusu */
.calc-result {
    margin-top: 25px;
    background: var(--dark-color);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    color: var(--white);
    display: none; /* Başlangıçta JS ile açılmak üzere gizli */
    animation: fadeInDown 0.5s ease;
}

.calc-result span {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 5px;
}

.calc-result h3 {
    font-size: 2.5rem;
    margin: 0 0 10px 0;
    color: var(--white);
}

.calc-result small {
    color: #ccc;
    font-size: 0.8rem;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 991px) {
    .calculator-wrapper { grid-template-columns: 1fr; padding: 30px; }
    .calc-form-box { padding: 25px; }
}

/* =========================================
   5. HAKKIMIZDA BÖLÜMÜ (MODERN TASARIM)
   ========================================= */
.about-section { 
    background: var(--white); 
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-subtitle {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.95rem;
    display: block;
    margin-bottom: 10px;
}

.about-text h2 { 
    font-size: 2.6rem; 
    color: var(--dark-color); 
    margin-bottom: 20px; 
    line-height: 1.2;
}

.about-text p { 
    margin-bottom: 25px; 
    font-size: 1.1rem; 
    color: #666; 
    line-height: 1.7;
}

/* Özellikler Listesi */
.about-features {
    margin-bottom: 35px;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
}

.about-features li i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

/* Telefon Kutusu */
.about-contact {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: var(--light-bg);
    padding: 20px 30px;
    border-radius: 12px;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.about-contact .icon-box {
    background: var(--primary-color);
    color: var(--dark-color);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.4rem;
}

.about-contact .contact-text {
    display: flex;
    flex-direction: column;
}

.about-contact .contact-text span {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    font-weight: 600;
}

.about-contact .contact-text strong a {
    font-size: 1.5rem;
    color: var(--dark-color);
    font-weight: 800;
    transition: color 0.3s;
}

.about-contact .contact-text strong a:hover {
    color: var(--primary-color);
}

/* Sağ Taraf: Resim ve Rozet */
.about-image-wrapper {
    position: relative;
    z-index: 1;
}

.about-image-wrapper .main-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--primary-color);
    color: var(--dark-color);
    padding: 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(241, 196, 15, 0.4);
    border: 5px solid var(--white);
    animation: float 4s ease-in-out infinite; /* Yukarı aşağı süzülme efekti */
}

.experience-badge h3 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge span {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.3;
    text-transform: uppercase;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* =========================================
   6. HİZMETLERİMİZ BÖLÜMÜ (GÖRSELLİ)
   ========================================= */
.services-section { 
    background: var(--light-bg); 
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.service-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden; /* Resimlerin köşelerden taşmamasını sağlar */
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    border-bottom: 4px solid transparent;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    border-bottom: 4px solid var(--primary-color);
}

.service-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease; /* Yumuşak zoom efekti */
}

/* Karta hover yapıldığında resmi hafifçe büyüt */
.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-icon {
    position: absolute;
    bottom: -25px; /* Resmin dışına, metnin üstüne taşır */
    right: 30px;
    background: var(--primary-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(241, 196, 15, 0.4);
    z-index: 2;
}

.service-icon i {
    font-size: 1.6rem;
    color: var(--dark-color);
}

.service-content {
    padding: 40px 30px 30px; /* Üstteki padding ikon taşması için fazla verildi */
    text-align: left; /* Modern sitelerde sola hizalama daha şık durur */
}

.service-content h3 { 
    margin-bottom: 15px; 
    color: var(--dark-color); 
    font-size: 1.4rem;
}

.service-content p { 
    color: #666; 
    line-height: 1.7;
}

/* =========================================
   7. HİZMET BÖLGELERİMİZ BÖLÜMÜ
   ========================================= */
.areas-section { 
    background: var(--white); 
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* Masaüstünde tam 4 sütun */
    gap: 15px;
}

.area-item {
    background: var(--light-bg);
    padding: 12px 15px;
    text-align: left;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--dark-color);
    transition: all 0.3s ease;
    border: 1px solid #e1e5ee;
    display: flex;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
    
    /* Uzun metin koruması */
    white-space: nowrap; 
    overflow: hidden; 
    text-overflow: ellipsis;
}

.area-item:hover {
    background: var(--primary-color);
    color: var(--dark-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(241, 196, 15, 0.3);
}

.area-item i { 
    margin-right: 8px; 
    color: var(--primary-color); 
    font-size: 1.1rem;
    background: var(--white);
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    flex-shrink: 0; /* İkonun ezilmesini engeller */
}

.area-item:hover i {
    color: var(--dark-color);
    background: var(--white);
}

/* =========================================
   14. HİZMETLER SAYFASI (GÖRSELLİ KARTLAR)
   ========================================= */
.services-section { 
    background: var(--white); /* İletişim sayfasıyla uyumlu olması için beyaz yapıldı */
    padding-bottom: 80px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.service-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden; 
    box-shadow: 0 5px 20px rgba(0,0,0,0.06); /* Beyaz arka planda kartı öne çıkaran gölge */
    transition: all 0.4s ease;
    border-bottom: 4px solid transparent;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    border-bottom: 4px solid var(--primary-color);
}

.service-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease; 
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-icon {
    position: absolute;
    bottom: -25px; 
    right: 30px;
    background: var(--primary-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(241, 196, 15, 0.4);
    z-index: 2;
}

.service-icon i {
    font-size: 1.6rem;
    color: var(--dark-color);
}

.service-content {
    padding: 40px 30px 30px; 
    text-align: left; 
}

.service-content h3 { 
    margin-bottom: 15px; 
    color: var(--dark-color); 
    font-size: 1.4rem;
}

.service-content p { 
    color: #666; 
    line-height: 1.7;
}

/* Alt Kısım CTA (Hemen Ara Alanı) */
.visual-cta {
    background: var(--dark-color);
    padding: 60px 0;
    color: var(--white);
    border-top: 5px solid var(--primary-color);
}

.v-cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.v-cta-text h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.v-cta-text p {
    font-size: 1.2rem;
    color: #a0aab2;
}

/* Mobil Ayarı (768px veya altına eklenebilir) */
@media (max-width: 768px) {
    .v-cta-content { 
        flex-direction: column; 
        text-align: center; 
    }
}

/* =========================================
   15. HİZMET DETAY SAYFASI (Premium İki Sütunlu)
   ========================================= */
.service-detail-section {
    padding-bottom: 80px;
    background: var(--white);
}

.service-detail-layout {
    display: grid;
    grid-template-columns: 2fr 1fr; /* Sol taraf geniş, sağ taraf dar (Sidebar) */
    gap: 50px;
    align-items: start; /* Sidebar'ın sticky çalışması için gerekli */
}

/* Sol Taraf: Ana İçerik */
.detail-main-img {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.detail-main-img img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.detail-text-area h2 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.detail-text-area p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.detail-text-area h3 {
    font-size: 1.6rem;
    color: var(--dark-color);
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

/* Özellikler Grid (Sol Alan İçi) */
.detail-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 25px;
}

.d-feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.d-feature-item i {
    font-size: 2rem;
    color: var(--primary-color);
    background: var(--light-bg);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    flex-shrink: 0;
}

.d-feature-item h4 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.d-feature-item p {
    font-size: 0.95rem;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Sağ Taraf: Sidebar (Yan Menü) */
.service-sidebar {
    position: sticky;
    top: 100px; /* Header'ın altında yapışık kalması için */
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background: #fcfcfc;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

.sidebar-widget h3 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.sidebar-widget h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
}

/* Diğer Hizmetler Listesi */
.sidebar-service-list li {
    margin-bottom: 10px;
}

.sidebar-service-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: var(--white);
    border-radius: 8px;
    color: #555;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.sidebar-service-list li a:hover,
.sidebar-service-list li a.active {
    background: var(--primary-color);
    color: var(--dark-color);
    border-color: var(--primary-color);
}

/* Yardım/İletişim Kutusu */
.help-widget {
    background: var(--dark-color);
    color: var(--white);
    text-align: center;
}

.help-widget h3 { color: var(--white); border: none; padding: 0; }
.help-widget h3::after { display: none; }
.help-widget p { color: #ccc; font-size: 0.95rem; margin-bottom: 25px; }

.help-widget-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.sidebar-call-btn, .sidebar-wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.sidebar-call-btn {
    background: var(--primary-color);
    color: var(--dark-color);
}

.sidebar-call-btn:hover {
    background: var(--white);
    transform: translateY(-2px);
}

.sidebar-wa-btn {
    background: #25D366; /* WhatsApp Yeşili */
    color: var(--white);
}

.sidebar-wa-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
}


/* =========================================
   17. BÖLGE DETAY SAYFASI VE FAQ
   ========================================= */
.region-detail-section {
    padding-bottom: 80px;
    background: var(--white);
}

.region-info-box h2 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.region-info-box p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.region-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin: 40px 0;
}

.r-benefit {
    background: #fdfdfd;
    border: 1px solid #eee;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.r-benefit:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}

.r-benefit i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.r-benefit h4 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.r-benefit p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

/* Sıkça Sorulan Sorular (Accordion) */
.faq-section {
    margin-top: 50px;
}

.faq-section h3 {
    font-size: 1.6rem;
    color: var(--dark-color);
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: var(--white);
    border: none;
    padding: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover, .faq-question.active {
    background: var(--light-bg);
    color: var(--primary-color);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background: var(--white);
}

.faq-answer p {
    padding: 0 20px 20px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Mobil Ayarlar */
@media (max-width: 768px) {
    .region-benefits { grid-template-columns: 1fr; }
}

/* =========================================
   18. SIKÇA SORULAN SORULAR (FAQ) STİLLERİ
   ========================================= */
.faq-item {
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden; /* Dışarı taşmaları engeller */
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.faq-question {
    width: 100%;
    background: var(--white);
    border: none;
    padding: 20px 25px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-color);
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover, .faq-question.active {
    background: #fdfdfd;
    color: var(--primary-color);
}

/* İkonun dönme animasyonu */
.faq-question i {
    transition: transform 0.4s ease;
    color: var(--primary-color);
}

.faq-question.active i {
    transform: rotate(180deg);
}

/* CEVAP KISMI - AÇILIP KAPANMAYI SAĞLAYAN KRİTİK YER */
.faq-answer {
    max-height: 0; /* Başlangıçta gizli olmasını sağlar */
    overflow: hidden; /* İçeriğin dışarı taşmasını engeller */
    transition: max-height 0.4s ease-out; /* Kayarak açılma animasyonu */
    background: var(--white);
}

.faq-answer p {
    padding: 0 25px 20px;
    color: #666;
    margin: 0;
    line-height: 1.7;
    font-size: 1.05rem;
}



/* =========================================
   8. SAYILARLA BİZ BÖLÜMÜ
   ========================================= */
.stats-section {
    /* Gece trafiği/Taksi konseptli Unsplash görseli */
    background: linear-gradient(rgba(26, 37, 47, 0.85), rgba(26, 37, 47, 0.85)), url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?q=80&w=1920&auto=format&fit=crop') center/cover;
    background-attachment: fixed; /* Paralaks (Aşağı kaydırırken sabit kalan arka plan) efekti */
    color: var(--white);
    text-align: center;
    padding: 100px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.stat-box {
    background: rgba(255, 255, 255, 0.05); /* Şeffaf camsı kutu */
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 20px;
    border-radius: 15px;
    backdrop-filter: blur(5px); /* Cam efekti */
    transition: transform 0.4s ease, background 0.4s ease, border-color 0.4s ease;
}

.stat-box:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
}

.stat-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.stat-box:hover .stat-icon {
    transform: scale(1.1); /* Üzerine gelince ikon hafifçe büyür */
}

.stat-box h3 { 
    font-size: 3.5rem; 
    color: var(--white); 
    margin-bottom: 5px; 
    font-weight: 800; 
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.stat-box h3 span {
    color: var(--primary-color); /* Sadece rakamlar sarı olacak */
}

.stat-box p { 
    font-size: 1.1rem; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    font-weight: 500;
    color: #e0e0e0;
}

/* =========================================
   9. BLOG / YAZILAR BÖLÜMÜ
   ========================================= */
.blog-section { 
    background: var(--light-bg); 
}

.blog-grid {
    display: grid;
    /* Masaüstünde 3'lü, tablette 2'li, mobilde tekli durması için ideal yapı */
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.blog-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover { 
    transform: translateY(-10px); 
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.blog-img {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-img img {
    transform: scale(1.08); /* Hover durumunda şık yakınlaştırma */
}

/* Tarih Rozeti */
.blog-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: var(--dark-color);
    padding: 8px 15px;
    font-size: 0.9rem;
    font-weight: bold;
    border-radius: 5px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.blog-content { 
    padding: 30px; 
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Kategori Etiketi */
.blog-category {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

.blog-content h3 { 
    margin-bottom: 15px; 
    font-size: 1.3rem; 
    color: var(--dark-color); 
    line-height: 1.4;
}

.blog-content p { 
    color: #666; 
    margin-bottom: 20px; 
    flex-grow: 1; /* Butonu hep en alta iter */
}

.read-more {
    color: var(--dark-color);
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
    font-size: 1rem;
}

.read-more i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.read-more:hover { 
    color: var(--primary-color); 
}

.read-more:hover i {
    transform: translateX(5px); /* Hover anında ok işareti sağa kayar */
}

/* =========================================
   20. BLOG SAYFALAMA (PAGINATION) STİLLERİ
   ========================================= */
.pagination-wrapper {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.pagination {
    list-style: none;
    display: flex;
    gap: 10px;
    padding: 0;
    margin: 0;
}

.pagination li a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    padding: 0 15px;
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    color: var(--dark-color);
    font-weight: 600;
    transition: all 0.3s ease;
    gap: 8px;
}

.pagination li a:hover,
.pagination li a.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--dark-color);
    box-shadow: 0 5px 15px rgba(241, 196, 15, 0.3);
}

@media (max-width: 576px) {
    .pagination { gap: 5px; }
    .pagination li a { padding: 0 10px; min-width: 35px; height: 35px; font-size: 0.9rem; }
}

/* =========================================
   21. BLOG DETAY (SINGLE POST) STİLLERİ
   ========================================= */
.blog-main-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.blog-meta span {
    color: #777;
    font-size: 0.95rem;
    font-weight: 500;
}

.blog-meta i {
    color: var(--primary-color);
    margin-right: 5px;
}

/* Makale Metin Formatları */
.blog-article-text h2 {
    font-size: 2.2rem;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.blog-article-text h3 {
    font-size: 1.6rem;
    color: var(--dark-color);
    margin: 40px 0 15px;
}

.blog-article-text p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 20px;
}

.blog-article-text blockquote {
    background: var(--light-bg);
    border-left: 5px solid var(--primary-color);
    padding: 30px;
    font-size: 1.3rem;
    font-style: italic;
    color: var(--dark-color);
    margin: 40px 0;
    border-radius: 0 10px 10px 0;
}

.article-inner-img {
    margin: 40px 0;
}

.article-inner-img img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.article-inner-img span {
    display: block;
    text-align: center;
    font-size: 0.9rem;
    color: #888;
    margin-top: 10px;
    font-style: italic;
}

/* Etiketler ve Paylaşım */
.blog-footer-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid #eee;
}

.blog-tags a {
    background: var(--light-bg);
    color: #555;
    padding: 6px 15px;
    border-radius: 5px;
    font-size: 0.9rem;
    margin-left: 5px;
    transition: all 0.3s;
}

.blog-tags a:hover {
    background: var(--primary-color);
    color: var(--dark-color);
}

.blog-share span {
    font-weight: 700;
    margin-right: 10px;
}

.share-btn {
    display: inline-flex;
    width: 35px;
    height: 35px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    margin-left: 5px;
    transition: all 0.3s;
}

.share-btn.fb { background: #3b5998; }
.share-btn.tw { background: #1da1f2; }
.share-btn.wa { background: #25d366; }

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    color: var(--white);
}

/* Sidebar Eklemeleri (Arama ve Son Yazılar) */
.sidebar-search-form {
    display: flex;
}

.sidebar-search-form input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px 0 0 5px;
    outline: none;
}

.sidebar-search-form button {
    background: var(--primary-color);
    color: var(--dark-color);
    border: none;
    padding: 0 20px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: 0.3s;
}

.sidebar-search-form button:hover {
    background: var(--dark-color);
    color: var(--white);
}

.recent-post-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
}

.recent-post-item:last-child {
    margin-bottom: 0;
}

.recent-post-item img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
}

.rp-info a {
    display: block;
    color: var(--dark-color);
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 5px;
    transition: color 0.3s;
}

.rp-info a:hover {
    color: var(--primary-color);
}

.rp-info span {
    color: #888;
    font-size: 0.85rem;
}

/* =========================================
   13. İLETİŞİM SAYFASI ÖZEL STİLLERİ
   ========================================= */
/* Sayfa Üst Başlığı */
.page-header {
    height: 350px;
    background: linear-gradient(rgba(26, 37, 47, 0.8), rgba(26, 37, 47, 0.9)), url('https://images.unsplash.com/photo-1615563164538-89e1da13fcc4?q=80&w=1920&auto=format&fit=crop') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.page-header p {
    font-size: 1.2rem;
    color: #e0e0e0;
    max-width: 600px;
    margin: 0 auto;
}

.contact-page-section {
    padding-bottom: 80px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

/* Sol Taraf: Bilgiler */
.contact-info-wrapper h2 {
    font-size: 2.2rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.contact-info-wrapper > p {
    color: #666;
    margin-bottom: 40px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    background: var(--light-bg);
    padding: 25px;
    border-radius: 12px;
    border-left: 5px solid var(--primary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.info-icon {
    width: 55px;
    height: 55px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.06);
    flex-shrink: 0;
}

.info-text h4 {
    margin-bottom: 5px;
    color: var(--dark-color);
    font-size: 1.2rem;
}

.info-text p, .info-text a {
    color: #555;
    font-weight: 500;
    transition: color 0.3s;
}

.info-text a:hover {
    color: var(--primary-color);
}

/* Sağ Taraf: İletişim Formu */
.contact-form-wrapper {
    background: var(--white);
    padding: 45px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 30px;
}

.custom-form .input-group {
    margin-bottom: 20px;
}

.custom-form input,
.custom-form textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #eef0f5;
    border-radius: 8px;
    font-size: 1.05rem;
    font-family: inherit;
    color: var(--dark-color);
    background: #fafbfc;
    transition: all 0.3s ease;
}

.custom-form input:focus,
.custom-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(241, 196, 15, 0.1);
    background: var(--white);
}

.w-100 {
    width: 100%;
    justify-content: center;
}

/* Harita */
.map-section {
    line-height: 0; /* Altında boşluk kalmasını engeller */
    filter: grayscale(20%); /* Haritayı siteyle daha uyumlu yapmak için hafif grileştirir */
}

/* =========================================
   10. FOOTER (PREMİUM)
   ========================================= */
.site-footer {
    background: #1a252f; /* Yukarıdaki top-bar ile uyumlu koyu renk */
    color: #a0aab2;
    padding-top: 70px;
    position: relative;
}

.footer-grid {
    display: grid;
    /* 4 sütunun masaüstünde rahatça yan yana sığması için 250px'i 200px yaptık */
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
    gap: 40px;
    margin-bottom: 50px;
}

.footer-widget h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.footer-logo a {
    color: var(--white);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 15px;
}

.footer-logo a span {
    color: var(--primary-color);
}

.footer-logo a {
    display: inline-block;
    margin-bottom: 15px;
}

.footer-logo a img {
    max-height: 60px; /* Alt kısımdaki logonun boyutunu buradan büyütebilir/küçültebilirsin */
    width: 100%;
    transition: transform 0.3s ease;
}

.footer-logo a:hover img {
    transform: scale(1.05); /* Üzerine gelince hafif büyüme efekti */
}

.footer-widget p {
    line-height: 1.7;
    margin-bottom: 20px;
}

.socials {
    display: flex;
    gap: 10px;
}

.socials a {
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.socials a:hover {
    background: var(--primary-color);
    color: var(--dark-color);
    transform: translateY(-3px);
}

/* Hızlı Menü Linkleri */
.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #a0aab2;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a i {
    font-size: 0.8rem;
    color: var(--primary-color);
    transition: transform 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 8px; /* Hover anında link hafifçe sağa kayar */
}

/* İletişim Listesi */
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.footer-contact i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 3px;
}

.footer-contact a {
    color: #a0aab2;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: var(--primary-color);
}

/* En Alt Kısım (Telif & İmza) */
.footer-bottom {
    background: var(--dark-color);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom-content p {
    margin: 0;
    font-size: 0.95rem;
}

.credits a {
    color: var(--primary-color);
    font-weight: 700;
    transition: color 0.3s;
}

.credits a:hover {
    color: var(--white);
    text-decoration: underline;
}

/* =========================================
   12. SABİT (FLOATING) İLETİŞİM BUTONLARI
   ========================================= */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    left: 30px; /* 'right' yerine 'left' yazdık, sola geçti */
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
}

.float-btn:hover {
    transform: scale(1.1);
}

/* WhatsApp Butonu ve Yanıp Sönme Animasyonu */
.whatsapp-float {
    background-color: #25D366; /* WhatsApp Yeşili */
    animation: pulse-wa 2s infinite;
}

@keyframes pulse-wa {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Telefon Butonu ve Yanıp Sönme Animasyonu */
.phone-float {
    background-color: var(--primary-color);
    color: var(--dark-color);
    animation: pulse-ph 2s infinite;
    animation-delay: 1s; /* WhatsApp ile aynı anda değil, sırayla yansınlar */
}

@keyframes pulse-ph {
    0% { box-shadow: 0 0 0 0 rgba(241, 196, 15, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(241, 196, 15, 0); }
    100% { box-shadow: 0 0 0 0 rgba(241, 196, 15, 0); }
}

/* Mobil cihazlarda butonları biraz küçültelim ki ekranı kaplamasın */
@media (max-width: 768px) {
    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }
    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* =========================================
   11. RESPONSIVE (MOBİL UYUMLULUK VE TÜM EKRAN AYARLARI)
   ========================================= */
@media (max-width: 991px) {
    /* Menü ve Header Ayarları */
    .top-bar { display: none; }
    .hamburger { display: block; font-size: 2rem; color: var(--primary-color); cursor: pointer; z-index: 1002; position: relative; } 
    
    /* Mobilde üstteki kocaman arama butonunu gizleyelim (Zaten sağ altta sabiti var) */
    .nav-actions .call-btn { display: none; }

    /* Yandan Açılan Menü (Off-Canvas) */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%; /* Başlangıçta ekranın dışında saklı */
        width: 280px;
        height: 100vh;
        background: var(--dark-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease;
        box-shadow: -5px 0 15px rgba(0,0,0,0.5);
        z-index: 1001; /* Her şeyin üstünde */
        margin: 0;
        padding: 0;
    }

    .nav-links.active { right: 0; } /* Tıklanınca sağdan içeri girer */
    .nav-links li { margin: 20px 0; }
    .nav-links a { font-size: 1.3rem; }
    
    .about-grid { grid-template-columns: 1fr; text-align: center; }
    .about-text h2::after { left: 50%; transform: translateX(-50%); }
    .areas-grid { grid-template-columns: repeat(3, 1fr); } 
}

@media (max-width: 768px) {
    section { padding: 60px 0; }
    .section-title h2 { font-size: 2rem; }
    
    /* Navbar'ın alt alta inmesini engelleyip yan yana tutuyoruz */
    .navbar { flex-direction: row; padding: 15px 20px; align-items: center; }
    
    .hero h1 { font-size: 2.8rem; }
    .hero p { font-size: 1.1rem; }
    .hero-buttons { flex-direction: column; width: 100%; padding: 0 20px; }
    .hero-buttons a { width: 100%; justify-content: center; }

    .about-grid { gap: 40px; }
    .experience-badge { bottom: -15px; left: 10px; padding: 15px 20px; }
    .experience-badge h3 { font-size: 2.5rem; }

    .blog-grid { grid-template-columns: 1fr; }
    .areas-grid { grid-template-columns: repeat(2, 1fr); } 

    .page-header h1 { font-size: 2.8rem; }
    .contact-grid { grid-template-columns: 1fr; gap: 50px; }
    .contact-form-wrapper { padding: 30px 20px; }

    .footer-bottom-content { flex-direction: column; text-align: center; gap: 10px; }

    .floating-buttons { bottom: 20px; left: 20px; }
    .float-btn { width: 50px; height: 50px; font-size: 1.5rem; }
    .v-cta-content { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .areas-grid { grid-template-columns: 1fr; } 
    .hero h1 { font-size: 2.4rem; }
}