/* Temel Sıfırlama */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header ve Navigasyon */
header {
    background-color: #fff;
    height: 80px;
    display: flex;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #333;
}

.orange { color: #f37021; }

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    font-size: 14px;
    transition: 0.3s;
}

.nav-links a.active {
    color: #f37021;
    border-bottom: 2px solid #f37021;
    padding-bottom: 5px;
}

/* Hero Section */
.hero {
    height: 130vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                url('img/anasayfa/lefkosa-camasirhane-slider.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
}

.hero-content h1 {
    font-size: 55px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 40px;
    font-weight: 300;
}

/* Butonlar */
.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.btn-orange {
    background-color: #f37021;
    color: #fff;
}

.btn-orange:hover { background-color: #d15d18; }

.btn-glass {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 2px solid #fff;
    backdrop-filter: blur(5px);
}

.btn-glass:hover { background-color: rgba(255, 255, 255, 0.4); }

/* WhatsApp Butonu */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .nav-links { display: none; } /* Mobil menü yapılabilir */
    .hero-content h1 { font-size: 35px; }
    .hero-btns { flex-direction: column; align-items: center; }
}
/* Neden SpeedQueen? Bölümü Genel Stilleri */
.why-speedqueen {
    padding: 100px 0; /* Üst ve alttan boşluk */
    background-color: #fff;
    text-align: center;
    color: #333; /* Genel metin rengi koyu gri */
}

/* Bölüm Başlıkları */
.why-speedqueen .section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.why-speedqueen .section-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: #666; /* Alt başlık rengi daha açık gri */
    margin-bottom: 80px; /* Kartlardan önceki boşluk */
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Kartlar Izgarası (Grid) */
.why-speedqueen .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Esnek kolonlar */
    gap: 40px; /* Kartlar arası boşluk */
}

/* Tek Bir Özellik Kartı */
.why-speedqueen .feature-card {
    background-color: #fff;
    padding: 60px 30px; /* Kart içi boşluklar */
    border-radius: 12px; /* Köşe yuvarlama */
    box-shadow: 0 5px 25px rgba(0,0,0,0.05); /* Çok hafif gölge */
    transition: all 0.3s ease; /* Tüm değişiklikler için geçiş efekti */
}

/* Kartın Üzerine Gelindiğinde (Hover) Hafif Yükselme Efekti */
.why-speedqueen .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); /* Hover'da daha belirgin gölge */
}

/* İkon Kutusu - Varsayılan Turuncu Hali */
.why-speedqueen .icon-box {
    width: 80px;
    height: 80px;
    background-color: #fff3e0; /* Açık turuncu arka plan */
    border-radius: 50%; /* Yuvarlak kutu */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px auto; /* Ortala ve alttan boşluk ver */
    transition: all 0.3s ease;
}

/* İkon - Varsayılan Turuncu Hali */
.why-speedqueen .icon-box i {
    font-size: 30px;
    color: #f37021; /* Turuncu ikon rengi */
    transition: all 0.3s ease;
}

/* --- İSTENEN HOVER EFEKTİ --- */

/* Kartın üzerine gelindiğinde (hover), ikon kutusunun arka planı turuncu olur */
.why-speedqueen .feature-card:hover .icon-box {
    background-color: #f37021; /* Turuncu arka plan */
    box-shadow: 0 10px 20px rgba(243, 112, 33, 0.3); /* Turuncu renkli ışık efekti */
}

/* Kartın üzerine gelindiğinde (hover), ikonun rengi beyaz olur */
.why-speedqueen .feature-card:hover .icon-box i {
    color: #fff; /* Beyaz ikon rengi */
}

/* Kart Metinleri */
.why-speedqueen .feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.why-speedqueen .feature-card p {
    font-size: 14px;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
}

