/* ==========================================================================
   BDM NUTRITION DESIGN SYSTEM & STYLESHEET
   Theme: Premium Siyaha Yakın & Lüks Altın (Near-Black & Gold)
   ========================================================================== */

/* 1. Tasarım Değişkenleri & Ayarlar */
:root {
    /* Renk Paleti (Premium Monochromatic Black & White) */
    --bg-darker: #000000;      /* Saf siyah */
    --bg-dark: #08080c;        /* Siyaha yakın derin kömür rengi */
    --bg-card: #121216;        /* Çok koyu metalik kart rengi */
    --bg-card-hover: #18181f;  /* Kartların üzerine gelindiğindeki ton */
    
    --primary: #ffffff;        /* Asil Saf Beyaz */
    --secondary: #a3a3a8;      /* Mat Gümüş / Açık Gri */
    --primary-glow: rgba(255, 255, 255, 0.15);
    --secondary-glow: rgba(163, 163, 168, 0.1);
    
    /* Metin Renkleri */
    --text-white: #ffffff;     /* Beyaz */
    --text-light: #e5e5eb;     /* Açık gümüş rengi genel metin */
    --text-muted: #88888f;     /* Soluk metalik gri metinler */
    
    /* Durum Renkleri */
    --success: #ffffff;        /* Siyah/beyaz konseptiyle uyumlu durumlar */
    --warning: #a3a3a8;
    --danger: #ef4444;
    
    /* Sınırlar & Cam Efektleri */
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.35);
    --glass-bg: rgba(8, 8, 12, 0.85);
    --glass-border: rgba(255, 255, 255, 0.05);
    
    /* Yazı Tipleri */
    --font-heading: 'Outfit', 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Geçiş Efektleri */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bouncy: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* 2. Temel Sıfırlamalar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-darker);
    color: var(--text-light);
    font-family: var(--font-body);
    transition: background-color 0.4s ease, color 0.4s ease;
}

body {
    overflow-x: hidden;
    line-height: 1.6;
    background: radial-gradient(circle at 50% 0%, var(--bg-card) 0%, var(--bg-dark) 60%, var(--bg-darker) 100%);
    background-attachment: fixed;
    transition: background 0.4s ease;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Scrollbar Özelleştirme */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Tipografi & Genel Sınıflar */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-white);
    font-weight: 700;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight {
    color: var(--secondary);
}

.d-none {
    display: none !important;
}

/* Buton Stilleri */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-bouncy);
    text-align: center;
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 1rem 2.25rem;
    font-size: 1.1rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-primary {
    background-color: var(--bg-card);
    border-color: var(--border-color);
    color: var(--text-white);
}

.btn-primary:hover {
    background-color: var(--bg-card-hover);
    border-color: var(--primary);
    box-shadow: 0 0 15px var(--primary-glow);
    transform: translateY(-2px);
}

.btn-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--bg-darker);
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.2);
}

.btn-gradient:hover {
    box-shadow: 0 6px 20px rgba(217, 119, 6, 0.4), 0 0 15px var(--secondary-glow);
    transform: translateY(-3px) scale(1.02);
}

.btn-outline {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.08) 0%, rgba(255, 215, 0, 0.08) 100%);
    color: var(--text-white);
    box-shadow: 0 0 15px var(--primary-glow);
    transform: translateY(-2px);
}

.text-danger {
    color: var(--danger) !important;
}

/* 3. Header & Navigasyon (Sıkışıklık Düzeltildi) */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 1000;
    background: rgba(9, 9, 14, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.light-theme .main-header {
    background: rgba(255, 255, 255, 0.95);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 1.5rem;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--text-white);
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.15rem;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--text-muted);
    font-size: 0.92rem;
    padding: 0.4rem 0.35rem;
    position: relative;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: var(--transition-smooth);
}

.nav-link:hover, .nav-link.active {
    color: var(--text-white);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* User Profil & Auth Alanı */
.header-auth-wrapper {
    position: relative;
    flex-shrink: 0;
}

.header-auth {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-profile-badge {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.4rem 0.8rem;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: var(--transition-smooth);
    user-select: none;
}

.user-profile-badge:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--primary);
    box-shadow: 0 0 10px var(--primary-glow);
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--bg-darker);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    overflow: hidden;
    flex-shrink: 0;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-info {
    display: flex;
    flex-direction: column;
}

.user-name {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-white);
    max-width: 120px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-status {
    font-size: 0.68rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.user-status.verified {
    color: var(--secondary);
}

/* Profil Açılır Menüsü (Dropdown) */
.profile-dropdown {
    position: absolute;
    top: 52px;
    right: 0;
    width: 220px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 0.75rem 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
    display: none;
    z-index: 1100;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0;
}

.profile-dropdown.active {
    display: block;
    transform: translateY(0);
    opacity: 1;
}

.dropdown-header {
    padding: 0.5rem 1.25rem 0.75rem;
    display: flex;
    flex-direction: column;
}

.dropdown-user-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-white);
}

.dropdown-user-email {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.dropdown-divider {
    border: none;
    border-top: 1px solid var(--border-color);
    margin: 0.4rem 0;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 1.25rem;
    font-size: 0.88rem;
    color: var(--text-light);
    transition: var(--transition-smooth);
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.04);
    color: var(--secondary);
}

