/* ==============================================
CSS Değişkenleri (Custom Properties)
==============================================
*/
:root {
    --font-family-sans: 'Poppins', sans-serif;
    --color-brand-bg: #1c1a30;
    --color-brand-text: #97c31a;
    --color-brand-card: #2a2f3c;
    --color-brand-secondary-text: #a0aec0;
    --color-white: #ffffff;
    --color-black-transparent-20: rgba(0, 0, 0, 0.2);
    --color-black-transparent-50: rgba(0, 0, 0, 0.5);
    --color-white-transparent-20: rgba(255, 255, 255, 0.2);
    --color-feature-tag-bg: rgba(42, 47, 60, 0.6);
}

/* ==============================================
Temel ve Genel Stiller
==============================================
*/
html {
    font-size: 80%; /* Genel font boyutunu ayarlar */
}

body {
    background-color: var(--color-brand-bg);
    color: var(--color-brand-secondary-text);
    font-family: var(--font-family-sans);
}

.container {
    max-width: 1200px;
}

.navbar-container {
    max-width: 1200px;
}

/* ==============================================
Bileşen Stilleri (Components)
==============================================
*/

/* Özellik Etiketleri */
.feature-tag {
    background-color: var(--color-feature-tag-bg);
    backdrop-filter: blur(16px);
    padding: 1rem 2rem;
    border-radius: 9999px;
    border: 1px solid var(--color-white-transparent-20);
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.4);
    white-space: nowrap;
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    color: var(--color-white);
    font-weight: 500;
}

.feature-point {
    position: absolute;
    z-index: 20;
}

/* Dil Değiştirme Butonları */
.lang-btn {
    color: var(--color-brand-secondary-text);
    transition: color 0.3s ease;
}
.lang-btn.active {
    color: var(--color-brand-text);
}

/* Resim Altı Gradyan */
.image-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(to top, var(--color-brand-bg), transparent);
    pointer-events: none;
    z-index: 15;
}

/* Neon Parlama Efektleri */
.svg-glow-container,
.card-grid-glow-container {
    position: relative;
}

.svg-glow-container::after,
.card-grid-glow-container::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--color-brand-text);
    border-radius: 50%;
    z-index: -1;
}

.svg-glow-container::after {
    width: 40%;
    height: 60%;
    filter: blur(80px);
    opacity: 0.3;
}

.card-grid-glow-container::after {
    width: 50%;
    height: 80%;
    filter: blur(100px);
    opacity: 0.25;
}

.svg-image,
.card-grid-glow-container > .grid {
    position: relative;
    z-index: 1;
}

/* Swiper Slider Stilleri */
.swiper-pagination-bullet {
    background-color: var(--color-brand-secondary-text);
    opacity: 0.8;
}
.swiper-pagination-bullet-active {
    background-color: var(--color-brand-text);
    opacity: 1;
}

.swiper-button-next, .swiper-button-prev {
    color: var(--color-brand-text);
    transition: all 0.3s ease;
    background: none;
    border: none;
    box-shadow: none;
    width: auto;
    height: auto;
}
.swiper-button-next:hover, .swiper-button-prev:hover {
    transform: scale(1.2);
    color: var(--color-brand-text);
    background: none;
    opacity: 1;
}
.swiper-button-next::after, .swiper-button-prev::after {
    font-size: 2.5rem; /* Ok boyutunu ayarlar */
    font-weight: 800;
}