/* Mobil Uyumluluk İçin Ek Ayarlar */
@media (max-width: 768px) {
    .why-speedqueen .section-title {
        font-size: 28px;
    }
    .why-speedqueen .features-grid {
        grid-template-columns: 1fr; /* Mobilde kartlar alt alta gelsin */
        gap: 20px;
    }
}
/* Nasıl Çalışır Genel Alan */
.how-it-works {
    padding: 100px 0;
    background-color: #f9f9f9; /* Hafif gri arka plan */
    text-align: center;
}

.how-it-works .section-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.how-it-works .section-subtitle {
    font-size: 16px;
    color: #777;
    margin-bottom: 80px;
}

/* Adımlar Konteynırı */
.steps-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

/* Numaralar arasındaki turuncu çizgi */
.step-line {
    position: absolute;
    top: 30px; /* Dairelerin tam ortasından geçmesi için */
    left: 10%;
    right: 10%;
    height: 1px;
    background-color: #f37021;
    z-index: 1;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 2;
}

/* Tekil Adım Stili */
.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #f37021;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    box-shadow: 0 4px 10px rgba(243, 112, 33, 0.3);
}

.step-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.step-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    padding: 0 10px;
}

/* MOBİL UYUMLULUK (Responsive) */
@media (max-width: 768px) {
    .step-line {
        display: none; /* Mobilde yatay çizgi görünmesin */
    }

    .steps-grid {
        grid-template-columns: 1fr; /* Mobilde alt alta gelsin */
        gap: 40px;
    }

    .step-item {
        border-bottom: 1px solid #eee;
        padding-bottom: 20px;
    }

    .step-item:last-child {
        border-bottom: none;
    }

    .how-it-works {
        padding: 60px 0;
    }
}
/* Advantage Section Genel */
.advantage-section {
    padding: 100px 0;
    background-color: #fff;
    overflow: hidden;
}

.advantage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Yarı yarıya bölünmüş yapı */
    gap: 60px;
    align-items: center;
}

