/* CSS Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Light Theme (Body & Content) */
    --bg-primary: #F4F7F6; 
    --bg-glass: rgba(255, 255, 255, 0.85);
    --border-glass: rgba(0, 0, 0, 0.08);
    
    /* Tweaked Dark Theme (Header, Footer, Topbar) */
    --bg-dark-solid: #0A1128; /* Yeni, daha tok bir koyu lacivert */
    --bg-dark-trans: rgba(10, 17, 40, 0.95);
    
    /* Accent Colors */
    --accent-gold: #D4AF37; /* Biraz daha premium altın */
    --accent-gold-hover: #E3C153;
    --accent-gold-dark: #B5952F;
    
    /* Text Colors for Light BG */
    --text-primary: #1E293B; /* Koyu Gri/Lacivert Metin */
    --text-secondary: #64748B;
    
    /* Text Colors for Dark BG */
    --text-light: #FFFFFF;
    --text-light-muted: #94A3B8;

    /* Typography */
    --font-main: 'Outfit', sans-serif;
    
    /* Border Radius & Shadows */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-pill: 50px;
    
    --shadow-glass: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 20px rgba(212, 175, 55, 0.2);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Layout & Glassmorphism Utilities --- */
.glass-panel {
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    box-shadow: var(--shadow-glass);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: none;
    outline: none;
    gap: 8px;
}

.myk-premium-badge {
    background: linear-gradient(135deg, #D4AF37, #B5952F);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(212,175,55,0.3);
    border: 1px solid rgba(255,255,255,0.2);
}

.btn-primary {
    background-color: var(--accent-gold);
    color: var(--bg-dark-solid);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background-color: var(--accent-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--accent-gold);
    border: 2px solid var(--accent-gold);
}

.btn-outline:hover {
    background-color: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.btn-glass {
    background: rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(5px);
    border: 1px solid var(--border-glass);
    color: var(--text-primary);
}

.btn-glass:hover {
    background: rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.15);
}

/* --- Header & Navigation --- */
/* --- 1. NEW PREMIUM TOP BAR --- */
.top-bar {
    background: linear-gradient(90deg, #050a14 0%, #0a1324 100%);
    color: #a0aec0;
    font-size: 10px;
    font-weight: 600;
    padding: 8px 0;
    border-bottom: 1px solid rgba(212,175,55,0.15);
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
    gap: 25px;
}
.top-bar-left span {
    display: flex;
    align-items: center;
    gap: 6px;
}
.trust-text {
    display: none; /* Hide, moved to left */
}
.social-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}
.social-icons a {
    color: #a0aec0;
    font-size: 13px;
    transition: all var(--transition-fast);
}
.social-icons a:hover {
    transform: scale(1.2) translateY(-2px);
    color: var(--accent-gold);
    text-shadow: 0 0 8px rgba(212,175,55,0.5);
}
.top-links {
    display: flex;
    align-items: center;
    gap: 15px;
    border-left: 1px solid rgba(255,255,255,0.1);
    padding-left: 15px;
}
.top-links a {
    color: #a0aec0;
    text-decoration: none;
    transition: color var(--transition-fast);
}
.top-links a:hover {
    color: var(--accent-gold);
}

/* --- 2. MAIN HEADER (Logo, Search, Actions) --- */
.header-main {
    background: #0a1324;
    padding: 20px 0;
    position: relative;
}
.header-main::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.3), transparent);
}
.header-main-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.header-left {
    display: flex;
    align-items: center;
    gap: 30px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform var(--transition-fast);
}
.logo:hover {
    transform: scale(1.02);
}
.logo img {
    height: 45px;
    filter: drop-shadow(0 2px 10px rgba(212,175,55,0.2));
}
.logo-text {
    display: flex;
    flex-direction: column;
}
.brand-name {
    font-size: 22px;
    font-weight: 300;
    color: #fff;
    letter-spacing: 0.5px;
}
.brand-name span {
    font-weight: 800;
    color: var(--accent-gold);
}
.header-contact {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #e2e8f0;
    border-left: 1px solid rgba(255,255,255,0.1);
    padding-left: 20px;
}
.header-contact i {
    font-size: 22px;
    color: var(--accent-gold);
}
.contact-text {
    display: flex;
    flex-direction: column;
    font-size: 11px;
    line-height: 1.4;
    letter-spacing: 0.5px;
}

