/* --- DEĞİŞKENLER VE TEMEL AYARLAR --- */
:root {
    --primary: #f59e0b;
    --primary-hover: #d97706;
    --dark: #0f172a;
    --darker: #020617;
    --light: #f8fafc;
    --white: #ffffff;
    --text-main: #334155;
    --text-muted: #64748b;
    --whatsapp: #25D366;
    --whatsapp-dark: #128C7E;
    --bg-deep: #f1f5f9;   /* Hizmetler ve Hizmet Bölgesi için (Hafif Buz Grisi) */
    --bg-accent: #e2e8f0; /* Müşteri Yorumları için (Bir ton daha koyu gri) */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Outfit', sans-serif; color: var(--text-main); background-color: var(--white); line-height: 1.6; overflow-x: hidden; padding-top: 80px; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.bg-light { background-color: var(--light); }
.bg-dark { background-color: var(--darker); }
.text-center { text-align: center; }
.highlight { color: var(--primary); }

/* --- NAVİGASYON --- */
.navbar { position: fixed; top: 0; width: 100%; background: rgba(15, 23, 42, 0.98); backdrop-filter: blur(10px); z-index: 1000; border-bottom: 1px solid rgba(255,255,255,0.1); transition: var(--transition); height: 80px; display: flex; align-items: center; }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; justify-content: space-between; align-items: center; width: 100%; position: relative; }
.logo { font-size: 1.5rem; font-weight: 800; color: var(--white); display: flex; align-items: center; gap: 10px; }
.logo i { color: var(--primary); }
.logo span { color: var(--primary); }

/* Masaüstü Menüsü */
.nav-menu { display: flex; gap: 30px; align-items: center; }
.nav-menu a { color: var(--white); font-weight: 500; font-size: 1rem; transition: var(--transition); opacity: 0.8; }
.nav-menu a:hover { color: var(--primary); opacity: 1; }

/* --- ARAMA BUTONLARI --- */
/* Masaüstünde menü içindeki mobil butonu KESİNLİKLE gizle */
.nav-cta-mobile-wrapper { 
    display: none !important; 
}
/* Masaüstünde orijinal sağdaki butonu göster */
.nav-container > a.nav-cta,
.desktop-cta { 
    display: inline-block !important; 
    background-color: var(--primary) !important; 
    color: var(--darker) !important; 
    padding: 10px 24px !important; 
    border-radius: 30px !important; 
    font-weight: 800 !important; 
    font-size: 1.1rem !important;
}
.nav-container > a.nav-cta:hover,
.desktop-cta:hover {
    background-color: var(--white) !important;
    color: var(--primary) !important;
    transform: scale(1.05);
}

/* Hamburger Butonu (Masaüstünde gizli) */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 1001; 
}
.nav-toggle:hover { color: var(--primary); }

/* --- AÇILIR MENÜ (HAYALET SEKME) --- */
.dropdown { position: relative; }
.dropdown-content { display: none; position: absolute; background-color: rgba(15, 23, 42, 0.98); backdrop-filter: blur(10px); min-width: 220px; box-shadow: var(--shadow-lg); border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.1); top: 100%; left: 0; z-index: 1000; flex-direction: column; padding: 10px 0; overflow: hidden; }
.dropdown-content a { color: var(--white); padding: 12px 20px; text-decoration: none; display: block; transition: var(--transition); font-size: 0.95rem; }
.dropdown-content a:hover { background-color: rgba(245, 158, 11, 0.15); color: var(--primary); padding-left: 25px; opacity: 1; }
.dropdown:hover .dropdown-content { display: flex; }