.dropdown-item i {
    width: 16px;
    height: 16px;
    color: var(--text-muted);
}

.dropdown-item:hover i {
    color: var(--secondary);
}

/* Mobil Menü Butonu */
.mobile-nav-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
    flex-shrink: 0;
}

/* 4. Hero Section */
.hero-section {
    padding-top: 160px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.badge-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(217, 119, 6, 0.08);
    border: 1px solid rgba(217, 119, 6, 0.15);
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 30px;
    margin-bottom: 1.5rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(217, 119, 6, 0.7);
    animation: pulse 1.6s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(217, 119, 6, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(217, 119, 6, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(217, 119, 6, 0);
    }
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 580px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    width: 100%;
}

.hero-highlights {
    display: flex;
    gap: 2rem;
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    width: 100%;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-light);
}

.icon-mint {
    color: var(--primary);
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    width: 95%;
    height: 95%;
    object-fit: cover;
    border-radius: 24px;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.hero-image-glow {
    position: absolute;
    top: 5%;
    left: 5%;
    width: 90%;
    height: 90%;
    border-radius: 24px;
    background: transparent;
    box-shadow: 0 0 30px 2px var(--primary-glow), 0 0 50px -5px var(--secondary-glow);
    z-index: 1;
    pointer-events: none;
    animation: neonGlowPulse 4s ease-in-out infinite alternate;
}

@keyframes neonGlowPulse {
    0% {
        box-shadow: 0 0 25px 2px var(--primary-glow), 0 0 45px -5px var(--secondary-glow);
    }
    100% {
        box-shadow: 0 0 40px 5px var(--primary-glow), 0 0 65px 5px var(--secondary-glow);
    }
}

/* 5. Ortak Section Tasarımları */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-subtitle {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.section-title {
    font-size: 2.5rem;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
    position: relative;
}

.section-desc-main {
    max-width: 650px;
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* 6. Hizmetlerimiz (Services) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(217, 119, 6, 0.08);
}

.service-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    border: 1px solid rgba(217, 119, 6, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--bg-darker);
    border-color: transparent;
    transform: scale(1.05);
}

.service-card-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.service-card-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* 7. Eğitimlerimiz (Trainings) */
.trainings-container {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.training-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    align-items: center;
}

.training-row.reverse {
    direction: rtl;
}

.training-row.reverse .training-details-column {
    direction: ltr;
}

.training-row.reverse .training-image-column {
    direction: ltr;
}

.training-image-column {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 1.4/1;
    border: 1px solid var(--border-color);
}

.training-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.training-image-column::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(9, 9, 14, 0.4), transparent);
    pointer-events: none;
}

.training-row:hover .training-img {
    transform: scale(1.05);
}

.training-details-column {
    display: flex;
    flex-direction: column;
}

.training-cat-title {
    font-size: 2rem;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.training-cat-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.training-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.training-item-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    transition: var(--transition-smooth);
}

.training-item-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--border-hover);
    transform: translateX(6px);
}

.training-row.reverse .training-item-card:hover {
    transform: translateX(-6px);
}

.training-item-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.training-item-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* 8. Koçluk Paketleri (Pricing Packages) */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}

.package-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 3rem 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-smooth);
}

.package-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.package-card.popular {
    border: 2px solid var(--primary);
    background: radial-gradient(circle at 50% 0%, rgba(217, 119, 6, 0.12) 0%, rgba(18, 18, 26, 0.8) 70%);
    box-shadow: 0 10px 30px rgba(217, 119, 6, 0.05);
}

.package-card.popular:hover {
    box-shadow: 0 15px 40px rgba(217, 119, 6, 0.2), 0 0 20px var(--primary-glow);
    border-color: var(--secondary);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--bg-darker);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.35rem 1.2rem;
    border-radius: 30px;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.package-card-header {
    text-align: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.5rem;
}

.package-name {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.package-price {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.package-price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    margin-left: 0.25rem;
}

.package-price-discounted {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.package-price-discounted .price-old {
    font-size: 1.25rem;
    text-decoration: line-through;
    color: var(--text-muted);
    opacity: 0.7;
    font-weight: 500;
}

.package-price-discounted .price-new {
    font-size: 2.75rem;
    font-weight: 800;
    color: #fbbf24;
    text-shadow: 0 0 15px rgba(251, 191, 36, 0.35);
    line-height: 1;
}

.package-price-discounted .price-new .currency {
    font-size: 1.5rem;
    font-weight: 600;
    margin-left: 0.25rem;
}

.package-duration {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.package-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.package-features li {
    font-size: 0.9rem;
    color: var(--text-light);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    line-height: 1.4;
}

.package-features li i {
    flex-shrink: 0;
    color: var(--primary);
    width: 18px;
    height: 18px;
}

/* 9. Modallar & Ayarlar Arayüzü (Mobil Uyum & Dikey Kaydırma Düzeltildi) */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 8, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    padding: 1rem; /* Mobilde taşma tamponu */
}

#confirmModal {
    z-index: 2200; /* Onay modallarının her zaman diğer modalların üstünde görünmesi için */
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2.5rem;
    width: 100%;
    max-width: 500px;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(217, 119, 6, 0.05);
    
    /* Mobil Uyumlu Maksimum Yükseklik ve Kaydırma Barı */
    max-height: 90vh;
    overflow-y: auto;
}

.modal-overlay.active .modal-box {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    z-index: 10;
}

.modal-close:hover {
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.05);
}