.search-container {
    flex: 1;
    max-width: 500px;
    position: relative;
}
.search-container form {
    display: flex;
    width: 100%;
    align-items: stretch;
}
.search-container input {
    width: 100%;
    padding: 12px 20px;
    border-radius: 8px 0 0 8px;
    border: 2px solid rgba(255,255,255,0.1);
    border-right: none;
    background: rgba(255,255,255,0.05);
    color: #fff;
    font-size: 13px;
    font-family: inherit;
    transition: all var(--transition-fast);
}
.search-container input::placeholder {
    color: rgba(255,255,255,0.5);
}
.search-container input:focus {
    outline: none;
    background: rgba(255,255,255,0.1);
    border-color: var(--accent-gold);
    box-shadow: 0 0 15px rgba(212,175,55,0.1);
}
.search-container button {
    width: 55px;
    border-radius: 0 8px 8px 0;
    border: none;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    color: var(--bg-dark-solid);
    font-size: 16px;
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: 0 2px 10px rgba(212,175,55,0.2);
}
.search-container button:hover {
    background: linear-gradient(135deg, #f2d26b, var(--accent-gold));
    transform: scale(1.03);
}

.action-buttons {
    display: flex;
    align-items: center;
    gap: 30px;
}
.btn-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #e2e8f0;
    transition: all var(--transition-fast);
    position: relative;
}
.btn-action i {
    font-size: 22px;
    transition: transform var(--transition-fast);
}
.btn-action span {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.btn-action .badge {
    position: absolute;
    top: -8px;
    right: -12px;
    background: #e74c3c;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #0a1324;
    box-shadow: 0 2px 5px rgba(231,76,60,0.4);
}
.btn-action:hover {
    color: var(--accent-gold);
}
.btn-action:hover i {
    transform: translateY(-3px);
}

/* --- 3. BOTTOM NAVIGATION --- */
.nav-bottom {
    background: #fff;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    position: relative;
    z-index: 99;
}
.nav-bottom-container {
    display: flex;
    align-items: stretch;
    height: 55px;
    width: 100%;
    max-width: 100%;
    padding: 0 40px;
}
.category-btn {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 12px;
    padding: 0 25px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    color: var(--bg-dark-solid);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    min-width: 230px;
    transition: all var(--transition-fast);
}
.category-wrapper:hover .category-btn {
    background: linear-gradient(135deg, #f2d26b, var(--accent-gold));
}
.category-btn i.fa-bars {
    font-size: 18px;
}
.category-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 250px;
    background: #fff;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-fast);
    display: flex;
    flex-direction: column;
    padding: 10px 0;
    z-index: 999;
}
.category-wrapper:hover .category-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.category-dropdown a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 25px;
    color: #2d3748;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all var(--transition-fast);
}
.category-dropdown a:hover {
    background: rgba(212,175,55,0.05);
    color: var(--accent-gold-dark);
    padding-left: 30px;
}
.category-dropdown a i {
    color: var(--accent-gold);
    font-size: 15px;
    width: 20px;
    text-align: center;
}
.nav-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
    padding-left: 30px;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-categories-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer-categories-grid a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dashed rgba(255,255,255,0.05);
    padding-bottom: 5px;
    font-size: 13px;
    text-transform: capitalize;
}
.footer-categories-grid span.count {
    font-size: 11px;
    background: rgba(212,175,55,0.1);
    color: var(--accent-gold);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
}
.nav-list li {
    position: relative;
    height: 100%;
    display: flex;
}
.nav-list li a {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 15px;
    color: #2d3748;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    text-decoration: none;
    transition: all var(--transition-fast);
    position: relative;
    letter-spacing: 0.5px;
}
.nav-list li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10px;
    right: 10px;
    height: 3px;
    background: var(--accent-gold);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
    transform-origin: center;
    border-radius: 3px 3px 0 0;
}
.nav-list li a:hover {
    color: var(--accent-gold-dark);
}
.nav-list li a:hover::after, .nav-list li a.active::after {
    transform: scaleX(1);
}
.nav-list li a.active {
    color: var(--accent-gold-dark);
}


/* --- Hero Section --- */
.hero {
    position: relative;
    padding: 150px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

/* --- Hero Slider --- */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

/* --- Hero Controls --- */
.hero-controls {
    display: flex;
    gap: 15px;
}

.slider-btn {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: #000;
}

.hero-content {
    margin: 0 auto;
    max-width: 650px;
}

/* End of Hero specific styles */
.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(212, 175, 55, 0.2);
    color: var(--accent-gold);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 54px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #fff;
}

.hero h1 span {
    color: var(--accent-gold);
}