/* --- HERO & SLIDER BÖLÜMÜ --- */
.hero { position: relative; height: calc(100vh - 80px); min-height: 600px; overflow: hidden; background: var(--darker); }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.8s ease-in-out; background-size: cover; background-position: center; display: flex; align-items: center; padding-top: 0; z-index: 0; }
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(2,6,23,0.95) 0%, rgba(15,23,42,0.8) 50%, rgba(15,23,42,0.4) 100%); z-index: 1; }
.hero-content { position: relative; z-index: 2; max-width: 800px; padding: 0 5%; width: 100%; }
.slider-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.1); border: 2px solid rgba(255,255,255,0.3); color: var(--white); width: 50px; height: 50px; border-radius: 50%; font-size: 1.5rem; cursor: pointer; z-index: 10; transition: var(--transition); display: flex; align-items: center; justify-content: center; }
.slider-btn:hover { background: var(--primary); border-color: var(--primary); color: var(--darker); }
.slider-btn.prev { left: 20px; }
.slider-btn.next { right: 20px; }
.badge { display: inline-block; background: rgba(245, 158, 11, 0.2); color: var(--primary); padding: 8px 16px; border-radius: 50px; font-weight: 600; font-size: 0.9rem; margin-bottom: 20px; border: 1px solid rgba(245, 158, 11, 0.3); }
.hero h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); color: var(--white); line-height: 1.1; margin-bottom: 20px; font-weight: 800; }
.hero p { font-size: 1.2rem; color: #cbd5e1; margin-bottom: 40px; max-width: 600px; }
.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; margin-bottom: 40px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 16px 32px; border-radius: 50px; font-weight: 700; font-size: 1.1rem; transition: var(--transition); cursor: pointer; border: none; }
.btn-primary { background: var(--primary); color: var(--darker); }
.btn-primary:hover { background: var(--white); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.2); }
.btn-whatsapp { background: var(--whatsapp); color: var(--white); }
.btn-whatsapp:hover { background: var(--whatsapp-dark); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3); }
.trust-indicators { display: flex; gap: 25px; flex-wrap: wrap; color: var(--white); font-size: 0.95rem; font-weight: 500; }
.trust-indicators i { color: var(--primary); margin-right: 5px; }

/* --- DİĞER BÖLÜMLER --- */
.section { padding: 100px 0; }
.section-title { text-align: center; margin-bottom: 60px; }
.section-title h1 { font-size: 2.5rem; color: var(--dark); font-weight: 800; margin-bottom: 15px; }
.section-title p { font-size: 1.1rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; }

/* Hizmetler */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.service-card { background: var(--white); padding: 40px 30px; border-radius: var(--radius); box-shadow: var(--shadow-sm); transition: var(--transition); border: 1px solid rgba(0,0,0,0.05); position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: var(--primary); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; }
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }
.icon-wrapper { width: 70px; height: 70px; background: rgba(245, 158, 11, 0.1); border-radius: 20px; display: flex; align-items: center; justify-content: center; margin-bottom: 25px; color: var(--primary); font-size: 2rem; transition: var(--transition); }
.service-card:hover .icon-wrapper { background: var(--primary); color: var(--white); transform: rotateY(180deg); }
.service-card h3 { font-size: 1.4rem; color: var(--dark); margin-bottom: 15px; font-weight: 700; }
.service-card p { color: var(--text-muted); font-size: 0.95rem; }
.btn-service { display: inline-flex; align-items: center; gap: 8px; margin-top: 20px; color: var(--primary); font-weight: 700; font-size: 0.95rem; transition: var(--transition); }
.btn-service:hover { color: var(--dark); transform: translateX(5px); }

/* Hakkımızda */
.about-container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-content h1 { font-size: 2.5rem; color: var(--dark); margin-bottom: 25px; font-weight: 800; line-height: 1.2; }
.about-content p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 20px; }
.about-list { margin-top: 30px; }
.about-list li { margin-bottom: 15px; font-weight: 600; color: var(--dark); display: flex; align-items: center; gap: 10px; }
.about-list i { color: var(--primary); }
.about-image img { width: 100%; border-radius: 24px; box-shadow: var(--shadow-lg); border: 8px solid var(--white); }

/* --- MODERN İLETİŞİM BÖLÜMÜ (GÜNCELLENDİ) --- */
#iletisim {
    padding: 100px 0;
    background: #020617; /* Saf derin siyah zemin */
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 20px !important;
    padding: 45px 30px !important;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    position: relative;
    overflow: hidden;
}

.contact-card:hover {
    transform: translateY(-12px) !important;
    background: rgba(255, 255, 255, 0.06) !important;
    border-color: var(--primary) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4) !important;
}

.c-icon {
    width: 80px;
    height: 80px;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.5rem !important;
    color: var(--primary) !important;
    transition: 0.4s;
}