.modal-title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.modal-desc {
    color: var(--text-muted);
    text-align: center;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

/* Ayarlar Modalı Yapısı */
.settings-modal-box {
    max-width: 480px;
}

.settings-content {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.settings-section-block {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.25rem;
}

.settings-section-block h4 {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
}

.settings-section-block h4 i {
    width: 18px;
    height: 18px;
}

/* Tema Seçim Switcher */
.theme-switch-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.switch-toggle {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 26px;
}

.switch-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider-round {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cbd5e1;
    transition: .4s;
    border-radius: 34px;
}

.slider-round:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider-round {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

input:checked + .slider-round:before {
    transform: translateX(26px);
}

.active-dark-label {
    font-weight: 600;
    color: var(--secondary);
}

/* Profil Resmi Ayarı */
.profile-pic-settings {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.settings-avatar-preview {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--bg-darker);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    overflow: hidden;
    border: 2px solid var(--border-color);
    flex-shrink: 0;
}

.settings-avatar-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-pic-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.file-upload-btn-label {
    margin-bottom: 0;
}

/* Tehlikeli Bölge */
.danger-zone {
    border-color: rgba(239, 68, 68, 0.2);
    background: rgba(239, 68, 68, 0.02);
}

.danger-zone h4 {
    color: var(--danger) !important;
}

.danger-zone-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin-bottom: 1rem;
}

/* Form Elemanları */
.form-group {
    margin-bottom: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.col-6 {
    width: 50%;
}

label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="date"],
input[type="time"],
select,
textarea {
    width: 100%;
    background: rgba(5, 5, 8, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0.85rem 1rem;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.light-theme input, .light-theme select, .light-theme textarea {
    background: rgba(255, 255, 255, 0.8);
    color: #0f172a;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(5, 5, 8, 0.9);
    box-shadow: 0 0 10px rgba(217, 119, 6, 0.15);
}

.light-theme input:focus, .light-theme select:focus, .light-theme textarea:focus {
    background: #ffffff;
}

/* Üyelik Formuna Özel Stiller */
.auth-modal-box {
    max-width: 420px;
}

.auth-tabs {
    display: flex;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

.auth-tab-btn {
    width: 50%;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 0.75rem 0;
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.auth-tab-btn.active {
    color: var(--secondary);
    border-color: var(--secondary);
}

.auth-form {
    display: none;
}

.auth-form.active {
    display: flex;
    flex-direction: column;
}

.auth-helper {
    text-align: right;
    margin-bottom: 1.5rem;
}

.forgot-pass-link {
    font-size: 0.8rem;
    color: var(--primary);
}

.forgot-pass-link:hover {
    color: var(--secondary);
    text-decoration: underline;
}

.auth-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.form-header-back {
    margin-bottom: 1rem;
}

.btn-back {
    background: transparent;
    border: none;
    color: var(--primary);
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
}

.auth-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem 0;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.auth-divider::before, .auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-color);
}

.auth-divider span {
    padding: 0 0.75rem;
}

.btn-google {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--border-color);
    color: var(--text-white);
}

.btn-google:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--text-muted);
}

.google-icon {
    width: 18px;
    height: 18px;
}

/* 10. Ödeme Modülü & Kredi Kartı */
.payment-modal-box {
    max-width: 480px;
}

.payment-flow-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

/* Kredi Kartı Tasarımı */
.credit-card-preview {
    perspective: 1000px;
    width: 100%;
    aspect-ratio: 1.58/1;
}

.card-inner {
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    position: relative;
}

.card-front {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    background: linear-gradient(135deg, #13131c 0%, #050508 100%);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    overflow: hidden;
}

.card-front::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -30%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(217, 119, 6, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.card-chip {
    width: 40px;
    height: 30px;
    background: linear-gradient(135deg, #e2e8f0 0%, #94a3b8 100%);
    border-radius: 6px;
    position: relative;
}

.card-number-label {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    letter-spacing: 2px;
    color: var(--text-white);
    margin: 1.5rem 0;
    text-align: center;
}

.card-holder-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.card-meta {
    font-size: 0.6rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 0.25rem;
}

.card-name-label, .card-expiry-label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-white);
    text-transform: uppercase;
    max-width: 130px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 11. Yapay Zeka Araçları (AI Tools) */
.ai-tabs-container {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.ai-tabs-header {
    display: flex;
    gap: 1rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.ai-tab-btn {
    background: transparent;
    border: none;
    border-radius: 12px;
    padding: 0.85rem 1.5rem;
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: var(--transition-smooth);
}

.ai-tab-btn:hover {
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.02);
}

.ai-tab-btn.active {
    color: var(--bg-darker);
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    box-shadow: 0 4px 15px var(--primary-glow);
}

.ai-tab-panel {
    display: none;
}

.ai-tab-panel.active {
    display: block;
}

.ai-tool-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

/* Dosya Yükleme Dropzone */
.upload-dropzone {
    width: 100%;
    aspect-ratio: 1.4/1;
    border: 2px dashed var(--border-color);
    border-radius: 18px;
    background: rgba(5, 5, 8, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-smooth);
    margin-bottom: 1.5rem;
}

.upload-dropzone:hover {
    border-color: var(--primary);
    background: rgba(5, 5, 8, 0.6);
}

.file-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 5;
}

.dropzone-prompt {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.upload-icon {
    width: 48px;
    height: 48px;
    color: var(--primary);
    margin-bottom: 1rem;
}

.dropzone-prompt h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.dropzone-prompt p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.upload-note {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Yüklenen Görselin Önizlemesi */
.dropzone-preview {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 4;
}

.dropzone-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn-remove-file {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.9);
    border: none;
    color: var(--text-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--transition-smooth);
}

.btn-remove-file:hover {
    background: var(--danger);
    transform: scale(1.1);
}

/* AI Sonuç Sütunu */
.ai-results-column {
    background: rgba(5, 5, 8, 0.4);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.ai-placeholder-result, .ai-loading-result {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.ai-loading-result {
    display: none;
}

.placeholder-icon {
    width: 56px;
    height: 56px;
    color: var(--text-muted);
    margin-bottom: 1rem;
    opacity: 0.6;
}

.ai-placeholder-result h3, .ai-loading-result h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.ai-placeholder-result p, .ai-loading-result p {
    font-size: 0.9rem;
    color: var(--text-muted);
    max-width: 320px;
}

/* Tarama Animasyonu */
.scan-bar-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), transparent);
    box-shadow: 0 0 15px var(--primary);
    animation: scan 2s linear infinite;
    display: none;
}

@keyframes scan {
    0% { top: 0%; }
    50% { top: 100%; }
    100% { top: 0%; }
}

.spinner {
    width: 45px;
    height: 45px;
    border: 3px solid rgba(217, 119, 6, 0.1);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1.5rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Gerçek AI Rapor Görünümü */
.ai-actual-result {
    width: 100%;
    display: none;
}

.report-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.report-header i {
    color: var(--secondary);
}

.report-header h4 {
    font-size: 1.2rem;
}

.body-metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.metric-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem;
}

.metric-box-title {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.25rem;
}

.metric-box-value {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-white);
}

.metric-box-value.teal {
    color: var(--primary);
}

.report-section-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.report-advice-box {
    background: rgba(217, 119, 6, 0.03);
    border: 1px solid rgba(217, 119, 6, 0.1);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.report-advice-box p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* Kalori Makro Raporu */
.calorie-total-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(217, 119, 6, 0.03);
    border: 1px solid rgba(217, 119, 6, 0.1);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
}

.cal-number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
}

.macros-flex-container {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.macro-circle-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: 30%;
}

.macro-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

.macro-circle.protein { border-color: #f43f5e; color: #f43f5e; }
.macro-circle.carbs { border-color: #3b82f6; color: #3b82f6; }
.macro-circle.fat { border-color: #eab308; color: #eab308; }

.macro-name {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.macro-val {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-white);
}

/* 12. Yenilenmiş Randevu Form Stilleri */
.booking-form-wrapper-flat {
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: var(--transition-smooth);
}

.appointment-form-flat {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-flat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.form-flat-col {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group-flat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group-flat label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
}

.form-group-flat input,
.form-group-flat select,
.form-group-flat textarea {
    width: 100%;
    background-color: rgba(5, 5, 8, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.light-theme .form-group-flat input,
.light-theme .form-group-flat select,
.light-theme .form-group-flat textarea {
    background-color: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 0, 0, 0.1);
    color: #0f172a;
}

.form-group-flat input:focus,
.form-group-flat select:focus,
.form-group-flat textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 10px var(--primary-glow);
}

.full-width-flat {
    width: 100%;
}

/* Randevu Gönder Butonu (Gold/Sarı Degrade) */
.btn-flat-submit {
    background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
    color: #050508;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    border-radius: 8px;
    padding: 0.9rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.25);
    transition: var(--transition-bouncy);
    text-transform: uppercase;
}

.btn-flat-submit:hover {
    box-shadow: 0 6px 20px rgba(217, 119, 6, 0.45), 0 0 15px rgba(255, 215, 0, 0.25);
    transform: translateY(-2px);
}

/* Randevularım Alt Liste */
.user-appointments-section {
    margin-top: 4rem;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
}

.sub-section-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.appointments-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.appointment-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.app-details {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.app-meta-box {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-white);
}

.app-meta-box i {
    color: var(--primary);
}

.app-goal {
    font-size: 0.8rem;
    background: rgba(217, 119, 6, 0.1);
    color: var(--secondary);
    padding: 0.25rem 0.6rem;
    border-radius: 20px;
    font-weight: 600;
}

.btn-cancel-app {
    background: transparent;
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: var(--danger);
    font-size: 0.8rem;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-cancel-app:hover {
    background: var(--danger);
    color: var(--text-white);
}

/* 13. Sonsuz Kayan Marka Bandı */
.brands-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.01);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.brands-section-title {
    text-align: center;
    font-size: 1rem;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.marquee-wrapper {
    overflow: hidden;
    width: 100%;
    margin-bottom: 3.5rem;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: scrollMarquee 25s linear infinite;
}

.marquee-content {
    display: flex;
    gap: 6rem;
    padding-right: 6rem;
}

.brand-item {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-muted);
    opacity: 0.4;
    transition: var(--transition-smooth);
    letter-spacing: 1px;
}

.brand-item:hover {
    opacity: 0.95;
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary-glow);
}

@keyframes scrollMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* İndirim Kuponu Kartı */
.coupon-box-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.coupon-box-card::after {
    content: '';
    position: absolute;
    right: -100px;
    bottom: -100px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(217, 119, 6, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.coupon-icon-col {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(217, 119, 6, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.75rem;
}

.coupon-text-col {
    flex-grow: 1;
}

.coupon-text-col h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.coupon-text-col p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.code-highlight {
    background: rgba(217, 119, 6, 0.15);
    color: var(--secondary);
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    font-size: 1rem;
    border: 1px solid rgba(217, 119, 6, 0.2);
}

.coupon-action-col {
    flex-shrink: 0;
}

/* 14. Yorumlar Bölümü */
.reviews-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 3rem;
    align-items: start;
}

.write-review-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem 2rem;
}

.write-review-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.write-review-notice {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.star-rating-input {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 0.5rem;
}

.star-btn {
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-smooth);
    fill: transparent;
}

.star-btn.hover, .star-btn.selected {
    color: var(--warning);
    fill: var(--warning);
}

.review-form {
    display: flex;
    flex-direction: column;
}

/* Genel Skor Kartı */
.reviews-list-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
}

.reviews-overall-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
}

.rating-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1;
}

.rating-stars-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stars-row {
    display: flex;
    gap: 0.2rem;
}

.star-filled {
    color: var(--warning);
    fill: var(--warning);
    width: 20px;
    height: 20px;
}

.total-reviews-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.reviews-items-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-height: 500px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.review-item {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.5rem;
}

.review-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.review-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.reviewer-name {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Doğrulanmış Alıcı Etiketi */
.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.review-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.review-text {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* 15. Footer / İletişim (Instagram Düzeltildi) */
.footer-section {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    padding-top: 80px;
    padding-bottom: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 2.5rem;
    padding-bottom: 60px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-bottom: 1.5rem;
    display: inline-block;
}

.footer-about-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links-flat {
    display: flex;
    gap: 1rem;
}

.single-insta-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

/* Instagram İkon Boyutu ve Rengi İçin Düzeltme (svg seçici boyutu sabitlendi) */
.single-insta-link svg {
    width: 22px !important;
    height: 22px !important;
    color: var(--text-light) !important;
    transition: var(--transition-smooth);
}

.single-insta-link:hover {
    color: var(--secondary);
    background: rgba(217, 119, 6, 0.1);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 0 10px var(--primary-glow);
}

.single-insta-link:hover svg {
    color: var(--secondary) !important;
}

.footer-col h4 {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links-list a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-links-list a:hover {
    color: var(--primary);
    padding-left: 4px;
}

/* Önerilen Ürünler Sütunu */
.footer-products-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-product-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.02);
    padding: 0.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.footer-product-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.footer-product-img {
    width: 45px;
    height: 45px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
    background: var(--bg-dark);
}

.footer-product-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.footer-product-title {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-light);
    line-height: 1.3;
}

.footer-product-link {
    font-size: 0.7rem;
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.footer-product-link:hover {
    color: var(--text-white);
    text-decoration: underline;
}

.contact-info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.contact-info-list li i {
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.contact-info-list li a:hover {
    color: var(--primary);
}

.icon-heart {
    color: var(--danger);
    fill: var(--danger);
    display: inline-block;
    width: 14px;
    height: 14px;
    vertical-align: middle;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 1.5rem 0;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* 16. Scroll Reveal Animasyonları */
.scroll-reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* 17. Mobil & Tablet Uyum (Responsive) */
@media (max-width: 1100px) {
    .mobile-nav-toggle {
        display: block;
    }
    
    .nav-menu {
        position: absolute;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--bg-darker);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 3rem;
        gap: 2rem;
        transition: var(--transition-smooth);
        border-top: 1px solid var(--border-color);
        z-index: 999;
    }
    
    .light-theme .nav-menu {
        background: var(--bg-dark);
    }
    
    .nav-menu.active {
        left: 0;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-container {
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .ai-tool-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .form-flat-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .full-width-flat {
        grid-column: span 1;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .footer-col.col-about {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-title {
        font-size: 2.4rem;
    }
    
    .hero-desc {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-highlights {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-image-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .training-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .training-row.reverse {
        direction: ltr;
    }
    
    .training-row.reverse .training-details-column {
        direction: ltr;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .payment-flow-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .coupon-box-card {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .reviews-layout {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-col.col-about {
        grid-column: span 1;
    }
    
    .bottom-container {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

/* Google Hesap Seçici Modalı Stilleri */
.google-chooser-box {
    max-width: 400px;
    text-align: center;
}

.google-header-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.google-accounts-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-top: 1.5rem;
}

.google-account-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.01);
    cursor: pointer;
    transition: var(--transition-smooth);
    text-align: left;
}

.google-account-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.google-avatar-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    color: #ffffff;
    flex-shrink: 0;
    font-family: var(--font-heading);
}

.google-account-details {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.google-acc-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-white);
}

.google-acc-email {
    font-size: 0.75rem;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.google-custom-login-form {
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}


/* WhatsApp Yüzen Destek Butonu */
.whatsapp-float-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #ffffff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4), 0 0 10px rgba(0, 0, 0, 0.3);
    z-index: 1500;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: whatsappFloatPulse 3s infinite alternate;
}

.whatsapp-float-btn:hover {
    background-color: #20ba5a;
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6), 0 0 15px rgba(0, 0, 0, 0.4);
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
    display: block;
}

@keyframes whatsappFloatPulse {
    0% {
        transform: translateY(0);
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4), 0 0 10px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.5), 0 0 12px rgba(0, 0, 0, 0.3);
    }
    100% {
        transform: translateY(-8px);
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.55), 0 0 15px rgba(0, 0, 0, 0.3);
    }
}

/* Mobil Ekranlar için WhatsApp Buton Boyutlandırılması */
@media (max-width: 768px) {
    .whatsapp-float-btn {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
    }
    .whatsapp-icon {
        width: 28px;
        height: 28px;
    }
}

/* Animasyonlu Toast Bildirim Sistemi Stilleri */
.toast-container {
    position: fixed;
    top: 25px;
    right: 25px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
    max-width: 380px;
    width: calc(100% - 50px);
}

.toast {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-radius: 12px;
    background: rgba(9, 9, 14, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.55);
    color: var(--text-white);
    font-size: 0.9rem;
    line-height: 1.4;
    pointer-events: auto;
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
    opacity: 0;
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.toast-message {
    flex-grow: 1;
    font-weight: 500;
}

.toast-close-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.toast-close-btn:hover {
    color: var(--text-white);
    transform: scale(1.1);
}

/* Toast Çeşitlerine Göre Özel Kenarlık ve Renk Tonları */
.toast-success {
    border-left: 4px solid #10b981;
}
.toast-success .toast-icon {
    color: #10b981;
}

.toast-error {
    border-left: 4px solid #ef4444;
}
.toast-error .toast-icon {
    color: #ef4444;
}

.toast-warning {
    border-left: 4px solid #f59e0b;
}
.toast-warning .toast-icon {
    color: #f59e0b;
}

.toast-info {
    border-left: 4px solid #3b82f6;
}
.toast-info .toast-icon {
    color: #3b82f6;
}

/* Özel Confirm (Onay) Modalı Tasarımı */
.confirm-modal-box {
    max-width: 380px !important;
    text-align: center;
    padding: 2rem !important;
}

.confirm-icon-wrapper {
    background: rgba(217, 119, 6, 0.05);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    border: 1px solid rgba(217, 119, 6, 0.15);
}

/* ==========================================================================
   Dashboard Modalı Özel Stilleri (Randevularım & Paketlerim)
   ========================================================================== */
.dashboard-modal-box {
    max-width: 600px !important;
}

.dashboard-tabs {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.75rem;
}

.dashboard-tab-btn {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
    cursor: pointer;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.dashboard-tab-btn:hover {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-white);
}

.dashboard-tab-btn.active {
    background: rgba(217, 119, 6, 0.1);
    color: var(--primary);
    box-shadow: inset 0 0 0 1px rgba(217, 119, 6, 0.2);
}

.dashboard-pane {
    display: none;
    animation: fadeIn 0.3s ease;
}

.dashboard-pane.active {
    display: block;
}

.empty-dashboard-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem;
    text-align: center;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.01);
    border: 1px dashed var(--border-color);
    border-radius: 16px;
    gap: 0.75rem;
}

.empty-dashboard-icon {
    width: 48px;
    height: 48px;
    color: var(--text-muted);
    opacity: 0.4;
    margin-bottom: 0.5rem;
}

.empty-dashboard-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-white);
}

/* Randevularım için Listeleme Tasarımı */
.dashboard-app-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.25rem;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.dashboard-app-item:hover {
    border-color: rgba(217, 119, 6, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.dashboard-app-details {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.dashboard-app-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.dashboard-app-meta span {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.dashboard-app-goal {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-white);
}

.dashboard-app-cancel-btn {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #f87171;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dashboard-app-cancel-btn:hover {
    background: #ef4444;
    color: var(--text-white);
    border-color: #ef4444;
}

/* Paket Kartı Tasarımı */
.dashboard-package-card {
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.15) 0%, rgba(5, 5, 8, 0.4) 100%);
    border: 1px solid rgba(217, 119, 6, 0.25);
    border-radius: 20px;
    padding: 1.75rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.dashboard-package-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(217, 119, 6, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.dashboard-package-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.dashboard-package-icon {
    background: rgba(217, 119, 6, 0.2);
    color: var(--primary);
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-package-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-white);
}

.dashboard-package-status {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.2);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.6rem;
    border-radius: 8px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.dashboard-package-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.dashboard-package-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 1rem 0;
    padding: 0.75rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.meta-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.meta-label {
    color: var(--text-muted);
}

.meta-val {
    font-weight: 700;
    color: var(--text-white);
}

.meta-val.highlight-val {
    color: var(--primary);
}

/* ==========================================================================
   IBAN ve Havale Ödeme Kartı Stilleri
   ========================================================================== */
.iban-info-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 1.5rem;
    width: 100%;
    margin-top: 1rem;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.01);
}

.iban-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.75rem;
}

.iban-field-group {
    margin-bottom: 1rem;
}

.iban-field-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    margin-bottom: 0.35rem;
}

.iban-field-value-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.95rem;
}

