/* Genel Sıfırlamalar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #f8f9fa;
    font-family: 'Montserrat', sans-serif;
}

/* NAVBAR (EN ÜSTTEYKEN - ŞEFFAF) */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 0;
    background-color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease-in-out;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.nav-logo {
    text-decoration: none;
    z-index: 1001; 
}

.logo-text {
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.4s ease;
}

/* MENÜ LİNKLERİ (ESNEK YAPI EKLENDİ - SIĞMAMA SORUNU ÇÖZÜLDÜ) */
.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 2vw; 
}

.nav-menu ul li a {
    position: relative;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    font-size: 12px; 
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding-bottom: 6px;
    transition: color 0.3s ease;
}

.nav-menu ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #fff;
    transition: width 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.nav-menu ul li a:hover,
.nav-menu ul li a.active {
    color: #fff;
}

.nav-menu ul li a:hover::after,
.nav-menu ul li a.active::after {
    width: 100%;
}

/* Sağ Taraf (Dil + Menü) */
.nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
    z-index: 1001;
}

.lang-selector {
    display: flex;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.lang-selector a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.lang-selector a:hover,
.lang-selector a.active {
    color: #fff;
}

/* PREMİUM HAMBURGER İKONU */
.hamburger {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
}

.hamburger .bar {
    position: absolute;
    height: 2px;
    width: 100%;
    background-color: #fff;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    left: 0;
}

.hamburger .bar:nth-child(1) { top: 0; }
.hamburger .bar:nth-child(2) { top: 9px; width: 70%; right: 0; left: auto; } 
.hamburger .bar:nth-child(3) { top: 18px; }

.hamburger.active .bar:nth-child(1) { top: 9px; transform: rotate(45deg); }
.hamburger.active .bar:nth-child(2) { opacity: 0; width: 0; }
.hamburger.active .bar:nth-child(3) { top: 9px; transform: rotate(-45deg); }

/* NAVBAR (AŞAĞI KAYDIRINCA) */
.navbar.scrolled {
    background-color: #ffffff;
    padding: 18px 0;
    border-bottom: 1px solid #f0f0f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.navbar.scrolled .logo-text { color: #111; }
.navbar.scrolled .nav-menu ul li a { color: #555; } 
.navbar.scrolled .nav-menu ul li a::after { background-color: #111; }
.navbar.scrolled .nav-menu ul li a:hover,
.navbar.scrolled .nav-menu ul li a.active { color: #111; }
.navbar.scrolled .lang-selector a { color: #888; }
.navbar.scrolled .lang-selector a:hover,
.navbar.scrolled .lang-selector a.active { color: #111; }
.navbar.scrolled .hamburger .bar { background-color: #111; }

/* MENÜ AÇIKKEN KAYDIRMA EFEKTİNİ İPTAL ET (Siyah zemin üstüne beyaz yazılar için) */
.navbar.menu-open {
    background-color: transparent !important;
    border-bottom: none !important;
    box-shadow: none !important;
}
.navbar.menu-open .logo-text { color: #fff !important; }
.navbar.menu-open .hamburger .bar { background-color: #fff !important; }
.navbar.menu-open .lang-selector a { color: rgba(255,255,255,0.6) !important; }
.navbar.menu-open .lang-selector a.active { color: #fff !important; }

/* TAM EKRAN MENÜ (Tablet ve Laptoplarda erken devreye girecek: 1200px) */
@media (max-width: 1200px) {
    .hamburger { display: block; }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(10, 10, 10, 0.98); 
        display: flex;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1000;
    }
    
    .nav-menu.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-menu ul {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        transform: translateY(30px);
        transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    }

    .nav-menu.active ul {
        transform: translateY(0);
    }

    .nav-menu ul li a {
        font-size: 20px; 
        letter-spacing: 4px;
        color: #fff;
    }
    
    .nav-menu ul li a::after { display: none; }
}
/* SADECE TELEFONLAR İÇİN LOGO VE BOŞLUK AYARI */
@media (max-width: 576px) {
    .logo-text {
        font-size: 16px; /* Ekrana sığması için küçültüldü */
        letter-spacing: 1px; /* Aralık daraltıldı */
        white-space: nowrap; /* KESİNLİKLE ALT SATIRA GEÇMEYİ YASAKLAR */
    }
    
    .nav-container {
        padding: 0 15px; /* Mobilde sağdan soldan boşluğu azalt */
    }
    
    .nav-right {
        gap: 15px; /* Dil butonu ile hamburger ikonunu birbirine yaklaştır */
    }
    
    .lang-selector {
        font-size: 11px; /* Mobilde dil seçici biraz daha kibar dursun */
    }
}

/* =========================================
   HERO SLIDER (YENİ EFEKTLER VE İKONLAR)
========================================= */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: #000; /* Geçişlerde arkada kalan siyah zemin */
}

/* Slayt Konteyneri - Artık kaymıyor, üst üste biniyor */
.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0; /* Başlangıçta gizli */
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out; /* Pürüzsüz fade efekti */
    z-index: 1;
}

/* Aktif Slayt */
.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2; /* Diğerlerinin üstüne çıkar */
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    /* Hafif zoom animasyonu için */
    transform: scale(1.1);
    transition: transform 1.2s ease-in-out;
}

.slide.active img {
    transform: scale(1); /* Slayt aktif olunca zoom sıfırlanır */
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0.5) 100%);
    z-index: 2;
}

/* Slider Yazıları - Animasyonlar korundu */
.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 3;
    color: #fff;
    width: 90%;
    max-width: 1000px;
}

.slide-subtitle {
    display: block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.8);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.6s;
}

.slide-title {
    font-size: 60px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.8s;
}

.slide.active .slide-subtitle,
.slide.active .slide-title {
    opacity: 1;
    transform: translateY(0);
}

/* YENİ PREMIUM OK BUTONLARI */
/* YENİ PREMIUM OK BUTONLARI (Ana Slider) */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.1); /* Hafif şeffaf beyaz daire */
    backdrop-filter: blur(5px); /* Arkadaki fotoğrafı buzlandırır */
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%; /* Tam yuvarlak */
    cursor: pointer;
    z-index: 10;
    width: 60px; /* Daire boyutu */
    height: 60px;
    padding: 0;
    
    /* Senin ok görselin artık dairenin tam ortasında küçük ve zarif duracak */
    background-image: url('../img/right-arrow.png');
    background-size: 35%; /* Ok görselini küçülttük ki premium dursun */
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.4s ease;
}

.slider-btn:hover {
    background-color: #fff; /* Üzerine gelince daire bembeyaz olur */
    border-color: #fff;
    /* İstersen siyah ok versiyonun varsa onu da hoverda değiştirebilirsin */
}

/* Sağ Ok */
.next-btn {
    right: 3vw; /* Ekrana göre dinamik boşluk */
}

/* Sol Ok */
.prev-btn {
    left: 3vw;
    transform: translateY(-50%) rotate(180deg);
}

/* Mobilde Düzenlemeler */
@media (max-width: 768px) {
    .slide-title { font-size: 32px; letter-spacing: 1px; }
    .slide-subtitle { font-size: 11px; letter-spacing: 2px; margin-bottom: 10px; }
    
    .slider-btn {
        width: 35px;
        height: 35px;
    }
    .prev-btn { left: 15px; }
    .next-btn { right: 15px; }
}

/* =========================================
   PAKETLER BÖLÜMÜ
========================================= */
.packages-section {
    padding: 100px 5%;
    background-color: #fcfcfc;
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #111;
}

.section-line {
    width: 60px;
    height: 3px;
    background-color: #111;
    margin: 15px auto;
}

.section-subtitle {
    font-size: 14px;
    color: #666;
    letter-spacing: 1px;
}

/* Paket Dış Kaydırma Okları */
.pkg-navigation {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-bottom: 20px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.pkg-nav-btn {
    width: 45px;
    height: 45px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    color: #111;
    transition: all 0.3s ease;
}

.pkg-nav-btn:hover {
    background-color: #111;
    color: #fff;
    border-color: #111;
}

/* Paket Kaydırma Alanı */
.packages-track {
    display: flex;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding-bottom: 30px;
}

/* Scrollbar Gizleme */
.packages-track::-webkit-scrollbar { display: none; }
.packages-track { -ms-overflow-style: none; scrollbar-width: none; }

/* PAKET KARTI TASARIMI */
.package-card {
    min-width: 380px;
    max-width: 380px;
    background: #fff;
    border-radius: 2px; /* Keskin elit hatlar */
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    scroll-snap-align: start;
    transition: transform 0.4s ease;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* İç Fotoğraf Slider'ı */
.pkg-img-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.pkg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.pkg-img.active { opacity: 1; z-index: 2; }

/* İç Slider Okları (Fotoğraf Üzerindeki) */
.pkg-inner-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.8);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 5;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pkg-img-wrapper:hover .pkg-inner-btn { opacity: 1; }
.pkg-inner-btn:hover { background: #fff; color: #111; }
.pkg-inner-prev { left: 10px; }
.pkg-inner-next { right: 10px; }

/* Kart İçeriği */
.pkg-info { padding: 30px; }

.pkg-title {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.pkg-price {
    font-size: 24px;
    font-weight: 600;
    color: #555;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.pkg-features {
    list-style: none;
    margin-bottom: 30px;
}

.pkg-features li {
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pkg-features li i { color: #111; font-size: 11px; }

/* Butonlar */
.pkg-actions {
    display: flex;
    gap: 10px;
}

.btn {
    flex: 1;
    padding: 12px 0;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.btn-whatsapp {
    background-color: #111;
    color: #fff;
}
.btn-whatsapp:hover { background-color: #333; }

.btn-cart {
    background-color: transparent;
    color: #111;
    border: 1px solid #111;
}
.btn-cart:hover {
    background-color: #f0f0f0;
}

/* =========================================
   YÜZEN SEPET BUTONU
========================================= */
.floating-cart {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background-color: #111;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    z-index: 999;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    visibility: hidden; /* Sepet boşken gizli dursun */
    opacity: 0;
}

.floating-cart.visible {
    visibility: visible;
    opacity: 1;
}

.floating-cart:hover {
    transform: scale(1.1);
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #e74c3c; /* Dikkat çekici kırmızı ufak nokta */
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #fff;
}

@media (max-width: 768px) {
    .package-card { min-width: 300px; max-width: 300px; }
    .floating-cart { bottom: 20px; right: 20px; width: 50px; height: 50px; font-size: 20px; }
}

/* =========================================
   ÖNEMLİ SAATLER (MİNİMAL BEYAZ TASARIM)
========================================= */
.important-times-clean {
    padding: 120px 5%;
    background-color: #ffffff; /* Bembeyaz profesyonel zemin */
}

.times-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* === BAŞLIK === */
.times-header-clean {
    text-align: center;
    margin-bottom: 70px;
}

.clean-title {
    font-size: 32px;
    font-weight: 700;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.clean-line {
    width: 40px;
    height: 2px;
    background-color: #111;
    margin: 0 auto 20px;
}

.clean-subtitle {
    font-size: 14px;
    color: #666;
    letter-spacing: 1px;
}

/* === KARTLAR === */
.times-grid-clean {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.clean-card {
    background-color: #fff;
    border: 1px solid #eaeaea; /* Çok ince gri çerçeve */
    padding: 60px 30px;
    text-align: center;
    transition: all 0.3s ease; /* Abartısız yumuşak geçiş */
}

/* Profesyonel Hover: Sadece hafif bir gölge ve 5px yukarı kalkma */
.clean-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
    border-color: #e0e0e0;
}

/* İkonlar */
.clean-icon {
    font-size: 30px;
    color: #111;
    margin-bottom: 25px;
    opacity: 0.8;
}

/* Etiket */
.clean-label {
    font-size: 12px;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

/* Saat Değeri */
.clean-time {
    font-size: 48px;
    font-weight: 300; /* İnce ve zarif rakamlar */
    color: #111;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

/* Açıklama */
.clean-desc {
    font-size: 13px;
    color: #777;
}

/* Ortadaki Balon Kartı Vurgusu */
.highlight-clean {
    border-top: 3px solid #111; /* Sadece üstte siyah kalın bir çizgi ile kurumsal vurgu */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
}

/* MOBİL UYUM */
@media (max-width: 992px) {
    .times-grid-clean {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .clean-card {
        padding: 40px 20px;
    }
}
/* =========================================
   GALERİ BÖLÜMÜ
========================================= */
.gallery-section {
    padding: 100px 5%;
    background-color: #fafafa;
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    /* Yan yana 4 dikey fotoğraf sığdıracak esnek yapı */
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px; /* Fotoğraflar arası ince profesyonel boşluk */
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    /* Sadece dikey fotoğraflar olacağı için 3:4 oranı sabitliyoruz */
    aspect-ratio: 3 / 4; 
    background-color: #eee;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gallery-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-overlay i {
    color: #fff;
    font-size: 24px;
    transform: scale(0.5);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05); /* Klasik hafif zoom */
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* =========================================
   LIGHTBOX (TAM EKRAN GÖRÜNTÜLEYİCİ)
========================================= */
.lightbox {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(10, 10, 10, 0.95); /* Çok koyu gri/siyah zemin */
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh; /* Ekrana sığması için */
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain; /* Fotoğrafın en-boy oranını bozmadan ekrana sığdırır */
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: #d4af37; /* Kapatma butonuna hafif bir lüks renk dokunuşu */
}

.lightbox-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    padding: 20px;
    transition: color 0.3s ease;
    z-index: 10000;
}

.lightbox-btn:hover {
    color: #d4af37;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* Mobilde Galeri Ayarları */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr); /* Telefondan girince yan yana 2 tane göster */
        gap: 10px;
    }
    .lightbox-btn { font-size: 25px; padding: 10px; }
    .lightbox-prev { left: 0; }
    .lightbox-next { right: 0; }
    .lightbox-close { top: 15px; right: 20px; }
}
/* =========================================
   SIKÇA SORULAN SORULAR (FAQ)
========================================= */
.faq-section {
    padding: 100px 5%;
    background-color: #fafafa;
}

.faq-container {
    max-width: 800px; /* Okumayı kolaylaştırmak için dar tutuldu */
    margin: 0 auto;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: #111;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #fdfdfd;
}

.faq-question i {
    font-size: 14px;
    color: #666;
    transition: transform 0.4s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.faq-answer p {
    padding: 0 30px 25px 30px;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* SSS Açık Durum Sınıfları */
.faq-item.active {
    border-color: #111;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg); /* Artıyı çarpı yapar */
    color: #111;
}


/* =========================================
   MÜŞTERİ YORUMLARI (GOOGLE REVIEWS)
========================================= */
.reviews-section {
    padding: 100px 5%;
    background-color: #fff;
}

.reviews-container {
    max-width: 1400px;
    margin: 0 auto;
}

.reviews-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 40px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
}

/* Scrollbar Gizleme */
.reviews-track::-webkit-scrollbar { display: none; }
.reviews-track { -ms-overflow-style: none; scrollbar-width: none; }

.review-card {
    min-width: 350px;
    max-width: 350px;
    background: #fff;
    border: 1px solid #eaeaea;
    padding: 30px;
    border-radius: 8px;
    scroll-snap-align: start;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-avatar {
    width: 45px;
    height: 45px;
    background-color: #1a73e8; /* Google Mavisi */
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 20px;
    font-weight: 600;
}

.reviewer-name {
    font-size: 15px;
    font-weight: 600;
    color: #111;
    margin-bottom: 5px;
}

.review-stars i {
    color: #fbbc04; /* Google Sarısı */
    font-size: 12px;
}

.review-text {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.review-date {
    font-size: 12px;
    color: #999;
}

@media (max-width: 768px) {
    .review-card { min-width: 300px; max-width: 300px; padding: 25px; }
}