.contact-card:hover .c-icon {
    background: var(--primary);
    color: var(--darker) !important;
    transform: rotateY(360deg);
}

.contact-card h3 {
    color: #fff !important;
    font-size: 1.6rem !important;
    margin-bottom: 12px !important;
    font-weight: 700 !important;
}

.contact-card p {
    color: #94a3b8 !important;
    margin-bottom: 25px !important;
    line-height: 1.6;
    font-size: 1rem;
}

.contact-card .number {
    display: block;
    font-size: 1.8rem !important;
    font-weight: 800 !important;
    color: #fff !important;
    margin-bottom: 30px !important;
    letter-spacing: 1px;
}
/* --- İLETİŞİM SAYFASI TAM UYUM GÜNCELLEMESİ --- */

/* Arka planı diğer sayfalarla aynı (Buz Grisi) yaptık */
.bg-iletisim {
    background-color: var(--bg-deep) !important; 
}

.iletisim-container {
    padding-top: 20px;
    background-color: var(--bg-deep) !important;
}

/* Kartları beyaz ve gölgeli yaparak kurumsal sayfaya uydurduk */
.contact-card {
    background: var(--white) !important;
    border: 1px solid rgba(0,0,0,0.05) !important;
    border-radius: var(--radius) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05) !important;
    padding: 40px 30px !important;
    transition: var(--transition) !important;
}

.contact-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important;
    border-color: var(--primary) !important;
}

/* Yazı renklerini koyu (dark) yaparak okunabilirliği artırdık */
.contact-card h3 {
    color: var(--dark) !important;
    margin-bottom: 15px !important;
}

.contact-card p {
    color: var(--text-muted) !important;
}

.contact-card .number {
    color: var(--dark) !important;
    display: block;
    font-size: 1.6rem !important;
    font-weight: 800 !important;
    margin: 20px 0 !important;
}

/* Sayfa Başlığı Rengi */
.iletisim-title-text {
    color: var(--dark) !important;
}

/* Harita Bölümü Arka Planı */
.map-section {
    background-color: var(--bg-deep) !important;
    padding-bottom: 80px !important;
}
/* Butonların Modernizasyonu */
.btn-contact-new {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}

.btn-phone-new { background: var(--primary); color: var(--darker); }
.btn-whatsapp-new { background: #22c55e; color: #fff; }
.btn-location-new { background: #3b82f6; color: #fff; }

.btn-contact-new:hover {
    filter: brightness(1.1);
    transform: scale(1.03);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}
.map-container iframe {
    filter: grayscale(20%) contrast(1.1); /* Tam siyah yapmadık, daha doğal durur */
}

/* --- GLOBAL FOOTER TASARIMI (KESİN ÇÖZÜM) --- */
.site-footer {
    background: #020617;
    color: #94a3b8;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
}

.footer-grid {
    display: grid;
    /* Sütunları net bir şekilde ayırdık; Marka kısmına 1.5 birim, diğerlerine 1 birim alan verdik */
    grid-template-columns: 1.5fr 1fr 1fr 1fr; 
    gap: 40px; /* Sütunlar arası boşluk (Çakışmayı önleyen asıl yer) */
    margin-bottom: 50px;
    align-items: start;
}

/* Logo ve Marka Yazısı Hizalaması */
.footer-brand .footer-logo {
    display: flex;
    align-items: center; 
    gap: 12px;
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 25px;
    white-space: nowrap; /* Yazının kırılıp yan sütuna binmesini engeller */
}

.footer-brand p {
    line-height: 1.8;
    max-width: 280px; /* Metnin sağdaki 'Hızlı Linkler'i itmesini engeller */
}

/* Başlık Çizgileri ve Hizalama */
.footer-title {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 45px;
    height: 3px; /* Sadece 3px kalınlık; hizalama hatasına neden olan 30px kutuyu sildik */
    background: var(--primary);
}

/* Sosyal Medya Kutuları */
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-links a {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--primary);
    color: var(--darker);
    transform: translateY(-5px);
}

/* Animasyonlar */
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7); } 70% { box-shadow: 0 0 0 15px rgba(245, 158, 11, 0); } 100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); } }
.pulse-anim { animation: pulse 2s infinite; }