.copy-text-value {
    word-break: break-all;
    user-select: all;
}

.btn-copy-iban {
    background: none;
    border: none;
    outline: none;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.btn-copy-iban:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--primary);
}

.iban-warning-text {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    color: var(--primary);
    background: rgba(217, 119, 6, 0.05);
    border: 1px solid rgba(217, 119, 6, 0.1);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
    line-height: 1.4;
    margin-top: 1.25rem;
}

.iban-warning-text i {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin-top: 2px;
}

.header-insta-link:hover {
    color: var(--primary) !important;
}

/* ==========================================================================
   YAPISAL YENİDEN TASARIM - ÖZGÜN VE DOĞAL DİZAYN SİSTEMLERİ
   ========================================================================== */

/* 1. Hizmetler - Dikey Katalog Listesi */
.services-list {
    display: flex;
    flex-direction: column;
    margin-top: 2rem;
}

.service-row {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2.25rem 1rem;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.service-row:hover {
    border-bottom-color: var(--border-hover);
    background: rgba(255, 255, 255, 0.01);
}

.service-index {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-muted);
    opacity: 0.5;
    transition: var(--transition-smooth);
    min-width: 45px;
}

.service-row:hover .service-index {
    color: #ffffff;
    opacity: 1;
}

.service-title-box {
    flex: 1;
}