.hero p {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

/* --- Trust Indicators --- */
.trust-indicators {
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.trust-card {
    padding: 25px;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    transition: transform var(--transition-normal);
}

.trust-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
}

.trust-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--accent-gold-dark);
}

.trust-card h3 {
    font-size: 16px;
    font-weight: 600;
}

.trust-card p {
    font-size: 13px;
    color: var(--text-secondary);
}

/* --- Course Cards (Shared) --- */
.section {
    padding: 80px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
}

.section-title span {
    color: var(--accent-gold);
}

.course-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.course-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-normal);
    position: relative;
    display: flex;
    flex-direction: column;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: rgba(212, 175, 55, 0.3);
}

.course-img {
    position: relative;
    padding-top: 60%; /* Aspect ratio */
    overflow: hidden;
}

.course-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.course-card:hover .course-img img {
    transform: scale(1.05);
}

.course-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-primary);
    font-size: 12px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.course-badge.hot {
    background: rgba(230, 43, 80, 0.9);
    border-color: rgba(230, 43, 80, 1);
    color: #fff;
}

.course-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.course-category {
    font-size: 12px;
    color: var(--accent-gold);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
}

.course-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
    flex: 1;
}

.course-card:hover .course-title {
    color: var(--accent-gold);
}

.course-card:hover .course-img img {
    transform: scale(1.05);
}

.course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border-glass);
}

.course-price {
    display: flex;
    flex-direction: column;
}

.old-price {
    font-size: 12px;
    color: var(--text-secondary);
    text-decoration: line-through;
}

.new-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}

.course-action {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: all var(--transition-fast);
}

.course-card:hover .course-action {
    background: var(--accent-gold);
    color: var(--bg-dark-solid);
}

/* --- Marquee Animation --- */
.marquee-track {
    overflow: hidden;
    position: relative;
    width: 100%;
    white-space: nowrap;
    display: flex;
}

.marquee-content {
    display: inline-flex;
    animation: scroll-left 30s linear infinite;
}

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

.marquee-track:hover .marquee-content {
    animation-play-state: paused;
}

/* --- Social Proof Marquee Section (Light Theme) --- */
.social-proof-section-light {
    background: #f8fafc;
    padding: 80px 0;
    overflow: hidden;
    border-top: 1px solid var(--border-glass);
}

.brands-track-light::before {
    background: linear-gradient(to right, #fff, transparent);
}
.brands-track-light::after {
    background: linear-gradient(to left, #fff, transparent);
}

.brand-item-light {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0 40px;
    font-size: 22px;
    font-weight: 800;
    color: #94a3b8;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.brand-item-light i {
    font-size: 28px;
    color: var(--accent-gold);
}

.brand-item-light:hover {
    filter: grayscale(0%);
    opacity: 1;
    color: #0f172a;
}

/* Reviews Slider (Light Theme, Tik-tik scroll) */
.reviews-slider-container {
    position: relative;
    width: 100%;
}

.reviews-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
}

.reviews-track::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.review-card {
    background: #fff;
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 25px;
    min-width: calc(25% - 22.5px); /* Exactly 4 cards per view */
    max-width: calc(25% - 22.5px);
    flex-shrink: 0;
    display: inline-flex;
    flex-direction: column;
    white-space: normal;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    transition: transform 0.3s ease, border-color 0.3s, box-shadow 0.3s;
    scroll-snap-align: start;
}

.review-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: 1px solid var(--border-glass);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--text-primary);
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    z-index: 10;
    transition: all 0.3s ease;
}

.review-btn:hover {
    background: var(--accent-gold);
    color: #fff;
    border-color: var(--accent-gold);
}

.prev-review {
    left: -25px;
}

.next-review {
    right: -25px;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212,175,55,0.4);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.review-stars {
    color: var(--accent-gold);
    font-size: 14px;
    margin-bottom: 20px;
    display: flex;
    gap: 4px;
}

.review-text {
    font-size: 16px;
    color: #334155;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
    flex-grow: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-gold), #b8860b);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    border: 2px solid #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

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

.author-info strong {
    color: #0f172a;
    font-size: 16px;
}

.author-info span {
    color: #64748b;
    font-size: 13px;
    font-weight: 500;
}

/* --- Footer --- */
.footer {
    background: linear-gradient(180deg, #0b0f1a 0%, #060a10 100%);
    color: var(--text-light);
    margin-top: auto;
    border-top: 3px solid var(--accent-gold);
}

.footer-newsletter {
    background: var(--bg-dark-trans);
    padding: 40px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.newsletter-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255,255,255,0.02);
    padding: 30px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.05);
}