/* --- YÜZEN İLETİŞİM MENÜSÜ (SABİT) --- */
.floating-widget { position: fixed; bottom: 30px; right: 30px; z-index: 9999; display: flex; flex-direction: column; align-items: center; gap: 15px; }
.floating-buttons { display: flex; flex-direction: column; gap: 15px; transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55); transform-origin: bottom center; }
.floating-widget.hidden .floating-buttons { opacity: 0; pointer-events: none; transform: translateY(20px) scale(0.5); }
.fw-btn { width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; color: white; box-shadow: 0 4px 15px rgba(0,0,0,0.2); transition: var(--transition); border: none; cursor: pointer; text-decoration: none; }
.fw-whatsapp { background-color: var(--whatsapp); }
.fw-whatsapp:hover { background-color: var(--whatsapp-dark); transform: scale(1.1); }
.fw-call { background-color: var(--primary); color: var(--darker); }
.fw-call:hover { background-color: var(--white); color: var(--primary); transform: scale(1.1); }
.fw-toggle { width: 50px; height: 50px; border-radius: 50%; background-color: var(--dark); color: var(--white); border: 2px solid rgba(255,255,255,0.1); font-size: 20px; cursor: pointer; box-shadow: 0 4px 10px rgba(0,0,0,0.3); transition: var(--transition); display: flex; align-items: center; justify-content: center; }
.fw-toggle:hover { background-color: var(--primary); color: var(--darker); }