.service-row-title {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.service-row-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.service-icon-arrow {
    width: 46px;
    height: 46px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.service-row:hover .service-icon-arrow {
    border-color: #ffffff;
    color: #ffffff;
    transform: rotate(15deg);
}

/* 2. Eğitimler - Premium Yan Yana Kart Yerleşimi */
.trainings-grid-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-top: 2rem;
}

.training-discipline-card {
    background: #0d0d11;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.training-discipline-card:hover {
    border-color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.training-card-banner {
    position: relative;
    height: 240px;
    width: 100%;
    overflow: hidden;
}

.training-card-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.training-discipline-card:hover .training-card-banner img {
    transform: scale(1.05);
}

.banner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(13, 13, 17, 0.95) 0%, rgba(13, 13, 17, 0.4) 60%, transparent 100%);
    display: flex;
    align-items: flex-end;
    gap: 1rem;
}

.discipline-num {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-white);
    opacity: 0.8;
    line-height: 1;
}

.discipline-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.training-card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex: 1;
}

.discipline-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.discipline-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.discipline-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 1.25rem;
}

.discipline-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.discipline-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: #ffffff;
}

.discipline-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* 3. Paketler - Bilet / Giriş Kartı (Ticket-Slip) Tasarımı */
.ticket-card {
    position: relative;
    border-radius: 8px;
    background: #0d0d11;
    border: 1px solid var(--border-color);
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    overflow: visible;
}