/* SSS Tab Stilleri */
.faq-tab {
    background-color: transparent;
    color: var(--color-brand-secondary-text);
    border: 1px solid var(--color-brand-card);
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.faq-tab.active {
    background-color: var(--color-brand-card);
    color: var(--color-white);
    border-color: var(--color-brand-card);
}

.faq-content-wrapper {
    background-color: rgba(42, 47, 60, 0.8); /* Daha iyi okunabilirlik için opak arkaplan */
}

/* Form Elemanları */
.form-input::placeholder {
    color: var(--color-brand-secondary-text);
    opacity: 0.8;
}

/* Fiyat Kartı Tıklama Durumu */
.pricing-card-trigger.active {
    border-color: var(--color-brand-text);
    box-shadow: 0 0 20px rgba(151, 195, 26, 0.3);
}

.close-model-info {
    transition: color 0.3s ease;
}

/* Model Galerisi Swiper Stilleri (YENİ) */
.swiper-container-model {
    aspect-ratio: 16 / 10; /* Daha sinematik bir oran */
    background-color: var(--color-brand-card);
    border-radius: 8px;
}
.swiper-container-model .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16 / 10;
}
/* Model galerisi navigasyon butonlarını üste al */
.swiper-container-model .swiper-button-next,
.swiper-container-model .swiper-button-prev {
    z-index: 10;
    color: rgba(255, 255, 255, 0.7);
}
.swiper-container-model .swiper-button-next:hover,
.swiper-container-model .swiper-button-prev:hover {
    color: var(--color-white);
    transform: scale(1.1);
}
.swiper-container-model .swiper-button-next::after, 
.swiper-container-model .swiper-button-prev::after {
    font-size: 2rem; /* Model galerisi okları daha küçük */
}
.swiper-container-model .swiper-pagination-bullet-active {
    background-color: var(--color-brand-text);
}


/* Model Detay Penceresi Sekme Stilleri (YENİ) */
.model-tab-trigger.active {
    color: var(--color-brand-text);
    border-color: var(--color-brand-text) !important; /* Tailwind'in üzerine yazmak için */
    background-color: var(--color-brand-card);
}

/* Model Detay Tabloları (YENİ) */
.info-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--color-brand-card);
    border-radius: 8px;
    overflow: hidden;
    font-size: 1.15rem; /* Okunabilirliği artır */
}
.info-table th, .info-table td {
    padding: 14px 18px; /* Dolguyu artır */
    text-align: left;
    border-bottom: 1px solid var(--color-brand-bg);
}
.info-table th {
    background-color: rgba(0, 0, 0, 0.2);
    color: var(--color-white);
    font-weight: 600;
}
.info-table tr:last-child td {
    border-bottom: none;
}
.info-table tr:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.03);
}
.info-table td:first-child {
    color: var(--color-white);
    font-weight: 500;
}


/* ==============================================
Yardımcı Stiller (Utilities)
==============================================
*/

/* DÜZENLEME: Modal içi sekmeler için ince kaydırma çubuğu stilleri eklendi. */
.mobile-tab-bar::-webkit-scrollbar {
    height: 4px;
}
.mobile-tab-bar::-webkit-scrollbar-track {
    background: var(--color-brand-card);
    border-radius: 10px;
}
.mobile-tab-bar::-webkit-scrollbar-thumb {
    background-color: var(--color-brand-secondary-text); 
    border-radius: 10px;
}


/* Kaydırma Çubuğu (Scrollbar) */
::-webkit-scrollbar {
    width: 12px;
}
::-webkit-scrollbar-track {
    background: var(--color-brand-bg); 
}
::-webkit-scrollbar-thumb {
    background-color: var(--color-brand-card); 
    border-radius: 20px;
    border: 3px solid var(--color-brand-bg); 
}
::-webkit-scrollbar-thumb:hover {
    background-color: var(--color-brand-text);
}

/* ==============================================
Medya Sorguları (Media Queries)
==============================================
*/
@media (max-width: 1024px) {
    .feature-point {
        display: none;
    }
}

@media (max-width: 768px) {
    .swiper-button-next, .swiper-button-prev {
        display: none;
    }

    /* Model detay penceresindeki galeri navigasyonunu mobilde göster (YENİ) */
    .swiper-container-model .swiper-button-next,
    .swiper-container-model .swiper-button-prev {
        display: block;
    }

    /* Mobilde sekme başlıklarını küçült */
    .model-tab-trigger {
        font-size: 1rem;
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
}