/* --- MOBİL UYUMLULUK (MENÜ VE BUTON DÜZELTMELERİ) --- */
@media (max-width: 992px) {
    /* Masaüstü Butonunu Gizle */
    .nav-container > a.nav-cta,
    .desktop-cta { display: none !important; }
    
    /* Mobilde menü içindeki butonu göster */
    .nav-cta-mobile-wrapper { display: flex !important; justify-content: center; width: 100%; margin-top: 15px; }
    
    .hero-slide { background-position: center !important; }

    /* Kaydırma İpucu Tasarımı */
    .swipe-indicator { position: absolute; bottom: 20px; right: 20px; z-index: 100; display: flex; flex-direction: column; align-items: center; color: rgba(255, 255, 255, 0.7); font-size: 0.9rem; pointer-events: none; opacity: 0; transition: opacity 0.4s ease; }
    .swipe-indicator i { font-size: 1.5rem; margin-bottom: 5px; animation: pulseIndicator 2s infinite; }
    @keyframes pulseIndicator { 0% { transform: translateX(0); opacity: 0.7; } 50% { transform: translateX(-10px); opacity: 0.4; } 100% { transform: translateX(0); opacity: 0.7; } }
    
    /* Hamburger Butonunu Göster ve Hizala */
    .nav-toggle { display: flex; align-items: center; justify-content: center; margin-left: auto; margin-right: 15px; }
    
    /* Mobil Menü Ana Kapsayıcı */
    .nav-menu { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: rgba(15, 23, 42, 0.98); backdrop-filter: blur(10px); flex-direction: column; align-items: center; gap: 5px; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,0.1); z-index: 1000; }
    .nav-menu.active { display: flex; }
    
    /* Linklerin Düzeni */
    .nav-menu > li { width: 100%; text-align: center; }
    .nav-menu a { display: block; font-size: 1.1rem; width: 100%; padding: 12px 0; }
    
    /* Mobil Dropdown (Hizmetler) Takılı Kalma Düzeltmesi */
    .dropdown { width: 100%; display: flex; flex-direction: column; align-items: center; }
    .dropdown > a { display: flex; justify-content: center; align-items: center; gap: 8px; transition: var(--transition); }
    .dropdown:hover .dropdown-content { display: none !important; } 
    
    .dropdown-content { display: none !important; position: relative; background: rgba(255, 255, 255, 0.05); width: 85%; margin: 5px auto 15px auto; box-shadow: none; border: 1px solid rgba(255,255,255,0.05); padding: 10px 0; border-radius: 12px; }
    .dropdown-content a { color: #cbd5e1; padding: 12px 0; font-size: 1rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
    .dropdown-content a:last-child { border-bottom: none; }
    
    .dropdown.active .dropdown-content { display: flex !important; flex-direction: column; }
    .dropdown.active:hover .dropdown-content { display: flex !important; flex-direction: column; }

    /* Mobildeki Arama Butonunun Normal Boyutu */
    .nav-menu .nav-cta, 
    .nav-cta-mobile { background: var(--primary) !important; color: var(--darker) !important; padding: 12px 24px !important; border-radius: 30px !important; font-weight: 800 !important; text-align: center !important; width: auto !important; min-width: 200px !important; display: inline-block !important; font-size: 1.1rem !important; margin: 10px auto !important; }

    /* Diğer Mobil Ayarlar */
    .about-container { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.5rem; }
    .hero { text-align: center; justify-content: center; }
    .hero-content { margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
    .hero-buttons { justify-content: center; }
    .trust-indicators { justify-content: center; }
    .slider-btn { display: none; }
    
    .floating-widget { bottom: 20px; right: 20px; }
    .fw-btn { width: 55px; height: 55px; font-size: 24px; }
}

@media (max-width: 768px) {
    .icon-wrapper { width: 55px; height: 55px; border-radius: 15px; font-size: 1.6rem; }
    .service-card { padding: 30px 20px; }
}
@media (max-width: 768px) {
    /* 1. Üstteki Rozetin (Badge) Görünürlüğünü ve Boyutunu Ayarla */
    .hero-content .badge {
        display: inline-block !important; /* Gizlenmişse zorla gösterir */
        font-size: 0.8rem !important;
        padding: 6px 12px !important;
        margin-bottom: 15px !important;
        background: rgba(245, 158, 11, 0.2); /* Daha belirgin arka plan */
        border: 1px solid var(--primary);
    }

    /* 2. Hero Başlığını Mobilde Biraz Küçült (Numaraya yer açar) */
    .hero h1 {
        font-size: 1.8rem !important;
        line-height: 1.2 !important;
    }

    /* 3. Butonun İçindeki Numaranın Sığması İçin Fontu ve Padding'i Ayarla */
    .hero-buttons .btn {
        width: 100% !important; /* Buton tam genişlik olsun */
        padding: 12px 10px !important; /* Yan boşlukları daralttık */
        font-size: 0.95rem !important; /* Fontu bir tık küçülttük */
        white-space: nowrap !important; /* Yazının asla alt satıra geçmesini engeller */
        display: flex !important;
        justify-content: center;
        align-items: center;
        gap: 8px;
    }

    /* Butonun içindeki ikonu biraz küçült ki numara sığsın */
    .hero-buttons .btn i {
        font-size: 1rem !important;
    }

    /* 4. Alt Bilgi (Trust Indicators) Mobilde Daha Derli Toplu Dursun */
    .trust-indicators {
        flex-direction: column !important;
        gap: 10px !important;
        align-items: flex-start !important;
    }
}

/* --- HİZMETLER BÖLÜMÜNÜ SÜSLEME (TEMİZ & MODERN BEYAZ) --- */

/* O garip deseni sildik, derinlik katan temiz bir zemin yaptık */
#hizmetler {
    background-color: #f8fafc; /* Tertemiz, çok hafif gri/beyaz */
    position: relative;
    overflow: hidden;
}

/* Kapsayıcı Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px; 
}

/* Kartın Tasarımı */
.service-card {
    background: var(--white);
    padding: 50px 35px;
    border-radius: var(--radius);
    /* Çooook hafif ama derin bir gölge (Premium duruş) */
    box-shadow: 0 15px 40px rgba(0,0,0,0.06); 
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03); /* Neredeyse görünmez bir sınır */
    position: relative;
    overflow: hidden;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Hover Efekti (Buraya Sarı Parlamayı Eklemiyoruz, Sadece Kalkıyor) */
.service-card:hover {
    transform: translateY(-15px); /* Yukarı kalkacak */
    box-shadow: 0 25px 60px rgba(0,0,0,0.1); /* Gölge derinleşecek */
}

/* Kartın Üstündeki Şerit (Sarı Enerjiyi Buraya Koyduk) */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary) 0%, #fbbf24 50%, var(--primary) 100%);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover::before {
    transform: scaleX(1);
}

/* Arka plandaki şeffaf ikonlar (Bunu Korumamız Lazım, Zenginlik Katıyor) */
.service-card::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 8rem;
    color: rgba(245, 158, 11, 0.05); /* Çoook hafif sarı */
    z-index: 0;
    transition: var(--transition);
}