.ticket-header {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.01);
    position: relative;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.ticket-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-muted);
    border: 1px solid var(--border-color);
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.ticket-divider {
    height: 1px;
    border-top: 1px dashed var(--border-color);
    position: relative;
    margin: 0;
}

.ticket-divider::before, .ticket-divider::after {
    content: '';
    position: absolute;
    top: -8px;
    width: 16px;
    height: 16px;
    background: var(--bg-darker);
    border-radius: 50%;
    z-index: 2;
}

.ticket-divider::before {
    left: -9px;
    border-right: 1px solid var(--border-color);
}

.ticket-divider::after {
    right: -9px;
    border-left: 1px solid var(--border-color);
}

.ticket-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.ticket-card.popular {
    border-color: #ffffff;
}

.ticket-card.popular .ticket-badge {
    border-color: #ffffff;
    color: #ffffff;
}

/* 4. Randevu Formu - Grid Tasarımı */
.booking-form-wrapper-flat {
    background: #0d0d11;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 3rem 2.5rem;
}

.form-flat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-flat-col {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group-flat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group-flat label {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-white);
    text-align: left;
    margin-bottom: 0.2rem;
}

.form-group-flat input,
.form-group-flat select,
.form-group-flat textarea {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: #ffffff;
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-smooth);
    width: 100%;
}