.newsletter-info h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.newsletter-info p {
    color: var(--text-light-muted);
    font-size: 14px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    width: 100%;
    max-width: 450px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-light);
    font-family: inherit;
    font-size: 14px;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: rgba(255,255,255,0.1);
}

.footer .container > .footer-grid {
    padding: 60px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.2fr 1.1fr 1.1fr 1.6fr;
    gap: 40px;
    padding: 60px 0 40px;
}

.footer-grid-5 {
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
}

/* --- Partner Bar --- */
.footer-partner-bar {
    background: linear-gradient(135deg, rgba(212,175,55,0.08) 0%, rgba(212,175,55,0.03) 100%);
    border-top: 1px solid rgba(212,175,55,0.15);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 28px 0;
}

.partner-bar-inner {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.partner-bar-item {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    min-width: 160px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.partner-bar-item:hover {
    transform: translateY(-2px);
}

.partner-bar-item > i {
    font-size: 28px;
    color: var(--accent-gold);
    width: 50px;
    height: 50px;
    background: rgba(212,175,55,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background var(--transition-fast);
}

.partner-bar-item:hover > i {
    background: rgba(212,175,55,0.2);
}

.partner-bar-item strong {
    display: block;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}

.partner-bar-item span {
    font-size: 12px;
    color: var(--text-light-muted);
}

.partner-bar-divider {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.08);
    flex-shrink: 0;
}

.partner-bar-cta {
    flex-shrink: 0;
}

/* Trust badges pills */
.trust-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(212,175,55,0.1);
    border: 1px solid rgba(212,175,55,0.2);
    color: var(--accent-gold);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

.footer-arrow {
    font-size: 10px;
    margin-right: 6px;
    color: var(--accent-gold);
}


.footer-about .logo {
    margin-bottom: 20px;
    display: inline-block;
}

.footer-about .footer-logo-img {
    height: 75px;
    width: auto;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(212,175,55,0.25));
}

.footer-about p {
    color: var(--text-light-muted);
    font-size: 13.5px;
    line-height: 1.9;
    margin-bottom: 20px;
    max-width: 290px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: all var(--transition-fast);
}

.social-links a:hover {
    background: var(--accent-gold);
    color: var(--bg-dark-solid);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 22px;
    color: #fff;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent-gold);
    display: inline-block;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-light-muted);
    font-size: 13.5px;
    transition: color var(--transition-fast);
    white-space: nowrap;
    display: block;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

/* Premium Contact List in Footer */
.premium-contact-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.contact-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    text-decoration: none !important;
}
.contact-card:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: rgba(212, 175, 55, 0.2);
    transform: translateX(5px);
}
.contact-card .icon-box {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 18px;
    transition: all 0.3s ease;
}
.contact-card:hover .icon-box {
    background: var(--accent-gold);
    color: var(--bg-dark-solid);
    transform: rotate(5deg) scale(1.05);
}
.contact-card .contact-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.contact-card .contact-info span {
    font-size: 11px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}
.contact-card .contact-info strong {
    font-size: 15px;
    color: #e2e8f0;
    font-weight: 700;
}
.contact-card:hover .contact-info strong {
    color: var(--accent-gold);
}


.footer-contact i {
    color: var(--accent-gold);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact li > div {
    min-width: 0;
    white-space: nowrap;
}

/* --- Footer Payment Bar --- */
.footer-payment-bar {
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 18px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    background: rgba(0,0,0,0.15);
}

.footer-payment-left {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light-muted);
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
}