/* Alt Başlık Çizgisi (SELF SERVİS AVANTAJI kısmı) */
.subtitle-line {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.subtitle-line .line {
    width: 30px;
    height: 2px;
    background-color: #f37021;
}

.subtitle-line .subtitle {
    color: #f37021;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Ana Başlık (Kalın Font) */
.advantage-text h2 {
    font-size: 48px;
    font-weight: 900; /* Ekstra kalın */
    color: #1a1a1a;
    line-height: 1.1;
    margin-bottom: 30px;
    text-transform: none;
}

/* Açıklama Metinleri */
.advantage-text .description p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Butonun altındaki hafif gölge */
.btn-shadow {
    box-shadow: 0 10px 20px rgba(243, 112, 33, 0.3);
    width: fit-content;
}

/* Görsel Alanı ve Oval Köşeler */
.advantage-image img {
    width: 100%;
    height: auto;
    border-radius: 25px; /* Görseldeki yuvarlak köşeler */
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* MOBİL UYUMLULUK (Responsive) */
@media (max-width: 992px) {
    .advantage-grid {
        grid-template-columns: 1fr; /* Mobilde alt alta gelsin */
        text-align: left;
        gap: 40px;
    }

    .advantage-text h2 {
        font-size: 32px;
    }

    .advantage-image {
        order: 2; /* Görsel altta kalsın */
    }
    
    .advantage-text {
        order: 1;
    }
}
/* CTA Orange Section */
.cta-orange {
    background-color: #f37021;
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

.cta-orange h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-orange p {
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.6;
    opacity: 0.9;
}

.btn-outline-white {
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.btn-outline-white:hover {
    background-color: #fff;
    color: #f37021;
}

/* Footer Genel */
footer {
    background-color: #333;
    color: #fff;
    padding: 80px 0 20px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
}

/* Footer Logo & Hakkında */
.footer-logo {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-logo span {
    color: #f37021;
}

.footer-about p {
    font-size: 14px;
    color: #bbb;
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
}

.footer-social a:hover {
    background-color: #f37021;
}

/* Footer Başlıkları */
footer h4 {
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: 600;
}

/* Footer Linkler */
.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #bbb;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-links ul li a:hover {
    color: #f37021;
}

/* Footer Çalışma Saatleri */
.hours-item {
    margin-bottom: 15px;
}

.hours-item span {
    display: block;
    font-size: 13px;
    color: #999;
}

.hours-item strong {
    font-size: 15px;
    color: #fff;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: 60px;
    padding-top: 20px;
    text-align: center;
    font-size: 12px;
    color: #777;
}

/* MOBİL UYUMLULUK */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .cta-orange h2 {
        font-size: 26px;
    }
}
/* Kurumsal Sayfa Başlığı (Banner) */
.page-banner {
    background-color: #242b38; /* Görseldeki koyu antrasit tonu */
    padding: 60px 0;
    text-align: center;
    color: #fff;
}

.page-banner h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.page-banner p {
    font-size: 14px;
    color: #99a1ad;
    font-weight: 300;
}

/* Hakkımızda Detay Alanı */
.about-detail {
    padding: 100px 0;
    background-color: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.top-label {
    color: #f37021;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 15px;
}

.about-content h2 {
    font-size: 40px;
    font-weight: 800;
    color: #1a1c23;
    line-height: 1.2;
    margin-bottom: 30px;
}

.text-block p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.text-block strong {
    color: #1a1c23;
    font-weight: 700;
}

/* İstatistik Kartları */
.stats-row {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.stat-card {
    background-color: #f8f9fa;
    padding: 25px 40px;
    border-radius: 12px;
    text-align: center;
    flex: 1;
}

.stat-card h3 {
    font-size: 32px;
    font-weight: 800;
    color: #f37021;
    margin-bottom: 5px;
}

.stat-card p {
    font-size: 12px;
    color: #888;
    font-weight: 500;
}

/* Sağ Görsel ve Badge */
.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    display: block;
    border-radius: 20px;
}

.badge-card {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background-color: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.badge-card h4 {
    font-size: 24px;
    font-weight: 800;
    color: #f37021;
}

.badge-card p {
    font-size: 11px;
    color: #777;
    margin-top: 3px;
}

/* MOBİL UYUMLULUK */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-content h2 {
        font-size: 32px;
    }
    
    .image-container {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .stats-row {
        flex-direction: column;
    }
    
    .page-banner h1 {
        font-size: 32px;
    }
}
/* Kurumsal Özellikler Bölümü */
.corporate-values {
    padding: 80px 0;
    background-color: #fdfdfd;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Masaüstünde 3 kolon */
    gap: 30px;
}

/* Değer Kartları */
.value-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 15px;
    border-left: 5px solid #f37021; /* Görseldeki turuncu sol şerit */
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); /* Yumuşak geçiş */
    cursor: default;
    position: relative;
}

/* İSTEDİĞİN EFEKT: Üzerine gelince fark edilmesi için */
.value-card:hover {
    transform: translateY(-8px); /* Hafifçe yukarı kalkar */
    background: #fff; /* Arka plan parlar */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08); /* Belirginleşen gölge */
    border-left: 8px solid #f37021; /* Şerit kalınlaşır */
}

.value-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.value-header i {
    font-size: 24px;
    color: #333; /* Başlangıçta koyu ikon */
    transition: 0.3s;
}

.value-card:hover .value-header i {
    color: #f37021; /* Hover'da ikon turuncuya döner */
}

.value-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1c23;
}

.value-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* MOBİL UYUMLULUK */
@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr); /* Tabletlerde 2 kolon */
    }
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr; /* Mobilde tek kolon */
        gap: 20px;
    }
    
    .value-card {
        padding: 30px 20px;
    }

    .corporate-values {
        padding: 60px 0;
    }
}
/* Vizyon Bölümü */
.vision-section {
    padding: 60px 0 100px;
    background-color: #fff;
}