/* Arka plan ikonlarını kartlara göre belirleyelim */
.service-card:nth-child(1)::after { content: '\f0a4'; } /* Kapı Açık */
.service-card:nth-child(2)::after { content: '\f1b9'; } /* Araba */
.service-card:nth-child(3)::after { content: '\f023'; } /* Kilit */

.service-card:hover::after {
    transform: translate(-10px, -10px);
    color: rgba(245, 158, 11, 0.1); /* Hoverda biraz daha belirgin */
}

/* İkonun Tasarımı */
.icon-wrapper {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(251, 191, 36, 0.1) 100%);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    color: var(--primary);
    font-size: 3rem;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

/* İkonun İçindeki Parlama */
.icon-wrapper::after {
    content: '';
    position: absolute;
    inset: 10px;
    background: white;
    border-radius: 20px;
    z-index: -1;
    opacity: 0.8;
}

.service-card:hover .icon-wrapper {
    background: linear-gradient(135deg, var(--primary) 0%, #fbbf24 100%);
    color: var(--darker);
    transform: rotateY(180deg) scale(1.1); /* Dönecek ve biraz büyüyecek */
}

/* Başlık ve Metin Tasarımı */
.service-card h3 {
    font-size: 1.6rem;
    color: var(--dark);
    margin-bottom: 20px;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

/* Detaylı Bilgi Butonu */
.btn-service {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--darker);
    background-color: var(--light);
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    z-index: 1;
}

.btn-service i {
    color: var(--primary);
    transition: var(--transition);
}

.service-card:hover .btn-service {
    background-color: var(--primary);
    color: var(--darker);
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.3);
}

.service-card:hover .btn-service i {
    color: var(--darker);
    transform: translateX(5px);
}
/* Logo ve Yazıyı Yan Yana Getirme Ayarı */
.nav-container {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

.logo {
    display: inline-flex !important; /* Blok yerine yan yana dizilim sağlar */
    align-items: center !important;
    gap: 5px !important; /* Aradaki boşluğu tamamen kapatır */
    width: auto !important; /* Gereksiz genişliği engeller */
}

.custom-logo {
    height: 115px !important;
    width: auto !important;
    margin-right: -75px !important; /* Logo ile BULUT yazısı arasındaki net mesafe */
    flex-shrink: 0; /* Logonun sıkışmasını engeller */
}
/* Mobilde Sola Hizalanmış Logo ve Yazı */
@media (max-width: 992px) {
    .nav-container {
        display: flex !important;
        justify-content: flex-start !important; /* Tüm içeriği en sola çeker */
        padding-left: 30px !important; /* Ekranın en soluna çok yapışmaması için küçük bir boşluk */
    }

    .logo {
        display: flex !important;
        align-items: center !important;
        gap: 5px !important;
        margin-left: -75px !important; /* Sol boşluğu sıfırlar */
        margin-right: auto !important; /* Menü butonunu sağa iter, logoyu solda tutar */
    }

    .custom-logo {
        height: 100px !important; /* 135px çok büyük gelirse 100px idealdir, ihtiyaca göre artırabilirsin */
        margin-right: -70px !important; /* Yazıya olan yakınlığı bu değerle ince ayar yapabilirsin */
        object-fit: contain;
    }
    
    .nav-toggle {
        margin-left: auto !important; /* Hamburger menü butonunu en sağa sabitler */
    }
}

/* Müşteri Yorumları (Testimonial) Ek Stilleri */
.testimonial-card {
    text-align: center !important;
    padding: 40px 25px !important;
}

.stars {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.testimonial-card p {
    font-style: italic;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-main);
}

.customer-info {
    margin-top: 25px;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 20px;
}

.customer-info strong {
    display: block;
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 5px;
}

.customer-info span {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
}

/* Sayfa içeriği az olsa bile footer'ı en alta iter */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ekran yüksekliğinin tamamını kapla */
}

/* Ana içerik kısmına esneklik vererek boşluğu doldurmasını sağlar */
section.section {
    flex: 1; 
}

/* Footer her zaman en altta kalır */
footer {
    margin-top: auto;
}