.footer-payment-icons {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.payment-icon-img {
    height: 30px;
    width: auto;
    border-radius: 5px;
    background: #fff;
    padding: 3px 8px;
    object-fit: contain;
}

/* Mastercard */
.payment-icon-mc {
    display: flex;
    align-items: center;
    background: #1a1a1a;
    padding: 5px 10px;
    border-radius: 5px;
    border: 1px solid rgba(255,255,255,0.1);
}
.mc-circle {
    width: 22px;
    height: 22px;
    border-radius: 50%;
}
.mc-red { background: #eb001b; }
.mc-orange { background: #f79e1b; margin-left: -10px; }

/* TROY */
.payment-icon-troy {
    background: linear-gradient(135deg, #1a3a6e, #0d2150);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    padding: 6px 12px;
    border-radius: 5px;
    letter-spacing: 2px;
    border: 1px solid rgba(212,175,55,0.3);
}

/* iyzico */
.payment-icon-iyzico {
    background: #00B9F1;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 5px;
    font-style: italic;
}

/* PayTR */
.payment-icon-paytr {
    background: #2c3e50;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 5px;
    border: 1px solid rgba(255,255,255,0.1);
}
.payment-icon-paytr span {
    color: var(--accent-gold);
}

/* 3D Secure */
.payment-icon-3d {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-light-muted);
    font-size: 11px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 5px;
}

/* VISA fallback */
.payment-icon-visa-css {
    background: #1a1f6e;
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    font-style: italic;
    padding: 6px 14px;
    border-radius: 5px;
    letter-spacing: 1px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--text-light-muted);
    background: rgba(0,0,0,0.2);
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
}

.footer-bottom strong {
    color: var(--accent-gold);
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.footer-bottom-right span {
    opacity: 0.25;
}

.footer-bottom-right a {
    color: var(--text-light-muted);
    transition: color var(--transition-fast);
    font-size: 12px;
}

.footer-bottom-right a:hover {
    color: var(--accent-gold);
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform var(--transition-normal);
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    color: #fff;
}

/* --- How It Works Section --- */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.step-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: var(--radius-md);
    text-align: center;
    position: relative;
    border: 1px solid var(--border-glass);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    transition: transform var(--transition-normal);
}
.step-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.3);
}
.step-icon {
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold);
    font-size: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
}
.step-number {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    background: var(--bg-dark-solid);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* --- FAQ Accordion --- */
.faq-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-items: start;
}
.faq-item {
    background: #fff;
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    overflow: hidden;
}
.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    color: var(--text-primary);
    transition: background var(--transition-fast);
}
.faq-question:hover {
    background: #f8fafc;
}
.faq-question i {
    color: var(--accent-gold);
    transition: transform 0.3s ease;
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}
.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}
.faq-item.active .faq-answer {
    padding: 0 25px 20px 25px;
    max-height: 500px;
}

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE — Tam Mobil & Tablet Uyumu
   Breakpoints: 1200 → 1024 → 768 → 480
═══════════════════════════════════════════════════════════════════ */

/* ── 1200px: Küçük laptop / büyük tablet ── */
@media (max-width: 1200px) {
    .container { padding: 0 24px; }
    .section-title { font-size: 28px; }
}

/* ── 1024px: Tablet landscape ── */
@media (max-width: 1024px) {
    .course-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .trust-grid, .cert-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .nav-bottom { display: none; }
}

/* ── 768px: Tablet dikey / büyük telefon ── */
@media (max-width: 768px) {
    /* Kapsayıcı */
    .container { padding: 0 16px; }

    /* Tipografi */
    .section-title { font-size: 24px !important; }
    .section-subtitle { font-size: 15px !important; }

    /* Hero */
    .hero { padding: 50px 0; text-align: center; }
    .hero h1 { font-size: 32px; }
    .hero p  { font-size: 15px; }
    .hero-content { margin: 0 auto; max-width: 100%; }
    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
    }

    /* Alt navigasyon çubuğu */
    .nav-bottom { display: none; }

    /* Kurs grid */
    .course-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

    /* SSS */
    .faq-grid { grid-template-columns: 1fr; }

    /* Güven & sertifika grid */
    .trust-grid, .cert-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

    /* Footer */
    .footer-categories-grid { grid-template-columns: 1fr !important; }
    .footer-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .footer-bottom {
        flex-direction: column;
        gap: 14px;
        text-align: center;
    }
    .footer-bottom-right { justify-content: center; flex-wrap: wrap; }

    /* Hukuki sayfalar */
    .legal-content { padding: 28px 18px !important; }
    .legal-header h1 { font-size: 26px !important; }

    /* Bölüm padding */
    .courses-section,
    .trust-section,
    .categories-section,
    .cert-section,
    .process-section,
    .testimonials-section,
    .faq-section,
    .blog-section { padding: 50px 0; }
}

/* ── 480px: Küçük mobil ── */
@media (max-width: 480px) {
    .container { padding: 0 14px; }

    /* Tipografi */
    .section-title { font-size: 20px !important; }
    .hero h1 { font-size: 26px; }
    .hero p  { font-size: 14px; }

    /* Tek sütun grid */
    .course-grid { grid-template-columns: 1fr; gap: 14px; }
    .trust-grid, .cert-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }

    /* Sepet drawer tam genişlik */
    .cdv2 { width: 100vw; }

    /* Bölüm padding */
    .courses-section,
    .trust-section,
    .categories-section,
    .cert-section,
    .process-section,
    .testimonials-section,
    .faq-section,
    .blog-section { padding: 40px 0; }
}