/* Koyu Kart Yapısı */
.vision-card {
    background-color: #1e2633; /* Görseldeki koyu lacivert/antrasit */
    padding: 60px;
    border-radius: 30px;
    color: #fff;
    position: relative;
    overflow: hidden; /* Dekoratif halkanın dışarı taşmaması için */
}

/* Sağ Üstteki Dekoratif Halkas (Görseldeki detay) */
.vision-card::after {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.vision-label {
    color: #f37021;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 20px;
}

.vision-card h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.vision-card p {
    font-size: 16px;
    color: #a0a7b1;
    line-height: 1.7;
    max-width: 800px;
    margin-bottom: 40px;
}

/* Şube Durum Rozetleri */
.branch-status {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.status-badge {
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
    cursor: pointer;
}

/* Aktif Şube - Turuncu */
.status-badge.active {
    background-color: #f37021;
    color: #fff;
}

/* Yakında Gelecek Şubeler - Koyu Gri */
.status-badge.upcoming {
    background-color: rgba(255, 255, 255, 0.08);
    color: #a0a7b1;
}

.status-badge.upcoming .dot {
    width: 8px;
    height: 8px;
    background-color: #a0a7b1;
    border-radius: 50%;
}

/* Hover Efekti: Blokların fark edilmesi için */
.status-badge:hover {
    transform: scale(1.05);
    background-color: rgba(255, 255, 255, 0.15);
}

.status-badge.active:hover {
    background-color: #ff7e33;
    box-shadow: 0 5px 15px rgba(243, 112, 33, 0.4);
}

/* MOBİL UYUMLULUK */
@media (max-width: 768px) {
    .vision-card {
        padding: 40px 25px;
        border-radius: 20px;
    }

    .vision-card h2 {
        font-size: 26px;
    }

    .vision-card p {
        font-size: 14px;
    }

    .branch-status {
        flex-direction: column; /* Mobilde butonlar alt alta */
        align-items: flex-start;
    }

    .status-badge {
        width: 100%; /* Mobilde tam genişlik */
        justify-content: center;
    }
}
/* Özet İstatistikler Bölümü */
.summary-stats {
    padding: 80px 0;
    background-color: #f9f9f9; /* Hafif gri arka plan */
    text-align: center;
}

.stats-flex {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 30px;
}

.summary-item {
    flex: 1;
}

/* Büyük Turuncu Rakamlar */
.stat-number {
    font-size: 64px;
    font-weight: 900;
    color: #f37021;
    line-height: 1;
    margin-bottom: 15px;
    letter-spacing: -2px; /* Rakamların birbirine yakın durması için */
    transition: transform 0.3s ease;
}

/* Hover Efekti: Rakamların üzerine gelince hafif büyüme */
.summary-item:hover .stat-number {
    transform: scale(1.1);
}

.summary-item p {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    text-transform: none;
}

/* MOBİL UYUMLULUK */
@media (max-width: 768px) {
    .stats-flex {
        flex-direction: column; /* Mobilde alt alta */
        gap: 50px;
    }

    .stat-number {
        font-size: 48px; /* Mobilde biraz daha küçük rakamlar */
    }
}
/* Konumlar Sayfası Özel Navigasyon Butonu */
.btn-orange-small {
    background-color: #f37021;
    color: #fff;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: 0.3s;
    display: inline-block;
}

.btn-orange-small:hover {
    background-color: #d15d18;
    transform: scale(1.05);
}

/* Konumlar Sayfa Başlığı (Banner) */
.locations-banner {
    background-color: #242b38; /* Görseldeki koyu antrasit tonu */
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

.locations-banner h1 {
    font-size: 56px; /* Görseldeki gibi büyük ve heybetli */
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.locations-banner p {
    font-size: 18px;
    color: #99a1ad;
    font-weight: 300;
}

/* MOBİL UYUMLULUK */
@media (max-width: 992px) {
    .nav-cta {
        display: none; /* Mobilde yer kazanmak için sağ butonu gizleyebiliriz */
    }
}

@media (max-width: 768px) {
    .locations-banner h1 {
        font-size: 38px;
    }
    
    .locations-banner p {
        font-size: 16px;
    }

    .locations-banner {
        padding: 60px 20px;
    }
}
/* Genel */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; background: #fff; overflow-x: hidden; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Header */
header { background: #fff; height: 90px; display: flex; align-items: center; border-bottom: 1px solid #f2f2f2; }
.navbar { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.logo-text { font-size: 26px; font-weight: 800; color: #1a1c23; }
.orange { color: #f37021; }
.nav-links { display: flex; list-style: none; gap: 40px; }
.nav-links a { text-decoration: none; color: #555; font-size: 15px; font-weight: 500; }
.nav-links a.active { color: #f37021; border-bottom: 2px solid #f37021; padding-bottom: 5px; }
.btn-orange-header { background: #f37021; color: #fff; padding: 12px 30px; border-radius: 50px; text-decoration: none; font-weight: 700; font-size: 14px; }

/* Banner */
.locations-banner { background: #242b38; padding: 70px 0; text-align: center; color: #fff; }
.locations-banner h1 { font-size: 42px; font-weight: 800; margin-bottom: 10px; }
.locations-banner p { color: #9da3ad; font-size: 16px; font-weight: 300; }

/* Branch Detail */
.branch-detail { padding: 80px 0; }
.branch-label { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; }
.label-line { width: 35px; height: 2px; background: #f37021; }
.label-text { color: #f37021; font-weight: 700; font-size: 12px; letter-spacing: 1px; }
.branch-city { font-size: 54px; font-weight: 900; color: #1a1c23; letter-spacing: -2px; margin-bottom: 40px; }

/* Info Card */
.branch-info-card { 
    background: #fff; 
    border: 1px solid #f0f0f0; 
    border-radius: 20px 20px 0 0; 
    padding: 50px; 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 60px;
    border-bottom: none;
}
.card-header-flex { display: flex; align-items: center; gap: 15px; margin-bottom: 25px; }
.card-header-flex h3 { font-size: 26px; font-weight: 800; }
.badge-open { color: #2ecc71; font-weight: 600; font-size: 14px; }

.contact-info .info-row { display: flex; gap: 12px; align-items: center; margin-bottom: 15px; color: #666; font-size: 15px; }
.contact-info i { color: #f37021; }

.hours-section { margin-top: 40px; }
.hours-section h4 { font-size: 13px; color: #999; margin-bottom: 15px; letter-spacing: 1px; }
.hours-flex { display: flex; gap: 15px; }
.hour-item { background: #f8f9fa; padding: 15px 20px; border-radius: 12px; flex: 1; }
.hour-item .day { display: block; font-size: 12px; color: #888; margin-bottom: 5px; }
.hour-item .time { font-size: 16px; font-weight: 700; color: #333; }

.card-content-right h4 { font-size: 13px; color: #333; margin-bottom: 20px; letter-spacing: 1px; }
.amenities-list { list-style: none; }
.amenities-list li { margin-bottom: 12px; font-size: 14px; color: #666; display: flex; align-items: center; gap: 10px; }
.amenities-list i { color: #f37021; font-size: 12px; }

/* Map */
.map-box { position: relative; border: 1px solid #f0f0f0; border-radius: 0 0 20px 20px; }
.map-overlay-btn { position: absolute; top: 20px; left: 20px; }
.map-overlay-btn a { background: #fff; color: #333; text-decoration: none; padding: 10px 18px; border-radius: 4px; font-size: 13px; font-weight: 600; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }

/* WhatsApp */
.whatsapp-sticky { position: fixed; bottom: 30px; right: 30px; background: #25d366; color: #fff; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 32px; box-shadow: 0 5px 20px rgba(0,0,0,0.15); z-index: 1000; text-decoration: none; }

/* Responsive */
@media (max-width: 992px) {
    .nav-links, .nav-cta { display: none; }
    .branch-info-card { grid-template-columns: 1fr; padding: 30px; }
    .branch-city { font-size: 42px; }
    .hours-flex { flex-direction: column; }
}
/* Büyüyoruz Section Genel */
.upcoming-locations {
    padding: 100px 0;
    background-color: #fcfcfc;
    text-align: center;
}

.section-top {
    margin-bottom: 60px;
}

.label-yakinda {
    color: #f37021;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.label-yakinda::before {
    content: "";
    position: absolute;
    left: -40px;
    top: 50%;
    width: 30px;
    height: 2px;
    background-color: #f37021;
}

.section-title-large {
    font-size: 64px;
    font-weight: 900;
    color: #1a1c23;
    letter-spacing: -2px;
    margin: 15px 0;
}

.section-desc {
    color: #777;
    font-size: 16px;
    line-height: 1.6;
}

/* Kartlar Izgarası */
.upcoming-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Tekil Kart Tasarımı */
.upcoming-card {
    background: #fff;
    padding: 50px 30px;
    border-radius: 20px;
    border: 2px dashed #eee; /* Görseldeki kesikli çizgi */
    transition: 0.3s ease;
}

.upcoming-card:hover {
    border-color: #f37021;
    transform: translateY(-5px);
}

.card-icon {
    width: 70px;
    height: 70px;
    background-color: #fdeee5; /* Çok açık turuncu */
    color: #f37021;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 25px;
}

.upcoming-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1c23;
    margin-bottom: 10px;
}

.badge-yakinda {
    display: inline-block;
    background-color: #fff0e6;
    color: #f37021;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 20px;
    border: 1px solid #fdeee5;
}

.upcoming-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* MOBİL UYUMLULUK */
@media (max-width: 992px) {
    .upcoming-grid {
        grid-template-columns: 1fr 1fr; /* Tablette 2'li */
    }
    .section-title-large {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .upcoming-grid {
        grid-template-columns: 1fr; /* Mobilde tekli liste */
    }
    .section-title-large {
        font-size: 36px;
    }
    .upcoming-locations {
        padding: 60px 0;
    }
}
/* Ziyaret Edin CTA Alanı */
.visit-cta {
    background-color: #f37021; /* Ana turuncu renk */
    padding: 100px 0;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden; /* Dairelerin taşmaması için */
}

.visit-content {
    position: relative;
    z-index: 10; /* İçeriğin dairelerin üstünde kalması için */
}

.visit-cta h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.visit-cta p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
    font-weight: 400;
}

/* Beyaz Buton */
.btn-white-cta {
    background-color: #fff;
    color: #f37021;
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-white-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    background-color: #f8f8f8;
}

/* Arka Plan Dekoratif Daireler */
.circle-decor {
    position: absolute;
    width: 600px;
    height: 600px;
    background-color: rgba(255, 255, 255, 0.07); /* Hafif beyaz şeffaflık */
    border-radius: 50%;
    z-index: 1;
}

.circle-decor.left {
    left: -200px;
    top: -100px;
}

.circle-decor.right {
    right: -200px;
    bottom: -100px;
}

/* MOBİL UYUMLULUK */
@media (max-width: 768px) {
    .visit-cta {
        padding: 70px 20px;
    }

    .visit-cta h2 {
        font-size: 32px;
        line-height: 1.2;
    }

    .visit-cta p {
        font-size: 16px;
    }

    /* Mobilde daireleri küçültelim ki görüntüyü kapatmasın */
    .circle-decor {
        width: 300px;
        height: 300px;
    }
}
/* Ziyaret Edin CTA Alanı */
.visit-cta {
    background-color: #f37021; /* Ana turuncu renk */
    padding: 100px 0;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden; /* Dairelerin taşmaması için */
}

.visit-content {
    position: relative;
    z-index: 10; /* İçeriğin dairelerin üstünde kalması için */
}

.visit-cta h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.visit-cta p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
    font-weight: 400;
}

/* Beyaz Buton */
.btn-white-cta {
    background-color: #fff;
    color: #f37021;
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-white-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    background-color: #f8f8f8;
}

/* Arka Plan Dekoratif Daireler */
.circle-decor {
    position: absolute;
    width: 600px;
    height: 600px;
    background-color: rgba(255, 255, 255, 0.07); /* Hafif beyaz şeffaflık */
    border-radius: 50%;
    z-index: 1;
}

.circle-decor.left {
    left: -200px;
    top: -100px;
}

.circle-decor.right {
    right: -200px;
    bottom: -100px;
}

/* MOBİL UYUMLULUK */
@media (max-width: 768px) {
    .visit-cta {
        padding: 70px 20px;
    }

    .visit-cta h2 {
        font-size: 32px;
        line-height: 1.2;
    }

    .visit-cta p {
        font-size: 16px;
    }

    /* Mobilde daireleri küçültelim ki görüntüyü kapatmasın */
    .circle-decor {
        width: 300px;
        height: 300px;
    }
}
/* Süreç Bölümü Genel */
.step-details-section {
    padding: 100px 0;
    background-color: #fff;
}

.main-process-title {
    font-size: 48px;
    font-weight: 900;
    color: #1a1c23;
    letter-spacing: -2px;
    margin-bottom: 80px;
    text-align: center;
}

/* Adım Dizilimi */
.process-list {
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 40px;
    margin-bottom: 80px;
    padding-bottom: 60px;
    border-bottom: 1px solid #f0f0f0;
}

.process-step:last-child {
    border-bottom: none;
}

/* Turuncu Kareli Numaralar */
.step-square {
    width: 70px;
    height: 70px;
    background-color: #f37021;
    color: #fff;
    font-size: 32px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px; /* Hafif oval köşeli kare */
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(243, 112, 33, 0.2);
}

/* Metin İçerikleri */
.step-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1c23;
    margin-bottom: 20px;
}

.step-info p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Etiketler (Tags) */
.tag-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
}

.tag {
    background-color: #fff0e6;
    color: #f37021;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
}

/* MOBİL UYUMLULUK */
@media (max-width: 768px) {
    .process-step {
        flex-direction: column; /* Mobilde numara üste, metin alta */
        gap: 20px;
        text-align: left;
    }

    .main-process-title {
        font-size: 32px;
        margin-bottom: 50px;
    }

    .step-square {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .step-info h3 {
        font-size: 20px;
    }
}
/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background-color: #fcfcfc;
}

.faq-header {
    margin-bottom: 50px;
    text-align: left;
}

.faq-subtitle {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #f37021;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
}

.faq-line {
    width: 30px;
    height: 2px;
    background-color: #f37021;
}

.faq-title {
    font-size: 56px;
    font-weight: 900;
    color: #1a1c23;
    margin-top: 15px;
    letter-spacing: -2px;
}

/* Akordeon Yapısı */
.faq-wrapper {
    max-width: 900px;
}

.faq-item {
    border-bottom: 1px solid #eee;
}

.faq-question {
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: 0.3s;
}

.faq-question span {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

/* İkon Stilleri */
.faq-icon {
    width: 32px;
    height: 32px;
    background-color: #f5f5f5;
    color: #bbb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.3s ease;
}

/* Açık Durum (Active) */
.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-icon {
    background-color: #f37021; /* Görseldeki turuncu x kutusu */
    color: #fff;
    transform: rotate(45deg); /* + ikonunu x yapar */
}

.faq-answer {
    display: none; /* Varsayılan kapalı */
    padding-bottom: 30px;
}

.faq-answer p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
}

/* MOBİL UYUMLULUK */
@media (max-width: 768px) {
    .faq-title { font-size: 36px; }
    .faq-question span { font-size: 16px; padding-right: 15px; }
}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap');

body {
    background-color: #f9f9f9;
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
}

.faq-section {
    padding: 80px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.sub-title {
    text-align: center;
    color: #f37021;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.main-title {
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 50px;
}

.faq-list {
    border-top: 1px solid #ddd;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 25px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: #444;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #e67e22; /* Videodaki turuncu tonu */
}

.icon {
    font-size: 24px;
    transition: transform 0.3s ease;
    background: #eee;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.3s ease;
    background-color: transparent;
}

.faq-answer p {
    padding: 0 10px 25px 10px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 16px;
}

/* Aktif Durum Tasarımı */
.faq-item.active .faq-question {
    color: #e67e22;
}

.faq-item.active .icon {
    transform: rotate(45deg); /* Artı işaretini çarpıya çevirir */
    background-color: #e67e22;
    color: white;
}

.faq-item.active .faq-answer {
    max-height: 200px; /* İçeriğe göre ayarlanabilir */
}
/* Masaüstünde Hamburgeri Gizle */
.menu-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 40px;
    height: 35px;
    padding: 8px;
    border: 2px solid #f37021; /* İstediğiniz turuncu çerçeve */
    border-radius: 5px;
}

.menu-toggle .bar {
    height: 3px;
    width: 100%;
    background-color: #f37021; /* İstediğiniz turuncu çizgiler */
    border-radius: 10px;
    transition: all 0.3s ease;
}

/* Mobil Görünüm (992px altı) */
@media screen and (max-width: 992px) {
    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
    }

    .menu-toggle {
        display: flex; /* Mobilde butonu göster */
    }

    .nav-links {
        display: none; /* İlk başta menüyü gizle */
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 70px;
        left: 0;
        background-color: #fff;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    /* JavaScript ile 'active' klası eklendiğinde menü görünür */
    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        text-align: center;
        padding: 15px 0;
        border-bottom: 1px solid #eee;
    }
}
.info-section {
    padding: 80px 0;
    background-color: #fff;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* İki eşit sütun */
    gap: 60px;
    align-items: start;
}

/* Sol Taraf Metin Stilleri */
.info-text h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #333;
}

.info-text .orange {
    color: #f37021;
}

.info-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

/* Sağ Taraf Liste Stilleri */
.info-features h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #333;
}

.feature-item {
    display: flex;
    align-items: center;
    background-color: #f7f7f7; /* Hafif gri arka plan */
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 12px;
    transition: transform 0.2s ease;
}

.feature-item:hover {
    transform: translateX(5px);
}

.feature-item i {
    color: #f37021; /* Turuncu ikonlar */
    font-size: 20px;
    margin-right: 15px;
    width: 25px;
    text-align: center;
}

.feature-item span {
    font-size: 16px;
    font-weight: 500;
    color: #444;
}

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .info-grid {
        grid-template-columns: 1fr; /* Mobilde alt alta gelsin */
        gap: 40px;
        padding: 0 20px;
    }
    
    .info-text h2 {
        font-size: 28px;
    }
}
/* --- GENEL AYARLAR --- */
.orange { color: #f37021; }

/* --- NEDİR SECTİON STİLLERİ --- */
.info-section {
    padding: 80px 0;
    background-color: #fff;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.info-text h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #333;
}

.info-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

.info-features h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    background-color: #f7f7f7;
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 12px;
    transition: 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    background-color: #f0f0f0;
}

.feature-item i {
    color: #f37021;
    font-size: 20px;
    margin-right: 15px;
    width: 25px;
    text-align: center;
}

.feature-item span {
    font-weight: 500;
    color: #444;
}

/* --- YORUMLAR SECTİON STİLLERİ --- */
.testimonials-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.section-title {
    text-align: center;
    font-size: 32px;
    color: #333;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: #777;
    margin-bottom: 50px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: #fff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    transition: 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: #f37021;
}

.stars {
    color: #f37021;
    margin-bottom: 15px;
    font-size: 14px;
}

.comment {
    font-style: italic;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.client-info {
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.client-info h4 {
    font-size: 16px;
    color: #333;
    margin: 0;
}

/* --- MOBİL UYUMLULUK --- */
@media (max-width: 992px) {
    .info-grid, .testimonials-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
}