/* Markalar Bölümü Tasarımı */
.brands-wrapper h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 20px;
    align-items: center;
}

.brand-item {
    background: #fff;
    padding: 20px 10px;
    border-radius: var(--radius);
    border: 1px solid #e2e8f0;
    text-align: center;
    font-weight: 700;
    color: var(--text-muted);
    transition: var(--transition);
    cursor: default;
    box-shadow: var(--shadow-sm);
}

.brand-item:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(245, 158, 11, 0.1);
}

/* Kilit markaları için hafif farklı bir ton (opsiyonel) */
.kilit-markalari .brand-item:hover {
    border-color: var(--dark);
    color: var(--dark);
}

@media (max-width: 768px) {
    .brands-grid {
        grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
        gap: 15px;
    }
    .brand-item {
        font-size: 0.85rem;
        padding: 15px 5px;
    }
}

/* SSS Sayfası Tasarımı */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    padding: 25px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    border-left: 5px solid var(--primary); /* Soru başına sarı çizgi */
    transition: var(--transition);
}

.faq-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.faq-item h3 {
    color: var(--dark);
    font-size: 1.2rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-item h3 i {
    color: var(--primary);
}

.faq-item p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* --- YENİ EKLENEN BÖLÜMLER (HİÇBİR ESKİ KODU DEĞİŞTİRMEZ) --- */

/* 1. Bölüm Ayracı (Hizmetler - Yorumlar Arası Geçiş) */
.section-divider {
    display: block;
    width: 100%;
    /* index.html'e eklediğin div ile uyumlu çalışır */
}

/* 2. Müşteri Yorumları (Testimonials) */
#yorumlar {
    background-color: #f8fafc !important; /* Hafif gri zemin */
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.testimonial-card {
    background: #ffffff !important;
    text-align: center !important;
    padding: 40px 25px !important;
    border-radius: 12px !important;
    border: 1px solid rgba(0,0,0,0.05) !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1) !important;
}

.stars {
    color: #f59e0b; /* Altın sarısı yıldızlar */
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.testimonial-card p {
    font-style: italic;
    color: #334155;
    margin-bottom: 20px;
}

.customer-info strong {
    display: block;
    color: #0f172a;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.customer-info span {
    color: #f59e0b;
    font-size: 0.85rem;
    font-weight: 600;
}

/* 3. Markalar Bölümü */
.brands-wrapper h3 {
    font-size: 1.5rem;
    color: #0f172a;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f59e0b;
    display: inline-block;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 20px;
    align-items: center;
}

.brand-item {
    background: #fff;
    padding: 20px 10px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    text-align: center;
    font-weight: 700;
    color: #64748b;
    transition: all 0.3s ease;
}

.brand-item:hover {
    border-color: #f59e0b;
    color: #f59e0b;
    transform: translateY(-5px);
}

/* 4. SSS Sayfası Tasarımı */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #f59e0b;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateX(10px);
}