.form-group-flat input:focus,
.form-group-flat select:focus,
.form-group-flat textarea:focus {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.04);
}

.form-group-flat select {
    cursor: pointer;
}

.form-group-flat select option {
    background-color: #0d0d11;
    color: #ffffff;
}

/* Tarih/saat seçici ikonu rengi */
.form-group-flat input[type="date"]::-webkit-calendar-picker-indicator,
.form-group-flat input[type="time"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

.full-width-flat {
    grid-column: span 2;
}

.btn-flat-submit {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--bg-darker) !important;
    font-weight: 800;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    padding: 1rem;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    margin-top: 1rem;
}

.btn-flat-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

/* Mobil Uyum */
@media (max-width: 768px) {
    .form-flat-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .full-width-flat {
        grid-column: span 1;
    }
    
    .booking-form-wrapper-flat {
        padding: 2rem 1.5rem;
    }
}

/* ==========================================================================
   AI SOHBET ASİSTANI STİLLERİ
   ========================================================================== */
.ai-chat-container {
    position: relative;
}

.ai-chat-float-btn {
    position: fixed;
    bottom: 105px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #0d0d11;
    color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.05), 0 0 10px rgba(0, 0, 0, 0.3);
    z-index: 1500;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ai-chat-float-btn:hover {
    border-color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.15), 0 0 15px rgba(0, 0, 0, 0.4);
}

.ai-chat-float-btn i {
    width: 28px;
    height: 28px;
}

/* Tooltip */
.ai-chat-tooltip {
    position: absolute;
    right: 75px;
    background: #0d0d11;
    color: #ffffff;
    border: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateX(10px);
}

.ai-chat-float-btn:hover .ai-chat-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* Chat Window */
.ai-chat-window {
    position: fixed;
    bottom: 180px;
    right: 30px;
    width: 360px;
    height: 480px;
    background-color: #0d0d11;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 1600;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ai-chat-window.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Header */
.ai-chat-header {
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ai-chat-header-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.ai-bot-icon {
    width: 32px;
    height: 32px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-chat-header h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
}

.online-indicator {
    font-size: 0.7rem;
    color: #34d399;
    display: flex;
    align-items: center;
    gap: 4px;
}

.online-indicator::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #34d399;
    border-radius: 50%;
    box-shadow: 0 0 8px #34d399;
}

.ai-chat-close {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.ai-chat-close:hover {
    color: #ffffff;
}

/* Body (Messages) */
.ai-chat-body {
    flex: 1;
    padding: 1.25rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.1);
}

.chat-message {
    display: flex;
    flex-direction: column;
    max-width: 80%;
}

.chat-message.user {
    align-self: flex-end;
}

.chat-message.bot {
    align-self: flex-start;
}

.message-bubble {
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-size: 0.9rem;
    line-height: 1.4;
    word-break: break-word;
}

.chat-message.user .message-bubble {
    background-color: #ffffff;
    color: #000000;
    border-bottom-right-radius: 2px;
}

.chat-message.bot .message-bubble {
    background-color: rgba(255, 255, 255, 0.04);
    color: #ffffff;
    border: 1px solid var(--border-color);
    border-bottom-left-radius: 2px;
}

/* Typing indicator */
.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 0.75rem 1rem;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    border-bottom-left-radius: 2px;
    align-self: flex-start;
    max-width: 60px;
}

.typing-dot {
    width: 6px;
    height: 6px;
    background-color: var(--text-muted);
    border-radius: 50%;
    animation: typingBounce 1.4s infinite ease-in-out both;
}

.typing-dot:nth-child(1) { animation-delay: -0.32s; }
.typing-dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes typingBounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

/* Footer (Input) */
.ai-chat-footer {
    display: flex;
    border-top: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.01);
    padding: 0.75rem 1rem;
    gap: 0.5rem;
    align-items: center;
}

.ai-chat-footer input {
    flex: 1;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    color: #ffffff;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition-smooth);
}

.ai-chat-footer input:focus {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.04);
}

.ai-chat-send-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-smooth);
    padding: 4px;
}

.ai-chat-send-btn:hover {
    color: #ffffff;
}

.ai-chat-send-btn i {
    width: 20px;
    height: 20px;
}

/* Mobil Uyum */
@media (max-width: 480px) {
    .ai-chat-window {
        width: calc(100% - 40px);
        height: 400px;
        bottom: 170px;
        right: 20px;
        left: 20px;
    }
}

/* Footer Instagram Linki */
.footer-instagram-block {
    margin-top: 1.5rem;
}

.footer-insta-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-weight: 600;
    transition: var(--transition-smooth);
    font-size: 0.95rem;
    text-decoration: none;
}

.footer-insta-link:hover {
    color: #ffffff;
}

.footer-insta-link i, .footer-insta-link svg {
    width: 20px;
    height: 20px;
}

/* E-posta Doğrulama Kodu Grid Tasarımı */
.verification-code-grid {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin: 1.75rem 0;
}

.code-input {
    width: 48px;
    height: 54px;
    background-color: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    text-align: center;
    transition: var(--transition-smooth);
    outline: none;
}

.code-input:focus {
    border-color: #ffd700; /* Lüks Altın Rengi */
    background-color: rgba(18, 18, 22, 0.9);
    box-shadow: 0 0 15px rgba(217, 119, 6, 0.25);
    transform: translateY(-2px);
}

.code-input.filled {
    border-color: var(--primary);
}

/* Mobil Cihazlar İçin Ayarlamalar */
@media (max-width: 480px) {
    .verification-code-grid {
        gap: 0.4rem;
    }
    .code-input {
        width: 38px;
        height: 48px;
        font-size: 1.25rem;
        border-radius: 8px;
    }
}

/* ==========================================================================
   RECOMMENDED PRODUCTS (YATAY YENİ BÖLÜM)
   ========================================================================== */
.recommended-products-container {
    margin-top: 4.5rem;
    width: 100%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.rec-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 2.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
    letter-spacing: 1px;
}

.rec-section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--text-white);
    border-radius: 2px;
}

.rec-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.rec-product-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.25rem;
    transition: var(--transition-smooth);
}

.rec-product-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.rec-product-img-wrapper {
    width: 70px;
    height: 70px;
    background: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    flex-shrink: 0;
    overflow: hidden;
}

.rec-product-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.rec-product-info {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    overflow: hidden;
}

.rec-product-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-white);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.rec-product-link {
    font-size: 0.85rem;
    color: #d97706;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s ease;
}

.rec-product-link:hover {
    color: var(--text-white);
    text-decoration: underline;
}

/* Mobil / Tablet Uyumluluk */
@media (max-width: 992px) {
    .rec-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .rec-products-grid {
        grid-template-columns: 1fr;
    }
}