.faq-item h3 {
    color: #0f172a;
    font-size: 1.2rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-item h3 i {
    color: #f59e0b;
}

/* 5. Sayfa Sonu Boşluk Düzeltmesi (Sticky Footer) */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

footer {
    margin-top: auto;
}

/* --- MERKEZİ LOGO SİSTEMİ (32 KARTLI OTO & 10 KARTLI KİLİT) --- LOGOLAR BİR TIK DAHA BÜYÜTÜLDÜ */

.logo-slider {
    width: 100%;
    /* Logolar büyüdüğü için slider yüksekliğini 150px'e çıkardık */
    height: 150px; 
    position: relative;
    overflow: hidden;
    background: transparent;
    display: flex;
    align-items: center;
}

/* 1. ŞERİT: OTO ANAHTAR (32 KART - SOLA AKIŞ) */
.logo-track:not(.reverse) {
    display: flex;
    /* Kart genişliği (200px) * 32 kart = 6400px */
    width: 6400px;
    animation: scroll-left-32 35s linear infinite;
}

@keyframes scroll-left-32 {
    0% { transform: translateX(0); }
    /* 16 asıl logo bitince (200*16 = 3200px) başa dön */
    100% { transform: translateX(-3200px); }
}

/* 2. ŞERİT: KİLİT SİSTEMLERİ (10 KART - SAĞA AKIŞ) */
.logo-track.reverse {
    display: flex;
    /* 200px genişlik * 10 kart = 2000px */
    width: 2000px;
    animation: scroll-right-10 18s linear infinite;
}

@keyframes scroll-right-10 {
    /* Logoların hemen ekranda olması için -1000px'den (5 logo mesafesi) başlatıyoruz */
    0% { transform: translateX(-1000px); } 
    100% { transform: translateX(0); }
}

/* ORTAK KART VE MAKSİMUM BÜYÜKLÜKTE GÖRSEL AYARLARI */
.slide {
    /* Logoların birbirine çarpmaması için genişliği 200px yaptık */
    width: 200px;
    /* Yüksekliği 130px'e çıkardık */
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.slide img {
    /* Logoları kutu içinde maksimum boyuta getirdik */
    max-width: 98%; 
    max-height: 95%;
    object-fit: contain;
    opacity: 0.85; /* Biraz daha belirgin yaptık */
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.slide:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1); /* Zaten büyük olduğu için hover büyümesini hafif tuttuk */
}

/* Kenar Yumuşatma Efektleri */
.logo-slider::before,
.logo-slider::after {
    content: "";
    height: 100%;
    position: absolute;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.logo-slider::before {
    left: 0;
    background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
}

.logo-slider::after {
    right: 0;
    top: 0;
    background: linear-gradient(to left, white 0%, rgba(255, 255, 255, 0) 100%);
}

/* --- BÖLÜM ARKA PLAN GÜNCELLEMELERİ --- */

/* 1. Hizmetler Bölümü: Hafif derinlik kazandırır */
#hizmetler {
    background-color: var(--bg-deep) !important;
}

/* 2. Çalıştığımız Markalar: Beyaz kalsın (Logoların patlaması için en iyisi budur) */
#markalar {
    background-color: var(--white) !important;
}

/* 3. Hizmet Bölgesi: Hafif derinlik tonuna geri dön */
#hizmet-bolgeleri {
    background-color: var(--bg-deep) !important;
}

/* 4. Müşteri Yorumları: En koyu gri tonu buraya veriyoruz */
#yorumlar {
    background-color: var(--bg-accent) !important;
}

/* KARTLARIN BEYAZ KALMASINI SAĞLA (Zemin üzerinde belirginleşmeleri için) */
.service-card, .location-item, .testimonial-card {
    background: var(--white) !important;
    border: 1px solid rgba(0,0,0,0.03) !important;
}

/* --- HİZMET BÖLGELERİ TASARIMI (BEYAZ KARTLAR GERİ GETİRİLDİ) --- */
.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 25px; /* Kartlar arası boşluğu biraz artırdık */
    margin-top: 50px;
}

.location-item {
    /* KRİTİK DÜZELTME: Beyaz arka plan ve gölge eklendi */
    background: var(--white) !important;
    padding: 30px 20px;
    border-radius: var(--radius);
    text-align: center;
    /* Çooook hafif ama premium duran bir gölge (Premium hissi bu verir) */
    box-shadow: 0 10px 30px rgba(0,0,0,0.04); 
    border: 1px solid rgba(0,0,0,0.03); /* Neredeyse görünmez bir sınır */
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.location-item i {
    color: var(--primary);
    font-size: 2rem; /* İkonu bir tık büyüttük */
    transition: var(--transition);
}

.location-item span {
    font-weight: 700;
    color: var(--dark);
    font-size: 1.2rem;
    transition: var(--transition);
}

/* Hover Efekti (Buraya Sarı Parlamayı Eklemiyoruz, Sadece Kalkıyor) */
.location-item:hover {
    transform: translateY(-10px); /* Yukarı kalkacak */
    box-shadow: 0 20px 50px rgba(0,0,0,0.08); /* Gölge derinleşecek */
    border-color: var(--primary); /* Sınır sarı olacak */
}

/* Hoverda İkon ve Yazı Rengi Değişimi */
.location-item:hover i,
.location-item:hover span {
    color: var(--primary);
}

@media (max-width: 768px) {
    .location-grid {
        grid-template-columns: repeat(2, 1fr); /* Mobilde yan yana ikişerli durur */
        gap: 15px;
    }
    .location-item {
        padding: 20px 15px;
    }
}