/*
Theme Name: Rezora Akademi
Description: Skillshare tarzı navbar + hero
Version: 1.0
Author: Rezora Akademi
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    -webkit-font-smoothing: antialiased;
}

/* NEWS BAR */
.news-bar {
    background: #f8fafc;
    border-bottom: 1px solid #e5e7eb;
    padding: 8px 0;
    font-size: 14px;
    transition: all 0.3s ease;
}

.news-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news-left {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6b7280;
}

.news-left i {
    color: #0a4264;
}

.news-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.news-text {
    color: #6b7280;
    margin-right: 8px;
}

.news-social {
    width: 28px;
    height: 28px;
    background: #e5e7eb;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    text-decoration: none;
    transition: all 0.2s ease;
}

.news-social:hover {
    background: #0a4264;
    color: #fff;
}

/* NAVBAR - Skillshare Style */
.navbar {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 36px;
    z-index: 1000;
    height: 64px;
    transition: top 0.3s ease;
}

.navbar.scrolled {
    top: 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    height: 40px;
    max-width: 200px;
}

.navbar-logo-img {
    height: 40px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    transition: opacity 0.2s ease;
}

.navbar-logo-img:hover {
    opacity: 0.8;
}

.navbar-logo-text {
    font-size: 28px;
    font-weight: 900;
    color: #000;
    letter-spacing: -0.5px;
    transition: color 0.2s ease;
}

.navbar-logo-text:hover {
    color: #0a4264;
}

/* Mobile Logo */
@media (max-width: 768px) {
    .nav-logo {
        height: 32px;
        max-width: 150px;
    }
    
    .navbar-logo-img {
        height: 32px;
        max-width: 140px;
    }
    
    .navbar-logo-text {
        font-size: 24px;
    }
}

/* Browse Button */
.nav-browse {
    position: relative;
}

.browse-btn {
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: #374151;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 8px;
    transition: color 0.2s ease;
}

.browse-btn:hover {
    color: #000;
}

.browse-btn i {
    margin-left: 8px;
    font-size: 12px;
}

/* Search Bar */
.nav-search {
    flex: 1;
    max-width: 600px;
    margin: 0 24px;
}

.search-input {
    width: 100%;
    height: 48px;
    padding: 0 20px 0 48px;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    background: #f9fafb;
    font-size: 16px;
    outline: none;
    transition: all 0.2s ease;
}

.search-input:focus {
    border-color: #0a4264;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(10, 66, 100, 0.1);
}

.search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 16px;
}

.search-container {
    position: relative;
}

/* Auth Buttons */
.nav-auth {
    display: flex;
    align-items: center;
    gap: 16px;
}

.auth-link {
    color: #374151;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 8px 16px;
    border-radius: 8px;
    transition: color 0.2s ease;
}

.auth-link:hover {
    color: #000;
}

.auth-button {
    background: #0a4264;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    padding: 12px 24px;
    border-radius: 24px;
    transition: all 0.2s ease;
}

.auth-button:hover {
    background: #083552;
    transform: translateY(-1px);
}

/* Mobile Menu Button */
.mobile-toggle {
    display: none;
    flex-direction: column;
    width: 24px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 100%;
    height: 2px;
    background: #374151;
    margin: 2px 0;
    transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-browse,
    .nav-search,
    .nav-auth {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
}

/* HERO SECTION - No Logo, 2 Column */
.hero {
    padding: 80px 20px;
    background: linear-gradient(135deg, #fafbff 0%, #f1f5f9 100%);
}

.hero-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.6fr 380px;
    gap: 60px;
    align-items: center;
    min-height: 600px;
}

/* Ana İçerik */
.hero-main {
    padding-right: 40px;
}

.hero-title {
    font-size: 48px;
    font-weight: 900;
    color: #000;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-subtitle-inline {
    font-size: 48px;
    font-weight: 800;
    color: #0a4264;
    line-height: 1.1;
}

.hero-description {
    font-size: 20px;
    color: #4b5563;
    line-height: 1.6;
    margin-top: 32px;
    max-width: 600px;
}

/* Consultation Card - Skillshare Style (Minimal) */
.hero-signup {
    display: flex;
    justify-content: center;
    align-items: center;
}

.consultation-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 380px;
    position: relative;
    overflow: hidden;
}

.consultation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0a4264, #1e40af);
}

/* ELEGANT CONSULTATION FORM */
.elegant-consultation-form {
    width: 100%;
    padding-top: 8px;
}

.email-consultation-form {
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* SADECE Hero bölümündeki consultation form için */
.consultation-card .fallback-consultation-form .elegant-submit {
    margin-top: 20px !important;
}

/* Contact Form 7 Hero Form Styling - SADECE HERO */

/* Hero CF7 form yapısı için */
.consultation-card .wpcf7 input[type="submit"],
.consultation-card .wpcf7-submit,
.consultation-card input[type="submit"],
.consultation-card button[type="submit"],
.cf7-hero-wrapper .wpcf7-submit,
.cf7-hero-wrapper input[type="submit"],
.cf7-hero-wrapper button[type="submit"] {
    margin-top: 25px !important;
    margin-bottom: 0 !important;
    background: linear-gradient(135deg, #0a4264 0%, #1e40af 100%) !important;
    color: white !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 16px 24px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    width: 100% !important;
    cursor: pointer !important;
}

/* CF7 input ile buton arası boşluk - SADECE HERO */
.consultation-card .wpcf7-form p:last-of-type,
.consultation-card .wpcf7 p:last-of-type,
.cf7-hero-wrapper .wpcf7-form p:last-of-type,
.cf7-hero-wrapper .wpcf7 p:last-of-type {
    margin-top: 25px !important;
    margin-bottom: 0 !important;
}

/* Input alanları için - SADECE HERO */
.consultation-card .wpcf7-text,
.consultation-card .wpcf7-email,
.consultation-card .wpcf7-tel,
.cf7-hero-wrapper .wpcf7-text,
.cf7-hero-wrapper .wpcf7-email,
.cf7-hero-wrapper .wpcf7-tel {
    width: 100% !important;
    padding: 16px !important;
    border: 2px solid #e5e7eb !important;
    border-radius: 12px !important;
    font-size: 16px !important;
    font-family: 'Inter', sans-serif !important;
    margin-bottom: 0 !important;
}

/* Newsletter Plugin Styling */
.newsletter-plugin-wrapper .tnp-subscription {
    background: transparent !important;
    padding: 0 !important;
    box-shadow: none !important;
}

.newsletter-plugin-wrapper .tnp-email {
    width: 100% !important;
    padding: 16px !important;
    border: 2px solid #e5e7eb !important;
    border-radius: 12px !important;
    font-size: 16px !important;
    font-family: 'Inter', sans-serif !important;
    margin-bottom: 25px !important;
    background: white !important;
}

.newsletter-plugin-wrapper .tnp-submit {
    background: linear-gradient(135deg, #0a4264 0%, #1e40af 100%) !important;
    color: white !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 16px 24px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    width: 100% !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.newsletter-plugin-wrapper .tnp-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(10, 66, 100, 0.3);
}

/* CF7 paragraf elementleri arası boşluk */
.consultation-card .wpcf7-form p,
.consultation-card .wpcf7 p,
.cf7-hero-wrapper .wpcf7-form p,
.cf7-hero-wrapper .wpcf7 p {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.input-wrapper {
    position: relative;
    width: 100%;
}

.input-wrapper i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 16px;
    z-index: 2;
    transition: color 0.3s ease;
}

.elegant-input {
    width: 100%;
    padding: 16px 16px 16px 48px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    background: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.elegant-input:focus {
    outline: none;
    border-color: #0a4264;
    box-shadow: 0 0 0 4px rgba(10, 66, 100, 0.1), 0 4px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

.elegant-input:focus ~ i,
.input-wrapper:focus-within i {
    color: #0a4264;
}

.elegant-submit {
    background: linear-gradient(135deg, #0a4264 0%, #1e40af 100%);
    color: #fff;
    border: none;
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(10, 66, 100, 0.2);
    position: relative;
    overflow: hidden;
}

.elegant-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.elegant-submit:hover::before {
    left: 100%;
}

.elegant-submit:hover {
    background: linear-gradient(135deg, #0f172a 0%, #1e40af 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(10, 66, 100, 0.3);
}

.elegant-submit:active {
    transform: translateY(0);
}

.elegant-submit span {
    font-weight: 600;
}

.elegant-submit i {
    font-size: 14px;
    transition: transform 0.2s ease;
}

.elegant-submit:hover i {
    transform: translateX(4px);
}

/* Contact Form 7 Integration Styling */
.cf7-consultation-wrapper {
    width: 100%;
    position: relative;
}

.cf7-hero-wrapper {
    width: 100%;
}

.cf7-hero-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 0 !important;
    padding: 0 !important;
}

.cf7-hero-form p {
    margin: 0 !important;
    position: relative;
}

.cf7-hero-form .wpcf7-form-control-wrap {
    position: relative;
    display: block;
}

.cf7-hero-form .wpcf7-form-control-wrap::before {
    content: '\f0e0';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 16px;
    z-index: 2;
    transition: color 0.3s ease;
    pointer-events: none;
}

.cf7-hero-form .wpcf7-form-control {
    width: 100% !important;
    padding: 16px 16px 16px 48px !important;
    border: 2px solid #e5e7eb !important;
    border-radius: 12px !important;
    font-size: 16px !important;
    font-family: 'Inter', sans-serif !important;
    background: #fff !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
    margin: 0 !important;
    box-sizing: border-box !important;
}

.cf7-hero-form .wpcf7-form-control:focus {
    outline: none !important;
    border-color: #0a4264 !important;
    box-shadow: 0 0 0 4px rgba(10, 66, 100, 0.1), 0 4px 16px rgba(0, 0, 0, 0.08) !important;
    transform: translateY(-1px) !important;
}

.cf7-hero-form .wpcf7-form-control:focus + .wpcf7-form-control-wrap::before,
.cf7-hero-form .wpcf7-form-control-wrap:focus-within::before {
    color: #0a4264 !important;
}

.cf7-hero-form .wpcf7-submit {
    background: linear-gradient(135deg, #0a4264 0%, #1e40af 100%) !important;
    color: #fff !important;
    border: none !important;
    padding: 16px 24px !important;
    border-radius: 12px !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 16px rgba(10, 66, 100, 0.2) !important;
    width: 100% !important;
    margin: 0 !important;
    position: relative !important;
    overflow: hidden !important;
}

.cf7-hero-form .wpcf7-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cf7-hero-form .wpcf7-submit:hover::before {
    left: 100%;
}

.cf7-hero-form .wpcf7-submit:hover {
    background: linear-gradient(135deg, #0f172a 0%, #1e40af 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(10, 66, 100, 0.3) !important;
}

/* Contact Form 7 Messages */
.cf7-hero-form .wpcf7-mail-sent-ok {
    background: #f0fdf4 !important;
    border: 2px solid #bbf7d0 !important;
    color: #166534 !important;
    padding: 16px !important;
    border-radius: 12px !important;
    margin: 16px 0 !important;
    font-weight: 600 !important;
    text-align: center !important;
}

.cf7-hero-form .wpcf7-validation-errors {
    background: #fef2f2 !important;
    border: 2px solid #fecaca !important;
    color: #dc2626 !important;
    padding: 16px !important;
    border-radius: 12px !important;
    margin: 16px 0 !important;
    font-weight: 600 !important;
    text-align: center !important;
}

.cf7-hero-form .wpcf7-not-valid-tip {
    color: #dc2626 !important;
    font-size: 14px !important;
    margin-top: 4px !important;
    font-weight: 500 !important;
}

.cf7-container .wpcf7-form.cf7-elegant {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 0;
}

.cf7-container .wpcf7-form-control {
    width: 100%;
    padding: 16px 16px 16px 48px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    background: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.cf7-container .wpcf7-form-control:focus {
    outline: none;
    border-color: #0a4264;
    box-shadow: 0 0 0 4px rgba(10, 66, 100, 0.1), 0 4px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

.cf7-container .wpcf7-submit {
    background: linear-gradient(135deg, #0a4264 0%, #1e40af 100%);
    color: #fff;
    border: none;
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(10, 66, 100, 0.2);
    width: 100%;
}

.cf7-container .wpcf7-submit:hover {
    background: linear-gradient(135deg, #0f172a 0%, #1e40af 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(10, 66, 100, 0.3);
}

/* Legacy consultation form styles for backward compatibility */
.consultation-form {
    margin-bottom: 20px;
}

.consultation-input {
    width: 100%;
    padding: 16px 16px 16px 48px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 16px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.consultation-input:focus {
    outline: none;
    border-color: #0a4264;
    box-shadow: 0 0 0 4px rgba(10, 66, 100, 0.1);
    transform: translateY(-1px);
}

.consultation-button {
    width: 100%;
    background: linear-gradient(135deg, #0a4264 0%, #1e40af 100%);
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(10, 66, 100, 0.2);
}

.consultation-button:hover {
    background: linear-gradient(135deg, #0f172a 0%, #1e40af 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(10, 66, 100, 0.3);
}

.consultation-title {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    text-align: center;
    margin-bottom: 8px;
    line-height: 1.3;
}

.consultation-subtitle {
    font-size: 16px;
    color: #6b7280;
    text-align: center;
    margin-bottom: 24px;
    line-height: 1.4;
}

.consultation-form {
    margin-bottom: 20px;
}

.consultation-input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 16px;
    margin-bottom: 16px;
    transition: border-color 0.2s ease;
    background: #fff;
}

.consultation-input:focus {
    outline: none;
    border-color: #0a4264;
}

.consultation-button {
    width: 100%;
    padding: 14px 20px;
    background: #0a4264;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.consultation-button:hover {
    background: #083552;
}

.consultation-info {
    margin-bottom: 20px;
}

.info-item {
    margin-bottom: 8px;
    font-size: 14px;
    color: #374151;
}

.consultation-note {
    font-size: 12px;
    color: #6b7280;
    text-align: center;
    line-height: 1.4;
}

.consultation-note a {
    color: #0a4264;
    text-decoration: none;
}

.consultation-note a:hover {
    text-decoration: underline;
}

/* Keşfet Dropdown */
.explore-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    width: 600px;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    margin-top: 8px;
    z-index: 1000;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.nav-browse:hover .explore-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-browse:hover .browse-btn i {
    transform: rotate(180deg);
}

.dropdown-section {
    margin-bottom: 0;
}

/* Dropdown Responsive */
@media (max-width: 768px) {
    .explore-dropdown {
        width: 300px;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .explore-dropdown {
        width: 250px;
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 12px;
    }
    
    .dropdown-section h4 {
        font-size: 11px;
        margin-bottom: 8px;
    }
    
    .dropdown-section a {
        padding: 6px 8px;
        font-size: 13px;
    }
}

.dropdown-section h4 {
    font-size: 12px;
    font-weight: 700;
    color: #6b7280;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.dropdown-section a {
    display: block;
    padding: 8px 12px;
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s ease;
    margin-bottom: 4px;
}

.dropdown-section a:hover {
    background: #f9fafb;
    color: #000;
}

.blog-link {
    font-weight: 600 !important;
    color: #0a4264 !important;
}

.blog-link i {
    font-size: 12px;
    margin-left: 4px;
}

/* Mobile Menu - Skillshare Style */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 300px;
    background: #fff;
    z-index: 9999;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    border-right: 1px solid #e5e7eb;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.mobile-close {
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
    font-size: 16px;
}

.mobile-auth-top .mobile-signup {
    background: #0a4264;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.mobile-content {
    padding: 20px;
}

.mobile-nav-item {
    margin-bottom: 8px;
}

.mobile-section {
    margin-bottom: 24px;
}

.mobile-section h4 {
    font-size: 12px;
    font-weight: 700;
    color: #6b7280;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.mobile-link {
    display: block;
    padding: 12px 0;
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.2s ease;
}

.mobile-link:hover {
    color: #000;
}

.blog-external i {
    font-size: 12px;
    margin-left: 4px;
    color: #6b7280;
}

.mobile-bottom {
    border-top: 1px solid #e5e7eb;
    padding-top: 20px;
    margin-top: 20px;
}

.mobile-signin {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
}

.mobile-signin:hover {
    color: #000;
}

/* Mobile Overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Hero */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    
    .hero-main {
        padding-right: 0;
        text-align: center;
    }
    
    .hero-title {
        font-size: 52px;
    }
    
    .hero-subtitle-inline {
        font-size: 40px;
    }
    
    .hero-description {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 20px;
    }
    
    .hero-container {
        gap: 40px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle-inline {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 18px;
        margin-top: 24px;
    }
    
    .consultation-card {
        padding: 24px 20px;
    }
    
    .consultation-title {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 16px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle-inline {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .consultation-card {
        padding: 20px 16px;
    }
}

/* CATEGORY IMAGE SLIDER - Skillshare Style */
.category-slider {
    background: #fff;
    padding: 0;
    overflow: hidden;
    position: relative;
}

.slider-wrapper {
    position: relative;
    height: 400px;
}

.slider-track {
    display: flex;
    width: calc(300px * 12); /* 12 slide (6+6 tekrar) */
    height: 100%;
    animation: slideCategories 60s linear infinite;
}

@keyframes slideCategories {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-300px * 6)); /* Tam 6 slide kayar ve başa döner */
    }
}

.category-slide {
    min-width: 300px;
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.category-slide:hover {
    transform: scale(1.02);
    z-index: 2;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.7) 100%);
}

.slide-category {
    position: relative;
    z-index: 2;
    padding: 30px 25px;
    width: 100%;
}

.slide-category h3 {
    font-size: 32px;
    font-weight: 900;
    color: #fff;
    margin: 0;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* Pause Button */
.slider-pause {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,0.6);
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
}

.slider-pause:hover {
    background: rgba(0,0,0,0.8);
    transform: scale(1.1);
}

.slider-pause i {
    font-size: 14px;
}

/* Slider pause on hover */
.slider-track:hover {
    animation-play-state: paused;
}

/* Mobile Slider */
@media (max-width: 768px) {
    .slider-wrapper {
        height: 300px;
    }
    
    .category-slide {
        min-width: 250px;
        height: 300px;
    }
    
    .slider-track {
        width: calc(250px * 12);
        animation: slideCategoriesMobile 50s linear infinite;
    }
    
    @keyframes slideCategoriesMobile {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-250px * 6));
        }
    }
    
    .slide-category h3 {
        font-size: 24px;
    }
    
    .slide-category {
        padding: 20px;
    }
    
    .slider-pause {
        width: 35px;
        height: 35px;
        bottom: 15px;
        right: 15px;
    }
    
    .slider-pause i {
        font-size: 12px;
    }
}

/* FEATURES SECTION - Vurgu Alanı */
.features-section {
    background: #fff;
    padding: 80px 20px;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.features-header {
    text-align: center;
    margin-bottom: 60px;
}

.features-title {
    font-size: 48px;
    font-weight: 900;
    color: #000;
    margin-bottom: 16px;
    line-height: 1.2;
}

.features-subtitle {
    font-size: 20px;
    color: #6b7280;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.feature-card {
    text-align: center;
    padding: 40px 24px;
    transition: transform 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: #0a4264;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: background-color 0.2s ease;
}

.feature-card:hover .feature-icon {
    background: #fab123;
}

.feature-icon i {
    font-size: 32px;
    color: #fff;
}

.feature-title {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    margin-bottom: 16px;
    line-height: 1.3;
}

.feature-description {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
    max-width: 300px;
    margin: 0 auto;
}

/* Mobile Features */
@media (max-width: 768px) {
    .features-section {
        padding: 60px 20px;
    }
    
    .features-header {
        margin-bottom: 40px;
    }
    
    .features-title {
        font-size: 36px;
    }
    
    .features-subtitle {
        font-size: 18px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .feature-card {
        padding: 32px 20px;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
    }
    
    .feature-icon i {
        font-size: 28px;
    }
    
    .feature-title {
        font-size: 20px;
    }
    
    .feature-description {
        font-size: 15px;
    }
}

/* PROFESSIONAL DIFFERENTIATORS SECTION */
.differentiators-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 100px 20px;
}

.differentiators-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* OFFICIAL PARTNERS - Şaşaalı */
.official-partners {
    margin-bottom: 80px;
}

.partners-header {
    text-align: center;
    margin-bottom: 60px;
}

.official-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #fab123 0%, #f59e0b 100%);
    color: #fff;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 32px;
    box-shadow: 0 8px 24px rgba(250, 177, 35, 0.3);
}

.partners-title {
    font-size: 56px;
    font-weight: 900;
    color: #000;
    line-height: 1.1;
    margin-bottom: 16px;
}

.partners-subtitle {
    color: #0a4264;
    font-weight: 800;
}

.partners-description {
    font-size: 20px;
    color: #4b5563;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Elite Partners Grid */
.elite-partners-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.elite-partner {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    min-height: 200px;
}

.elite-partner:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.partner-prestige {
    background: #f8fafc;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    min-width: 300px;
    border-right: 1px solid #e5e7eb;
}

.prestige-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #0a4264;
    color: #fff;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.partner-logo-premium {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo-premium img {
    height: 50px;
    filter: grayscale(30%);
    transition: all 0.3s ease;
}

.elite-partner:hover .partner-logo-premium img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.partner-details {
    flex: 1;
    padding: 40px;
}

.partner-details h3 {
    font-size: 28px;
    font-weight: 900;
    color: #000;
    margin-bottom: 16px;
    line-height: 1.2;
}

.partnership-proof {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    padding: 8px 16px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.partnership-proof i {
    color: #10b981;
    font-size: 14px;
}

.partnership-proof span {
    font-size: 13px;
    color: #166534;
    font-weight: 600;
    font-family: 'Courier New', monospace;
}

.partner-details p {
    font-size: 18px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 24px;
}

.exclusive-access {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.access-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 14px;
    color: #374151;
    font-weight: 500;
}

.access-item i {
    color: #0a4264;
    font-size: 16px;
    flex-shrink: 0;
}

/* Partnership Verification */
.partnership-verification {
    text-align: center;
    padding: 32px;
    background: #f0fdf4;
    border: 2px solid #bbf7d0;
    border-radius: 12px;
    margin-bottom: 60px;
}

.verification-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #10b981;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.partnership-verification p {
    font-size: 16px;
    color: #166534;
    font-weight: 600;
    margin: 0;
}

/* Differentiation Message */
.differentiation-message {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px;
    background: #f8fafc;
    border-radius: 8px;
}

.diff-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0a4264;
    color: #fff;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.diff-title {
    font-size: 36px;
    font-weight: 900;
    color: #000;
    margin-bottom: 16px;
    line-height: 1.3;
}

.diff-subtitle {
    font-size: 18px;
    color: #4b5563;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Clean Features Grid (Renkli Çizgi Yok) */
.clean-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.clean-feature {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 32px;
    text-align: center;
    transition: all 0.2s ease;
}

.clean-feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.clean-icon {
    width: 80px;
    height: 80px;
    background: #0a4264;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: background-color 0.2s ease;
}

.clean-feature:hover .clean-icon {
    background: #fab123;
}

.clean-icon i {
    font-size: 32px;
    color: #fff;
}

.clean-feature h3 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 16px;
    line-height: 1.3;
}

.clean-feature p {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.section-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #0a4264;
    padding: 40px;
    border-radius: 8px;
    color: #fff;
}

.cta-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.cta-content p {
    font-size: 16px;
    color: #cbd5e1;
    margin: 0;
}

.cta-button-pro {
    background: #fab123;
    color: #000;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    padding: 16px 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.cta-button-pro:hover {
    background: #f59e0b;
    transform: translateY(-1px);
}

/* Mobile Differentiators */
@media (max-width: 768px) {
    .differentiators-section {
        padding: 60px 20px;
    }
    
    .partners-title {
        font-size: 32px;
    }
    
    .partners-description {
        font-size: 16px;
    }
    
    .elite-partners-grid {
        gap: 24px;
    }
    
    .elite-partner {
        flex-direction: column;
        min-height: auto;
    }
    
    .partner-prestige {
        min-width: 100%;
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
        padding: 24px;
    }
    
    .partner-details {
        padding: 24px;
    }
    
    .partner-details h3 {
        font-size: 22px;
    }
    
    .partner-details p {
        font-size: 16px;
    }
    
    .exclusive-access {
        grid-template-columns: 1fr;
    }
    
    .message-title {
        font-size: 28px;
        line-height: 1.1;
        padding: 0 10px;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .message-subtitle {
        font-size: 16px;
    }
    
    .clean-features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .clean-feature {
        padding: 24px;
    }
    
    .clean-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .clean-icon i {
        font-size: 24px;
    }
    
    .clean-feature h3 {
        font-size: 18px;
    }
    
    .clean-feature p {
        font-size: 14px;
    }
    
    .section-cta {
        flex-direction: column;
        gap: 24px;
        text-align: center;
        padding: 32px 24px;
    }
    
    .cta-button-pro {
        width: 100%;
        justify-content: center;
    }
}

/* COMPARISON SECTION - Görsel Karşılaştırma */
.comparison-section {
    background: #0a4264;
    padding: 100px 20px;
    color: #fff;
}

.comparison-container {
    max-width: 1200px;
    margin: 0 auto;
}

.comparison-header {
    text-align: center;
    margin-bottom: 80px;
}

.comparison-title {
    font-size: 48px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.2;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-subtitle {
    font-size: 18px;
    color: #cbd5e1;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.comparison-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.comparison-side {
    background: #fff;
    border-radius: 8px;
    padding: 40px;
    color: #000;
}

.comparison-side.others {
    border-left: 4px solid #ef4444;
}

.comparison-side.rezora {
    border-left: 4px solid #10b981;
}

.side-header {
    text-align: center;
    margin-bottom: 32px;
}

.side-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
}

.side-icon.danger {
    background: #fef2f2;
    color: #ef4444;
}

.side-icon.success {
    background: #f0fdf4;
    color: #10b981;
}

.side-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
}

.side-header p {
    font-size: 16px;
    color: #6b7280;
    margin: 0;
}

/* .comparison-list boş bırakıldı, margin-bottom .comparison-item'da */

.comparison-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 12px;
    transition: background-color 0.2s ease;
}

.comparison-item.negative {
    background: #fef2f2;
    border: 1px solid #fecaca;
}

.comparison-item.negative:hover {
    background: #fee2e2;
}

.comparison-item.positive {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}

.comparison-item.positive:hover {
    background: #dcfce7;
}

.comparison-item i {
    font-size: 16px;
    flex-shrink: 0;
}

.comparison-item.negative i {
    color: #ef4444;
}

.comparison-item.positive i {
    color: #10b981;
}

.comparison-item span {
    font-size: 16px;
    font-weight: 500;
    color: #374151;
}

/* VS Divider kaldırıldı */

.comparison-cta {
    text-align: center;
    margin-top: 60px;
}

.comparison-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fab123;
    color: #000;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    padding: 20px 40px;
    border-radius: 8px;
    transition: all 0.2s ease;
    box-shadow: 0 8px 24px rgba(250, 177, 35, 0.3);
}

.comparison-cta-button:hover {
    background: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(250, 177, 35, 0.4);
}

/* Mobile Comparison */
@media (max-width: 768px) {
    .comparison-section {
        padding: 60px 20px;
    }
    
    .comparison-title {
        font-size: 28px;
        line-height: 1.1;
        padding: 0 10px;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .comparison-subtitle {
        font-size: 16px;
        padding: 0 10px;
    }
    
    .comparison-table {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .comparison-side {
        padding: 24px;
    }
    
    .side-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .side-header h3 {
        font-size: 20px;
    }
    
    .comparison-item {
        padding: 12px;
    }
    
    .comparison-item span {
        font-size: 14px;
    }
    
    .comparison-cta-button {
        font-size: 16px;
        padding: 16px 32px;
    }
}

/* NEWSLETTER & CONTACT SECTION */
.newsletter-contact-section {
    background: #f8fafc;
    padding: 100px 20px;
}

.newsletter-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Newsletter Section - Tek Sütun */
.newsletter-section {
    background: #fff;
    border-radius: 8px;
    padding: 60px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    text-align: center;
    max-width: 100%;
}

.newsletter-icon {
    width: 80px;
    height: 80px;
    background: #0a4264;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

.newsletter-icon i {
    font-size: 32px;
    color: #fff;
}

.newsletter-title {
    font-size: 42px;
    font-weight: 900;
    color: #000;
    line-height: 1.2;
    margin-bottom: 20px;
}

.newsletter-highlight {
    color: #0a4264;
}

.newsletter-description {
    font-size: 18px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    max-width: 480px;
    margin: 0 auto;
}

.form-container {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.newsletter-input {
    flex: 1;
    padding: 16px 20px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.2s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: #0a4264;
}

.newsletter-button {
    background: #0a4264;
    color: #fff;
    border: none;
    padding: 16px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.newsletter-button:hover {
    background: #083552;
}

.newsletter-privacy {
    font-size: 14px;
    color: #6b7280;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.newsletter-privacy i {
    color: #10b981;
}

/* SKILLSHARE STYLE FOOTER */
.modern-footer {
    background: #1a1a1a;
    color: #f8f9fa;
    padding: 60px 0 30px;
    margin-top: 100px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Footer Brand Section */
.footer-brand {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid #333;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    margin-bottom: 16px;
}

.footer-logo-text {
    font-size: 36px;
    font-weight: 900;
    color: #fff;
    margin: 0 0 16px 0;
    letter-spacing: -1px;
}

.footer-logo-text .logo-accent {
    color: #0ea5e9;
}

.footer-description {
    max-width: 600px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.6;
    color: #adb5bd;
    font-weight: 400;
}

/* Footer Sections - Yatay Düzen */
.footer-sections {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding-bottom: 40px;
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-section a {
    color: #adb5bd;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.2s ease;
}

.footer-section a:hover {
    color: #fff;
}

/* Bottom Section */
.footer-bottom {
    border-top: 1px solid #343a40;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-legal {
    flex: 1;
}

.footer-legal p {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
    line-height: 1.4;
}

.footer-legal a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: #adb5bd;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 32px;
    height: 32px;
    background: rgba(173, 181, 189, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #adb5bd;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 14px;
}

.social-icon:hover {
    background: rgba(173, 181, 189, 0.3);
    color: #fff;
    transform: translateY(-1px);
}

/* Footer Responsive */
@media (max-width: 768px) {
    .modern-footer {
        padding: 40px 0 20px;
        margin-top: 60px;
    }
    
    .footer-brand {
        margin-bottom: 40px;
        padding-bottom: 30px;
    }
    
    .footer-logo-text {
        font-size: 28px;
    }
    
    .footer-description {
        font-size: 15px;
        padding: 0 10px;
    }
    
    .footer-sections {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        padding-bottom: 30px;
    }
    
    .footer-section h4 {
        font-size: 15px;
        margin-bottom: 12px;
    }
    
    .footer-section a {
        font-size: 13px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-legal p {
        font-size: 12px;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .footer-sections {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-description {
        font-size: 14px;
    }
    
    .footer-logo-text {
        font-size: 24px;
    }
}

/* ===== YASAL SAYFALAR (GİZLİLİK & GERİ ÖDEME) ===== */

/* Legal Page Layout */
.legal-page {
    background: #f8fafc;
    min-height: 100vh;
    overflow-x: hidden;
    width: 100%;
}

/* Legal Hero Section */
.legal-hero {
    background: #0a4264;
    color: white;
    padding: 80px 0 60px;
    position: relative;
}

.legal-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.legal-breadcrumb {
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.legal-breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.2s;
}

.legal-breadcrumb a:hover {
    opacity: 0.8;
}

.legal-breadcrumb i {
    margin: 0 10px;
    font-size: 12px;
}

.legal-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 16px;
    line-height: 1.2;
}

.legal-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.5;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.legal-date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
}

/* Legal Content */
.legal-content {
    padding: 60px 0;
}

.legal-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    align-items: start;
}

/* Table of Contents */
.legal-toc {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.legal-toc h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    border-bottom: 2px solid #0ea5e9;
    padding-bottom: 10px;
}

.legal-toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.legal-toc li {
    margin-bottom: 12px;
}

.legal-toc a {
    color: #64748b;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 6px;
    display: block;
    transition: all 0.2s;
    border-left: 3px solid transparent;
}

.legal-toc a:hover {
    background: #f1f5f9;
    color: #0ea5e9;
    border-left-color: #0ea5e9;
}

/* Legal Text Content */
.legal-text {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.legal-section {
    padding: 40px;
    border-bottom: 1px solid #f1f5f9;
}

.legal-section:last-child {
    border-bottom: none;
}

.legal-section.intro {
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
}

.legal-section h2 {
    font-size: 28px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #0ea5e9;
}

.legal-section h3 {
    font-size: 20px;
    font-weight: 700;
    color: #334155;
    margin: 24px 0 16px 0;
}

.legal-section h4 {
    font-size: 16px;
    font-weight: 600;
    color: #475569;
    margin: 20px 0 12px 0;
}

.legal-section p {
    font-size: 16px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 16px;
}

.legal-section ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-section li {
    font-size: 16px;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 8px;
}

.legal-highlight {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    background: rgba(14, 165, 233, 0.1);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #0ea5e9;
    margin-bottom: 24px;
    line-height: 1.6;
}

/* Info Boxes */
.info-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    margin: 20px 0;
    border-left: 4px solid #0ea5e9;
}

.info-box h4 {
    color: #1e293b;
    margin-bottom: 12px;
    font-weight: 700;
}

.alert-box {
    padding: 20px;
    border-radius: 12px;
    margin: 24px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.alert-box i {
    font-size: 20px;
    margin-top: 2px;
}

.alert-box.success {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #15803d;
}

.alert-box.warning {
    background: #fefce8;
    border: 1px solid #fde047;
    color: #a16207;
}

.alert-box.info {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    color: #1d4ed8;
}

/* Guarantee Badge */
.guarantee-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 24px 0;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.guarantee-badge i {
    font-size: 32px;
    opacity: 0.9;
}

.guarantee-badge h3 {
    margin: 0 0 8px 0;
    font-size: 20px;
    font-weight: 700;
    color: white;
}

.guarantee-badge p {
    margin: 0;
    opacity: 0.9;
    color: white;
}

/* Purpose Grid */
.purpose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 24px 0;
}

.purpose-item {
    background: #f8fafc;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    text-align: center;
}

.purpose-item i {
    font-size: 24px;
    color: #0ea5e9;
    margin-bottom: 12px;
}

.purpose-item h4 {
    margin: 0 0 8px 0;
    font-weight: 700;
}

/* Cookie Types */
.cookie-types {
    display: grid;
    gap: 24px;
    margin: 24px 0;
}

.cookie-type {
    background: #f8fafc;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.cookie-type h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #1e293b;
}

.cookie-control {
    background: #fff7ed;
    border: 1px solid #fed7aa;
    padding: 24px;
    border-radius: 12px;
    margin: 24px 0;
}

/* Third Party Grid */
.third-party-grid {
    display: grid;
    gap: 24px;
    margin: 24px 0;
}

.third-party-item {
    background: #f8fafc;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.third-party-item img {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.privacy-link {
    color: #0ea5e9;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
}

/* Security Measures */
.security-measures {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 24px 0;
}

.security-item {
    background: #f8fafc;
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e2e8f0;
}

.security-item i {
    font-size: 24px;
    color: #10b981;
    margin-bottom: 12px;
}

/* Rights Grid */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 24px 0;
}

.right-item {
    background: #f8fafc;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    text-align: center;
}

.right-item i {
    font-size: 20px;
    color: #0ea5e9;
    margin-bottom: 12px;
}

.right-item h4 {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 600;
}

.right-item p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

.rights-process {
    background: #eff6ff;
    padding: 24px;
    border-radius: 12px;
    margin: 24px 0;
}

.rights-process ol {
    margin: 16px 0;
    padding-left: 20px;
}

/* Contact Info */
.contact-info {
    display: grid;
    gap: 20px;
    margin: 24px 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.contact-item i {
    font-size: 20px;
    color: #0ea5e9;
    width: 24px;
    text-align: center;
}

/* Refund Specific Styles */
.withdrawal-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 24px 0;
}

.withdrawal-period,
.extended-guarantee {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    padding: 24px;
    border-radius: 12px;
    text-align: center;
}

.withdrawal-period i,
.extended-guarantee i {
    font-size: 32px;
    color: #10b981;
    margin-bottom: 16px;
}

/* Timeline */
.timeline-refund {
    margin: 32px 0;
}

.timeline {
    display: grid;
    gap: 24px;
    margin: 24px 0;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.timeline-day {
    background: #0ea5e9;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    flex-shrink: 0;
    min-width: 80px;
    text-align: center;
}

.timeline-content h4 {
    margin: 0 0 8px 0;
    font-weight: 700;
    color: #1e293b;
}

.timeline-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.feature {
    background: #e0f2fe;
    color: #0369a1;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

/* Process Steps */
.process-steps {
    margin: 32px 0;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid #f1f5f9;
}

.step:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.step-number {
    background: #0ea5e9;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.step-details {
    margin-top: 12px;
    background: #f8fafc;
    padding: 16px;
    border-radius: 8px;
}

/* Payment Grid */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 24px 0;
}

.payment-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}

.payment-item i {
    font-size: 24px;
    color: #0ea5e9;
    margin-bottom: 12px;
}

.payment-details {
    margin-top: 16px;
    text-align: left;
}

.payment-details p {
    font-size: 14px;
    margin-bottom: 8px;
}

/* Refund Fees */
.refund-fees {
    margin: 32px 0;
}

.fee-info {
    display: grid;
    gap: 24px;
    margin: 24px 0;
}

.no-fee,
.potential-fee {
    padding: 24px;
    border-radius: 12px;
}

.no-fee {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}

.potential-fee {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
}

.no-fee i {
    color: #10b981;
    font-size: 20px;
    margin-bottom: 12px;
}

.potential-fee i {
    color: #0ea5e9;
    font-size: 20px;
    margin-bottom: 12px;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 32px 0;
}

.contact-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}

.contact-card.primary {
    background: #eff6ff;
    border-color: #bfdbfe;
}

.contact-card i {
    font-size: 24px;
    color: #0ea5e9;
    margin-bottom: 16px;
}

.contact-card h3 {
    margin: 0 0 16px 0;
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
}

.contact-details p {
    font-size: 14px;
    margin-bottom: 6px;
}

.contact-details a {
    color: #0ea5e9;
    text-decoration: none;
}

/* Legal Address */
.legal-address {
    background: #f8fafc;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    margin: 24px 0;
}

.legal-address address {
    font-style: normal;
    line-height: 1.6;
}

/* Note Grid */
.note-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 24px 0;
}

.note-item {
    background: #f8fafc;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e2e8f0;
}

.note-item i {
    font-size: 24px;
    color: #10b981;
    margin-bottom: 12px;
}

/* Update History */
.update-history {
    background: #f8fafc;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    margin: 24px 0;
}

.update-history h4 {
    margin-bottom: 12px;
    color: #1e293b;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .legal-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .legal-toc {
        order: 2;
        margin-top: 40px;
    }
    
    .legal-text {
        order: 1;
    }
}

@media (max-width: 768px) {
    .legal-hero {
        padding: 60px 0 40px;
    }
    
    .legal-title {
        font-size: 32px;
    }
    
    .legal-subtitle {
        font-size: 16px;
    }
    
    .legal-container {
        padding: 0 15px;
    }
    
    .legal-section {
        padding: 20px;
    }
    
    .legal-section h2 {
        font-size: 22px;
    }
    
    /* Tüm grid'leri mobilde 1 sütun yap */
    .purpose-grid,
    .security-measures,
    .rights-grid,
    .withdrawal-info,
    .payment-grid,
    .contact-grid,
    .note-grid {
        grid-template-columns: 1fr !important;
        gap: 16px;
    }
    
    .timeline-item,
    .step {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .legal-title {
        font-size: 24px;
    }
    
    .legal-container {
        padding: 0 10px;
    }
    
    .legal-section {
        padding: 16px;
    }
    
    .legal-toc {
        padding: 16px;
    }
}

/* ===== İLETİŞİM SAYFASI ===== */

/* Contact Page Layout */
.contact-page {
    background: #f8fafc;
    min-height: 100vh;
}

/* Contact Hero */
.contact-hero {
    background: linear-gradient(135deg, #0a4264 0%, #1e40af 100%);
    color: white;
    padding: 100px 0 80px;
    position: relative;
}

.contact-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.contact-title {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 24px;
    line-height: 1.1;
}

.title-highlight {
    color: #38bdf8;
}

.contact-description {
    font-size: 20px;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 32px;
}

.response-time {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 16px;
}

/* Contact Methods */
.contact-methods {
    padding: 80px 0;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.contact-method {
    background: white;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.contact-method.urgent {
    border-color: #ef4444;
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.contact-method.urgent .method-icon {
    background: #ef4444;
}

.contact-method.popular {
    border-color: #10b981;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.contact-method.popular .method-icon {
    background: #10b981;
}

.contact-method.popular::before {
    content: 'EN POPÜLER';
    position: absolute;
    top: -8px;
    right: 16px;
    background: #10b981;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.method-icon {
    width: 60px;
    height: 60px;
    background: #0ea5e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: white;
}

.contact-method h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.contact-method p {
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.5;
}

.method-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    margin-bottom: 12px;
}

.method-link.primary {
    background: #0ea5e9;
    color: white;
}

.method-link.primary:hover {
    background: #0284c7;
}

.method-link.whatsapp {
    background: #10b981;
    color: white;
}

.method-link.whatsapp:hover {
    background: #059669;
}

.method-link.secondary {
    background: #f1f5f9;
    color: #334155;
}

.method-link.secondary:hover {
    background: #e2e8f0;
}

.method-link {
    background: #f8fafc;
    color: #475569;
}

.method-link:hover {
    background: #f1f5f9;
}

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

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: white;
}

.form-section-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.form-header {
    margin-bottom: 32px;
}

.form-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 12px;
}

.form-header p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
}

/* Fallback Contact Form */
.fallback-contact-form {
    background: #f8fafc;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

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

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #0ea5e9;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-submit-btn {
    background: linear-gradient(135deg, #0a4264 0%, #1e40af 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(10, 66, 100, 0.3);
}

/* Contact Info Card */
.contact-info-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    height: fit-content;
    position: sticky;
    top: 120px;
}

.contact-info-card h3 {
    font-size: 24px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 24px;
    border-bottom: 2px solid #0ea5e9;
    padding-bottom: 12px;
}

.contact-details {
    margin-bottom: 32px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f5f9;
}

.contact-detail:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.contact-detail i {
    font-size: 18px;
    color: #0ea5e9;
    width: 20px;
    margin-top: 2px;
}

.contact-detail h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 4px 0;
}

.contact-detail p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

.contact-detail a {
    color: #0ea5e9;
    text-decoration: none;
}

.contact-detail small {
    font-size: 12px;
    color: #94a3b8;
}

/* Social Links */
.social-links h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}

.social-link.instagram {
    background: #fdf2f8;
    color: #be185d;
    border: 1px solid #fbcfe8;
}

.social-link.linkedin {
    background: #eff6ff;
    color: #1d4ed8;
    border: 1px solid #bfdbfe;
}

.social-link.youtube {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.social-link.tiktok {
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #d1d5db;
}

/* Office Hours */
.office-hours {
    padding: 60px 0;
    background: #f8fafc;
}

.hours-content {
    text-align: center;
    margin-bottom: 48px;
}

.hours-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 16px;
}

.hours-content p {
    font-size: 18px;
    color: #64748b;
    line-height: 1.6;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.hours-item {
    background: white;
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb;
}

.hours-item i {
    font-size: 24px;
    color: #0ea5e9;
    margin-bottom: 16px;
}

.hours-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
}

.hours-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 8px;
}

.hours-detail:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.day {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

.time {
    font-size: 14px;
    color: #1e293b;
    font-weight: 600;
}

/* Contact FAQ */
.contact-faq {
    padding: 80px 0;
    background: white;
}

.faq-header {
    text-align: center;
    margin-bottom: 48px;
}

.faq-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 16px;
}

.faq-header p {
    font-size: 18px;
    color: #64748b;
    line-height: 1.6;
}

.quick-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.quick-faq-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.quick-faq-item:hover {
    background: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.quick-faq-item i {
    font-size: 24px;
    color: #0ea5e9;
    margin-bottom: 16px;
}

.quick-faq-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.quick-faq-item p {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 12px;
    line-height: 1.5;
}

.faq-count {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #0ea5e9;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

.faq-cta {
    text-align: center;
    padding: 32px;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.faq-cta p {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 16px;
}

.faq-link {
    color: #0ea5e9;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.faq-link:hover {
    text-decoration: underline;
}

/* Contact Form 7 Styling */
.cf7-contact-wrapper .wpcf7-form {
    background: #f8fafc;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.cf7-contact-wrapper .wpcf7-text,
.cf7-contact-wrapper .wpcf7-email,
.cf7-contact-wrapper .wpcf7-tel,
.cf7-contact-wrapper .wpcf7-textarea,
.cf7-contact-wrapper .wpcf7-select {
    width: 100% !important;
    padding: 12px 16px !important;
    border: 2px solid #e5e7eb !important;
    border-radius: 8px !important;
    font-size: 16px !important;
    font-family: 'Inter', sans-serif !important;
    margin-bottom: 16px !important;
}

.cf7-contact-wrapper .wpcf7-submit {
    background: linear-gradient(135deg, #0a4264 0%, #1e40af 100%) !important;
    color: white !important;
    border: none !important;
    padding: 16px 32px !important;
    border-radius: 12px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    margin-top: 16px !important;
    width: 100% !important;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-hero {
        padding: 80px 0 60px;
    }
    
    .contact-title {
        font-size: 36px;
    }
    
    .contact-description {
        font-size: 16px;
    }
    
    .methods-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-section-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info-card {
        position: static;
        order: -1;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .hours-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .quick-faq-grid {
        grid-template-columns: 1fr;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== DİĞER STILLER DEVAM EDİYOR ===== */

/* Mobile News Bar */
@media (max-width: 768px) {
    .news-container {
        padding: 0 16px;
        gap: 16px;
    }
    
    .news-left {
        font-size: 12px;
    }
    
    .news-right {
        gap: 8px;
    }
    
    .news-text {
        display: none;
    }
    
    .news-social {
        width: 24px;
        height: 24px;
    }
    
    .navbar {
        top: 30px;
    }
}

/* SUCCESS MODAL */
.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    animation: modalFadeIn 0.3s ease;
}

.success-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
}

.modal-content {
    background: #fff;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    z-index: 1;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    position: relative;
    text-align: center;
    padding: 40px 40px 20px;
    border-bottom: 1px solid #f1f5f9;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: checkBounce 0.6s ease;
}

@keyframes checkBounce {
    0%, 20%, 60%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    80% {
        transform: translateY(-5px);
    }
}

.success-icon i {
    font-size: 36px;
    color: #fff;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: #f8fafc;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: #e5e7eb;
    transform: scale(1.1);
}

.modal-close i {
    color: #6b7280;
    font-size: 16px;
}

.modal-body {
    padding: 20px 40px 40px;
    text-align: center;
}

.modal-body h3 {
    font-size: 32px;
    font-weight: 800;
    color: #000;
    margin-bottom: 16px;
    line-height: 1.2;
}

.modal-body p {
    font-size: 18px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 24px;
}

.modal-details {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
    text-align: left;
}

.modal-details p {
    margin: 0 0 8px 0;
    font-size: 16px;
    color: #374151;
}

.modal-details p:last-child {
    margin-bottom: 0;
}

.modal-details strong {
    color: #0a4264;
    font-weight: 600;
}

.modal-footer {
    padding: 0 40px 40px;
    text-align: center;
}

.modal-btn {
    background: #0a4264;
    color: #fff;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 120px;
}

.modal-btn:hover {
    background: #0f172a;
    transform: translateY(-1px);
}

/* Mobile Modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        border-radius: 16px;
    }
    
    .modal-header {
        padding: 30px 24px 16px;
    }
    
    .success-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 16px;
    }
    
    .success-icon i {
        font-size: 28px;
    }
    
    .modal-body {
        padding: 16px 24px 30px;
    }
    
    .modal-body h3 {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .modal-body p {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .modal-details {
        padding: 16px;
        margin-bottom: 20px;
    }
    
    .modal-details p {
        font-size: 14px;
    }
    
    .modal-footer {
        padding: 0 24px 30px;
    }
    
    .modal-btn {
        width: 100%;
        padding: 14px;
    }
}

/* Mobile Footer */
@media (max-width: 768px) {
    .skillshare-footer {
        padding: 32px 0 16px;
    }
    
    .footer-sections {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 24px;
        padding-bottom: 32px;
    }
    
    .footer-section h4 {
        font-size: 15px;
    }
    
    .footer-section a {
        font-size: 13px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .footer-legal p {
        font-size: 13px;
    }
    
    .footer-social {
        justify-content: center;
    }
}

/* BLOG PAGE STYLES */
.blog-page {
    padding: 120px 0 80px;
    background: #f8fafc;
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-header {
    text-align: center;
    margin-bottom: 60px;
}

.blog-header h1 {
    font-size: 48px;
    font-weight: 900;
    color: #000;
    margin-bottom: 16px;
}

.blog-header p {
    font-size: 20px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.blog-thumbnail {
    height: 200px;
    overflow: hidden;
}

.blog-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.blog-card-content {
    padding: 24px;
}

.blog-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 14px;
}

.blog-date {
    color: #6b7280;
}

.blog-category {
    color: #0a4264;
    font-weight: 600;
}

.blog-title {
    margin-bottom: 16px;
}

.blog-title a {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    text-decoration: none;
    line-height: 1.3;
    transition: color 0.2s ease;
}

.blog-title a:hover {
    color: #0a4264;
}

.blog-excerpt {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0a4264;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.read-more:hover {
    color: #0f172a;
    transform: translateX(4px);
}

.blog-pagination {
    text-align: center;
}

.blog-pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.blog-pagination a,
.blog-pagination .current {
    padding: 12px 20px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.blog-pagination a:hover,
.blog-pagination .current {
    background: #0a4264;
    color: #fff;
    border-color: #0a4264;
}

.no-posts {
    text-align: center;
    padding: 80px 20px;
}

.no-posts i {
    font-size: 64px;
    color: #d1d5db;
    margin-bottom: 24px;
}

.no-posts h3 {
    font-size: 24px;
    font-weight: 700;
    color: #374151;
    margin-bottom: 12px;
}

.no-posts p {
    color: #6b7280;
    font-size: 16px;
    max-width: 400px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .blog-page {
        padding: 100px 0 60px;
    }
    
    .blog-header h1 {
        font-size: 36px;
    }
    
    .blog-header p {
        font-size: 18px;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .blog-card-content {
        padding: 20px;
    }
    
    .blog-title a {
        font-size: 20px;
    }
}

/* LEARNDASH STYLES */

/* PROFESSIONAL COURSES ARCHIVE */
.professional-courses-archive {
    padding: 120px 0 80px;
    background: #f8fafc;
}

.courses-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Program Hero Section */
.program-hero {
    background: linear-gradient(135deg, #fafbff 0%, #f0f4f8 100%);
    border-radius: 24px;
    padding: 80px;
    margin-bottom: 120px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.program-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(10, 66, 100, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0a4264;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.program-hero h1 {
    font-size: 56px;
    font-weight: 900;
    color: #000;
    line-height: 1.1;
    margin-bottom: 24px;
}

.program-hero p {
    font-size: 22px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 90%;
}

.program-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 900;
    color: #0a4264;
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
    margin-top: 8px;
}

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

.primary-btn, .secondary-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.primary-btn {
    background: #0a4264;
    color: #fff;
    box-shadow: 0 8px 24px rgba(10, 66, 100, 0.3);
}

.primary-btn:hover {
    background: #0f172a;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(10, 66, 100, 0.4);
}

.secondary-btn {
    background: #fff;
    color: #0a4264;
    border: 2px solid #e5e7eb;
}

.secondary-btn:hover {
    border-color: #0a4264;
    transform: translateY(-2px);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    z-index: 1;
}

.video-preview {
    position: relative;
}

.video-window {
    background: #1a1a1a;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.15);
    transform: rotate(0deg);
    transition: transform 0.3s ease;
    cursor: pointer;
    aspect-ratio: 16/9;
}

.video-window:hover {
    transform: scale(1.02);
    box-shadow: 0 32px 100px rgba(0, 0, 0, 0.2);
}

.window-controls {
    background: #2d2d2d;
    padding: 12px 16px;
    display: flex;
    gap: 8px;
}

.window-controls span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.window-controls span:nth-child(1) { background: #ff5f56; }
.window-controls span:nth-child(2) { background: #ffbd2e; }
.window-controls span:nth-child(3) { background: #27ca3f; }

.video-content {
    padding: 60px 40px;
    text-align: center;
    color: #fff;
    background: linear-gradient(45deg, #0a4264, #1e40af);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-content:hover {
    background: linear-gradient(45deg, #0f172a, #1e40af);
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.3s ease;
}

.video-content:hover .play-overlay {
    background: rgba(0, 0, 0, 0.6);
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border: 3px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.video-title {
    font-size: 18px;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.video-content i {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.8;
}

.video-content span {
    display: block;
    font-size: 18px;
    font-weight: 600;
}

.partner-badges {
    position: absolute;
    top: -20px;
    right: -20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.badge.amazon { background: #ff9500; color: #fff; }
.badge.tiktok { background: #000; color: #fff; }
.badge.shopify { background: #95bf47; color: #fff; }

/* What You'll Learn Section */
.what-learn {
    margin-bottom: 120px;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 900;
    color: #000;
    margin-bottom: 16px;
    line-height: 1.1;
}

.section-header p {
    font-size: 20px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.learn-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.learn-card {
    background: #fff;
    border-radius: 20px;
    padding: 48px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
}

.learn-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-color: #0a4264;
}

.learn-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
}

.learn-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, currentColor, currentColor);
    opacity: 0.1;
    border-radius: inherit;
}

.learn-icon.amazon { background: linear-gradient(45deg, #ff9500, #ff6b35); }
.learn-icon.tiktok { background: linear-gradient(45deg, #000, #333); }
.learn-icon.shopify { background: linear-gradient(45deg, #95bf47, #7cb342); }
.learn-icon.marketing { background: linear-gradient(45deg, #0a4264, #1e40af); }

.learn-card h3 {
    font-size: 28px;
    font-weight: 800;
    color: #000;
    margin-bottom: 24px;
    line-height: 1.2;
}

.learn-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.learn-card li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 16px;
    color: #4b5563;
    font-weight: 500;
}

.learn-card li:before {
    content: '✓';
    width: 20px;
    height: 20px;
    background: #10b981;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    flex-shrink: 0;
}

/* Success Stories */
.success-stories {
    margin-bottom: 120px;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.story-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid #e5e7eb;
    text-align: center;
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.story-metrics {
    margin-bottom: 24px;
}

.metric-large {
    display: block;
    font-size: 36px;
    font-weight: 900;
    color: #0a4264;
    line-height: 1;
}

.metric-small {
    font-size: 14px;
    color: #6b7280;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.story-card p {
    font-size: 18px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 24px;
    font-style: italic;
}

.story-author {
    color: #6b7280;
    font-size: 14px;
}

.story-author strong {
    color: #000;
    font-weight: 700;
}

/* Final CTA */
.final-cta {
    background: #0a4264;
    color: #fff;
    border-radius: 24px;
    padding: 80px;
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.1;
}

.cta-content p {
    font-size: 20px;
    color: #cbd5e1;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-price {
    margin-bottom: 40px;
}

.price {
    font-size: 56px;
    font-weight: 900;
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.price-note {
    color: #cbd5e1;
    font-size: 16px;
}

.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fab123;
    color: #000;
    padding: 20px 40px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 40px;
}

.cta-primary:hover {
    background: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(245, 158, 11, 0.3);
}

.guarantees {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.guarantee {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #cbd5e1;
    font-size: 14px;
    font-weight: 500;
}

.guarantee i {
    color: #10b981;
    font-size: 16px;
}

/* SIMPLE COURSES SECTION - Udemy Style */
.simple-courses {
    background: #f7f9fa;
    padding: 40px 20px;
    margin-bottom: 0;
}

.simple-courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.simple-course-card {
    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.simple-course-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.simple-course-image {
    height: 160px;
    overflow: hidden;
    background: #f1f3f4;
}

.simple-course-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.course-thumb-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.simple-course-card:hover .course-thumb-image {
    opacity: 0.9;
}

.course-thumb-placeholder {
    width: 100%;
    height: 100%;
    background: #f1f3f4;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 24px;
    text-decoration: none;
}

.course-thumb-placeholder:hover {
    background: #e5e7eb;
}

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

.course-category {
    color: #5624d0;
    font-size: 12px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 4px;
}

.course-meta-row {
    display: flex;
    gap: 12px;
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 8px;
}

.course-meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.course-meta-item i {
    color: #6b7280;
    font-size: 11px;
}

.simple-course-title {
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.simple-course-title a {
    color: #1c1d1f;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: color 0.2s ease;
    display: block;
    line-height: 1.2;
}

.simple-course-title a:hover {
    color: #5624d0;
}

.course-description {
    color: #6b7280;
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 12px;
    flex: 1;
}

.course-instructor-info {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.course-instructor-info img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: none;
}

.instructor-name-simple {
    font-size: 12px;
    color: #6b7280;
    font-weight: 400;
}

.course-rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.stars {
    display: flex;
    gap: 1px;
}

.stars i {
    color: #e59819;
    font-size: 12px;
}

.stars .far {
    color: #d1d5db;
}

.rating-text {
    font-size: 12px;
    color: #6b7280;
    font-weight: 400;
}

.course-price-footer {
    margin-top: auto;
}

.price-display {
    font-size: 16px;
    font-weight: 700;
}

.price-display.free {
    color: #01b96f;
}

.price-display.paid {
    color: #1c1d1f;
}

.course-thumb {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.course-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.thumb-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a4264 0%, #1e40af 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    position: relative;
}

.thumb-placeholder::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumb-placeholder i {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.9;
}

.course-price {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #0a4264 0%, #1e40af 100%);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.course-info {
    padding: 32px;
    position: relative;
}

.course-meta-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 14px;
    color: #6b7280;
}

.course-meta-header span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.course-meta-header i {
    color: #0a4264;
    font-size: 16px;
}

.course-info h3 {
    margin-bottom: 16px;
}

.course-info h3 a {
    color: #000;
    text-decoration: none;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.3;
    transition: color 0.2s ease;
}

.course-info h3 a:hover {
    color: #0a4264;
}

.course-excerpt {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 16px;
}

.course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}

.course-instructor {
    display: flex;
    align-items: center;
    gap: 8px;
}

.course-instructor img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #e5e7eb;
}

.instructor-name {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

.course-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0a4264;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    padding: 8px 16px;
    border: 2px solid #0a4264;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.course-link:hover {
    background: #0a4264;
    color: #fff;
    transform: translateY(-1px);
}

/* Mobile Responsiveness - Updated */
@media (max-width: 768px) {
    .program-hero {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 24px;
        text-align: center;
    }
    
    .program-hero h1 {
        font-size: 36px;
    }
    
    .program-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .learn-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .learn-card {
        padding: 32px 24px;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .final-cta {
        padding: 40px 24px;
    }
    
    .final-cta h2 {
        font-size: 32px;
    }
    
    .guarantees {
        flex-direction: column;
        gap: 16px;
    }
    
    /* About page mobile */
    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .problem-solution-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .differences-showcase {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .story-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    /* Simple courses mobile */
    .simple-courses-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .simple-course-card {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .simple-course-image {
        height: 180px;
    }
    
    .simple-course-content {
        padding: 14px;
    }
    
    .course-meta-row {
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 6px;
    }
    
    .simple-course-title a {
        font-size: 15px;
    }
    
    .course-description {
        font-size: 12px;
    }
}

/* Tablet responsive */
@media (max-width: 1024px) and (min-width: 769px) {
    .simple-courses-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .simple-courses {
        padding: 30px 16px;
    }
    
    .simple-courses-grid {
        gap: 16px;
    }
    
    .simple-course-image {
        height: 160px;
    }
    
    .simple-course-content {
        padding: 12px;
    }
    
    .course-meta-row {
        gap: 8px;
    }
    
    .simple-course-title a {
        font-size: 14px;
    }
}

/* Course Archive (fallback) */
.learndash-courses-archive {
    padding: 120px 0 80px;
    background: #f8fafc;
}

.courses-archive-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.courses-header {
    text-align: center;
    margin-bottom: 60px;
}

.courses-title {
    font-size: 48px;
    font-weight: 900;
    color: #000;
    margin-bottom: 16px;
}

.courses-description {
    font-size: 20px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto 40px;
}

.courses-search {
    max-width: 500px;
    margin: 0 auto;
}

.course-search-form {
    display: flex;
    gap: 12px;
}

.search-input-group {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.search-input-group i {
    position: absolute;
    left: 16px;
    color: #6b7280;
    z-index: 1;
}

.search-input-group input[type="text"] {
    width: 100%;
    padding: 14px 16px 14px 44px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.2s ease;
}

.search-input-group input[type="text"]:focus {
    outline: none;
    border-color: #0a4264;
}

.search-btn {
    padding: 14px 24px;
    background: #0a4264;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.search-btn:hover {
    background: #0f172a;
}

.courses-filters {
    margin-bottom: 40px;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 12px 24px;
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    color: #374151;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-tab:hover,
.filter-tab.active {
    background: #0a4264;
    color: #fff;
    border-color: #0a4264;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.course-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.course-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.course-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.course-image,
.course-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.course-placeholder {
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 48px;
    text-decoration: none;
}

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

.course-price-badge {
    position: absolute;
    top: 16px;
    right: 16px;
}

.course-price-badge .price {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.course-price-badge .price.free {
    background: #10b981;
    color: #fff;
}

.course-price-badge .price.paid {
    background: #0a4264;
    color: #fff;
}

.course-card-content {
    padding: 24px;
}

.course-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #6b7280;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.meta-item i {
    color: #0a4264;
}

.course-card-title {
    margin-bottom: 12px;
}

.course-card-title a {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    text-decoration: none;
    line-height: 1.3;
    transition: color 0.2s ease;
}

.course-card-title a:hover {
    color: #0a4264;
}

.course-excerpt {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 16px;
}

.course-instructor {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.course-instructor img {
    border-radius: 50%;
}

.instructor-name {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

.course-progress {
    margin-bottom: 16px;
}

.progress-bar {
    background: #e5e7eb;
    height: 6px;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-fill {
    background: #10b981;
    height: 100%;
    border-radius: 3px;
    transition: width 0.3s ease;
}

.progress-text {
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
}

.course-actions {
    margin-top: auto;
}

.course-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.course-btn.enroll {
    background: #0a4264;
    color: #fff;
}

.course-btn.enroll:hover {
    background: #0f172a;
}

.course-btn.continue {
    background: #10b981;
    color: #fff;
}

.course-btn.continue:hover {
    background: #059669;
}

/* CLASSIC COURSE SINGLE - StudyHub Style */
.classic-course-single {
    padding: 120px 0 80px;
    background: #f8fafc;
}

.course-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Course Header */
.course-header {
    margin-bottom: 40px;
}

.course-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 14px;
}

.course-breadcrumb a {
    color: #0a4264;
    text-decoration: none;
    transition: color 0.2s ease;
}

.course-breadcrumb a:hover {
    color: #0f172a;
}

.course-breadcrumb span {
    color: #9ca3af;
}

.course-main-title {
    font-size: 48px;
    font-weight: 900;
    color: #000;
    line-height: 1.2;
    margin-bottom: 16px;
}

.course-subtitle {
    font-size: 20px;
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 32px;
}

.course-meta-info {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.course-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar img {
    border-radius: 50%;
    border: 2px solid #e5e7eb;
}

.author-label {
    display: block;
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 2px;
}

.author-name {
    font-size: 16px;
    color: #000;
    font-weight: 600;
}

.course-stats {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

.stat-item i {
    color: #0a4264;
    font-size: 16px;
}

/* Course About */
.course-about {
    margin-bottom: 50px;
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    color: #000;
    margin-bottom: 24px;
    border-bottom: 3px solid #0a4264;
    padding-bottom: 12px;
}

.course-description {
    font-size: 16px;
    line-height: 1.7;
    color: #374151;
}

.course-description h3 {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin: 32px 0 16px;
}

.course-description ul {
    margin: 16px 0 16px 20px;
}

.course-description li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Course Curriculum */
.course-curriculum {
    margin-bottom: 50px;
}

.curriculum-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 32px;
    font-weight: 500;
}

.curriculum-sections {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.curriculum-section {
    border-bottom: 1px solid #e5e7eb;
}

.curriculum-section:last-child {
    border-bottom: none;
}

.section-header {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.2s ease;
}

.section-header:hover {
    background: #f8fafc;
}

.section-info h3 {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 4px;
}

.section-meta {
    font-size: 14px;
    color: #6b7280;
}

.section-toggle i {
    color: #6b7280;
    transition: transform 0.3s ease;
}

.section-content {
    border-top: 1px solid #f1f5f9;
}

.lesson-list {
    padding: 0;
}

.lesson-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    border-bottom: 1px solid #f8fafc;
    transition: background 0.2s ease;
}

.lesson-item:hover {
    background: #f8fafc;
}

.lesson-item:last-child {
    border-bottom: none;
}

.lesson-item i {
    color: #0a4264;
    font-size: 16px;
    width: 20px;
}

.lesson-title {
    flex: 1;
    font-weight: 500;
    color: #374151;
}

.lesson-duration {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

/* Instructor Section */
.instructor-section {
    margin-bottom: 50px;
}

.instructor-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.instructor-avatar img {
    border-radius: 50%;
    border: 3px solid #e5e7eb;
}

.instructor-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
}

.instructor-title {
    font-size: 16px;
    color: #0a4264;
    font-weight: 600;
    margin-bottom: 16px;
}

.instructor-stats {
    display: flex;
    gap: 24px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.instructor-stats span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

.instructor-stats i {
    color: #0a4264;
}

.instructor-bio p {
    font-size: 16px;
    line-height: 1.6;
    color: #4b5563;
    margin: 0;
}

/* Course Sidebar */
.course-sidebar {
    position: sticky;
    top: 140px;
    height: fit-content;
}

.course-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.course-preview {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

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

.preview-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a4264, #1e40af);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-overlay:hover {
    background: rgba(0, 0, 0, 0.5);
}

.play-btn {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.play-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.preview-text {
    font-size: 16px;
    font-weight: 600;
}

.course-pricing {
    padding: 32px;
    border-bottom: 1px solid #f1f5f9;
}

.price-section {
    text-align: center;
    margin-bottom: 24px;
}

.price-main {
    font-size: 48px;
    font-weight: 900;
    color: #000;
    line-height: 1;
    margin-bottom: 4px;
}

.price-note {
    font-size: 14px;
    color: #6b7280;
}

.enroll-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    background: #0a4264;
    color: #fff;
    padding: 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-bottom: 16px;
}

.enroll-button:hover {
    background: #0f172a;
    transform: translateY(-1px);
}

.guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: #10b981;
    font-weight: 600;
}

.course-includes,
.course-requirements {
    padding: 32px;
    border-bottom: 1px solid #f1f5f9;
}

.course-requirements {
    border-bottom: none;
}

.course-includes h3,
.course-requirements h3 {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 16px;
}

.course-includes ul,
.course-requirements ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.course-includes li,
.course-requirements li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #374151;
    font-weight: 500;
}

.course-includes i {
    color: #0a4264;
    font-size: 16px;
    width: 20px;
}

/* Related Courses */
.related-courses {
    background: #fff;
    padding: 80px 0;
    margin-top: 80px;
}

.related-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.related-courses h2 {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    color: #000;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.related-course-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.related-course-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.related-course-image {
    height: 140px;
    overflow: hidden;
}

.related-course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-placeholder {
    width: 100%;
    height: 100%;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 32px;
}

.related-course-info {
    padding: 20px;
}

.related-course-info h3 {
    margin-bottom: 12px;
}

.related-course-info h3 a {
    color: #000;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    transition: color 0.2s ease;
}

.related-course-info h3 a:hover {
    color: #0a4264;
}

.related-course-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.course-instructor {
    color: #6b7280;
}

.related-course-meta .course-price {
    color: #0a4264;
    font-weight: 700;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .course-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .course-sidebar {
        position: static;
        order: -1;
    }
    
    .course-main-title {
        font-size: 32px;
    }
    
    .course-meta-info {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .instructor-card {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }
    
    .instructor-stats {
        justify-content: center;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* PROFESSIONAL COURSE SINGLE (backup) */
.professional-course-single {
    padding: 120px 0 80px;
    background: #f8fafc;
}

.course-sales-hero {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 80px 0;
    margin-bottom: 100px;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.course-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0a4264;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.course-sales-hero .course-title {
    font-size: 56px;
    font-weight: 900;
    color: #000;
    line-height: 1.1;
    margin-bottom: 24px;
}

.course-subtitle {
    font-size: 24px;
    color: #4b5563;
    line-height: 1.4;
    margin-bottom: 40px;
    max-width: 90%;
}

.course-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.highlight i {
    color: #0a4264;
    font-size: 20px;
    width: 24px;
}

.highlight span {
    font-weight: 600;
    color: #374151;
}

/* Course Single (fallback) */
.learndash-course-single {
    padding: 120px 0 80px;
}

.ld-course-hero {
    background: linear-gradient(135deg, #fafbff 0%, #f1f5f9 100%);
    padding: 80px 0;
    margin-bottom: 80px;
}

.course-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.course-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.course-price {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.course-price.free {
    background: #10b981;
    color: #fff;
}

.course-price.paid {
    background: #0a4264;
    color: #fff;
}

.course-stats {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #6b7280;
}

.course-stats span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.course-stats i {
    color: #0a4264;
}

.course-title {
    font-size: 48px;
    font-weight: 900;
    color: #000;
    line-height: 1.1;
    margin-bottom: 20px;
}

.course-excerpt {
    font-size: 20px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 32px;
}

.course-instructor {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.instructor-avatar img {
    border-radius: 50%;
}

.instructor-label {
    display: block;
    font-size: 14px;
    color: #6b7280;
}

.instructor-name {
    font-size: 18px;
    color: #000;
}

.course-hero-image .course-featured-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.ld-course-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.course-content-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.course-main-content h2 {
    font-size: 32px;
    font-weight: 800;
    color: #000;
    margin-bottom: 20px;
}

.course-sidebar {
    position: sticky;
    top: 140px;
    height: fit-content;
}

.course-info-widget,
.related-courses-widget {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

.course-info-widget h3,
.related-courses-widget h3 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 16px;
}

.course-info-list {
    list-style: none;
    padding: 0;
}

.course-info-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
    color: #374151;
}

.course-info-list li:last-child {
    border-bottom: none;
}

.course-info-list i {
    color: #0a4264;
    width: 16px;
}

.related-course-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
}

.related-course-item:last-child {
    border-bottom: none;
}

.related-course-link {
    display: flex;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s ease;
}

.related-course-link:hover {
    opacity: 0.8;
}

.related-course-thumb {
    width: 60px;
    height: 40px;
    object-fit: cover;
    border-radius: 6px;
}

.related-course-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    margin-bottom: 4px;
    line-height: 1.3;
}

.related-course-price {
    font-size: 12px;
    color: #0a4264;
    font-weight: 600;
}

@media (max-width: 768px) {
    .courses-title,
    .course-title {
        font-size: 36px;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
    }
    
    .course-hero-container,
    .course-content-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .course-hero-image {
        order: -1;
    }
    
    .course-sidebar {
        position: static;
    }
}

/* CONTACT FORM 7 STYLES */
.wpcf7 {
    margin: 0;
}

.wpcf7-form {
    display: grid;
    gap: 20px;
}

.wpcf7-form-control-wrap {
    display: block;
    position: relative;
}

.wpcf7-form-control {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s ease;
    background: #fff;
}

.wpcf7-form-control:focus {
    outline: none;
    border-color: #0a4264;
    box-shadow: 0 0 0 3px rgba(10, 66, 100, 0.1);
}

.wpcf7-textarea {
    min-height: 120px;
    resize: vertical;
}

.wpcf7-select {
    cursor: pointer;
}

.wpcf7-submit {
    background: #0a4264;
    color: #fff;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    justify-self: start;
}

.wpcf7-submit:hover {
    background: #0f172a;
    transform: translateY(-1px);
}

.wpcf7-submit:active {
    transform: translateY(0);
}

.wpcf7-validation-errors,
.wpcf7-acceptance-missing {
    background: #fee;
    border: 1px solid #fcc;
    border-radius: 8px;
    padding: 16px;
    margin: 16px 0;
    color: #c33;
}

.wpcf7-mail-sent-ok {
    background: #efe;
    border: 1px solid #cfc;
    border-radius: 8px;
    padding: 16px;
    margin: 16px 0;
    color: #3c3;
}

.wpcf7-not-valid-tip {
    color: #c33;
    font-size: 14px;
    margin-top: 4px;
}

.wpcf7-spinner {
    visibility: hidden;
    width: 24px;
    height: 24px;
}

/* Consultation Form Specific */
.consultation-form.wpcf7-form {
    grid-template-columns: 1fr;
    gap: 16px;
}

.consultation-form .wpcf7-submit {
    width: 100%;
    justify-self: stretch;
}

/* Form Row Layout for Detailed Forms */
.consultation-booking-form .form-row,
.wpcf7-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 768px) {
    .consultation-booking-form .form-row,
    .wpcf7-form .form-row {
        grid-template-columns: 1fr;
    }
}

/* Better spacing for consultation card */
.consultation-card {
    padding: 32px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.consultation-form-card {
    padding: 32px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.consultation-form-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin-bottom: 16px;
    text-align: center;
}

/* STUDENT DASHBOARD STYLES */
.student-dashboard {
    padding: 120px 0 80px;
    background: #f8fafc;
}

.dashboard-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.dashboard-header {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.user-welcome {
    display: flex;
    align-items: center;
    gap: 24px;
}

.user-avatar img {
    border-radius: 50%;
    border: 3px solid #0a4264;
}

.welcome-text {
    font-size: 32px;
    font-weight: 800;
    color: #000;
    margin-bottom: 8px;
}

.user-stats {
    display: flex;
    gap: 24px;
    color: #6b7280;
    font-size: 16px;
}

.user-stats span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.user-stats i {
    color: #0a4264;
}

.quick-actions {
    display: flex;
    gap: 16px;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #0a4264;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.action-btn.secondary {
    background: #6b7280;
}

.action-btn:hover {
    background: #0f172a;
    transform: translateY(-1px);
}

.action-btn.secondary:hover {
    background: #4b5563;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.dashboard-section {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    margin-bottom: 32px;
}

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

.section-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-header i {
    color: #0a4264;
}

.view-all {
    color: #0a4264;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.2s ease;
}

.view-all:hover {
    color: #0f172a;
}

.course-progress-cards {
    display: grid;
    gap: 24px;
}

.course-progress-card {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.course-progress-card:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
}

.course-thumbnail {
    position: relative;
    width: 120px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.course-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-thumbnail {
    width: 100%;
    height: 100%;
    background: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 24px;
}

.progress-overlay {
    position: absolute;
    top: 8px;
    right: 8px;
}

.progress-circle {
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
}

.course-info {
    flex: 1;
}

.course-info h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
}

.course-info h3 a {
    color: #000;
    text-decoration: none;
    transition: color 0.2s ease;
}

.course-info h3 a:hover {
    color: #0a4264;
}

.progress-bar {
    background: #e5e7eb;
    height: 6px;
    border-radius: 3px;
    overflow: hidden;
    margin: 8px 0;
}

.progress-fill {
    background: #10b981;
    height: 100%;
    border-radius: 3px;
    transition: width 0.3s ease;
}

.progress-text {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 12px;
}

.continue-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0a4264;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
}

.continue-btn:hover {
    color: #0f172a;
    transform: translateX(4px);
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.activity-item {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 16px;
    background: #f8fafc;
    border-radius: 8px;
}

.activity-icon {
    width: 40px;
    height: 40px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.activity-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-bottom: 4px;
}

.activity-content p {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 4px;
}

.activity-date {
    color: #9ca3af;
    font-size: 12px;
}

.certificates-grid {
    display: grid;
    gap: 16px;
}

.certificate-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: #f8fafc;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.certificate-card:hover {
    background: #f1f5f9;
}

.certificate-icon {
    width: 48px;
    height: 48px;
    background: #fab123;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    flex-shrink: 0;
}

.certificate-info {
    flex: 1;
}

.certificate-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-bottom: 4px;
}

.certificate-info p {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 4px;
}

.certificate-date {
    color: #9ca3af;
    font-size: 12px;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #0a4264;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.download-btn:hover {
    background: #0f172a;
    transform: translateY(-1px);
}

.quick-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: #f8fafc;
    border-radius: 8px;
    text-decoration: none;
    color: #374151;
    transition: all 0.2s ease;
}

.quick-link:hover {
    background: #f1f5f9;
    color: #0a4264;
}

.quick-link i:first-child {
    color: #0a4264;
    width: 20px;
}

.quick-link span {
    flex: 1;
    font-weight: 500;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-state.small {
    padding: 40px 20px;
}

.empty-state i {
    font-size: 64px;
    color: #d1d5db;
    margin-bottom: 24px;
}

.empty-state.small i {
    font-size: 48px;
    margin-bottom: 16px;
}

.empty-state h3 {
    font-size: 24px;
    font-weight: 700;
    color: #374151;
    margin-bottom: 12px;
}

.empty-state p {
    color: #6b7280;
    font-size: 16px;
    margin-bottom: 24px;
}

.start-learning-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: #0a4264;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.start-learning-btn:hover {
    background: #0f172a;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .dashboard-header {
        flex-direction: column;
        gap: 24px;
        text-align: center;
        padding: 24px;
    }
    
    .user-welcome {
        flex-direction: column;
        text-align: center;
    }
    
    .welcome-text {
        font-size: 24px;
    }
    
    .user-stats {
        flex-direction: column;
        gap: 12px;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .dashboard-section {
        padding: 24px;
    }
    
    .course-progress-card {
        flex-direction: column;
        text-align: center;
    }
    
    .course-thumbnail {
        width: 100%;
        height: 160px;
    }
}

/* Professional Course Single - Additional Styles */
.enroll-btn {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: #0a4264;
    color: #fff;
    text-decoration: none;
    padding: 20px 40px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    box-shadow: 0 8px 24px rgba(10, 66, 100, 0.3);
}

.enroll-btn:hover {
    background: #0f172a;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(10, 66, 100, 0.4);
}

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

.btn-text {
    font-size: 16px;
    margin-bottom: 4px;
}

.btn-price {
    font-size: 24px;
    font-weight: 900;
    line-height: 1;
}

.money-back {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #10b981;
    font-size: 14px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .course-sales-hero .course-title {
        font-size: 36px;
    }
    
    .course-highlights {
        grid-template-columns: 1fr;
    }
}

/* EĞİTİMİ İNCELE SAYFASI MOBILE FIXES */
@media (max-width: 768px) {
    .experience-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .experience-feature {
        padding: 24px 16px;
    }
    
    .feature-icon-large {
        width: 70px;
        height: 70px;
        margin-bottom: 16px;
    }
    
    .feature-icon-large i {
        font-size: 28px;
    }
    
    .experience-feature h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .experience-feature p {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .cta-card {
        padding: 24px;
        margin-bottom: 32px;
    }
    
    .cta-header h3 {
        font-size: 20px;
    }
    
    .price-main {
        font-size: 36px;
    }
    
    .cta-benefits {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .experience-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .course-hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-cta {
        margin-top: 40px;
    }
}

/* EĞİTİMİ İNCELE SAYFASI STYLES */

/* Course Hero */
.course-hero {
    background: linear-gradient(135deg, #fafbff 0%, #f1f5f9 100%);
    padding: 100px 20px;
}

.course-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0a4264;
    color: #fff;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 32px;
}

.course-hero-title {
    font-size: 48px;
    font-weight: 900;
    color: #000;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-highlight {
    color: #0a4264;
}

.course-hero-subtitle {
    font-size: 20px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 40px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 900;
    color: #0a4264;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #6b7280;
    font-weight: 600;
}

.hero-cta {
    display: flex;
    justify-content: center;
}

.cta-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    width: 100%;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0a4264, #1e40af);
}

.cta-header {
    margin-bottom: 24px;
    padding-top: 8px;
}

.cta-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
}

.cta-header p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

.cta-price-display {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
}

.price-main {
    font-size: 42px;
    font-weight: 900;
    color: #0a4264;
    line-height: 1;
    margin-bottom: 4px;
}

.price-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.price-currency {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

.price-note {
    font-size: 13px;
    color: #9ca3af;
}

.cta-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #10b981;
    font-weight: 600;
}

.benefit-item i {
    font-size: 14px;
}

.primary-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0a4264;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    padding: 16px 32px;
    border-radius: 6px;
    transition: all 0.2s ease;
    margin-bottom: 20px;
}

.primary-cta-button:hover {
    background: #083552;
    transform: translateY(-1px);
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 24px;
    font-size: 14px;
    color: #6b7280;
}

.trust-indicators span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.trust-indicators i {
    color: #10b981;
}

/* Curriculum Section */
.curriculum-section {
    background: #fff;
    padding: 100px 20px;
}

.curriculum-container {
    max-width: 1000px;
    margin: 0 auto;
}

.curriculum-header {
    text-align: center;
    margin-bottom: 80px;
}

.curriculum-title {
    font-size: 48px;
    font-weight: 900;
    color: #000;
    margin-bottom: 24px;
    line-height: 1.2;
}

.curriculum-description {
    font-size: 18px;
    color: #4b5563;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* .modules-accordion - Module cards have margin-bottom individually */

.module-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.2s ease;
}

.module-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.module-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.module-header:hover {
    background: #f8fafc;
}

.module-info {
    display: flex;
    align-items: center;
    gap: 24px;
}

.module-number {
    width: 60px;
    height: 60px;
    background: #0a4264;
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
}

.module-content-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
}

.module-content-header p {
    font-size: 16px;
    color: #6b7280;
    margin: 0;
}

.module-toggle {
    width: 48px;
    height: 48px;
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.module-toggle:hover {
    background: #0a4264;
    border-color: #0a4264;
    transform: scale(1.05);
}

.module-toggle:hover i {
    color: #fff;
}

.module-toggle i {
    color: #0a4264;
    font-size: 16px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.module-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-top: 1px solid #f3f4f6;
}

.module-content.active {
    max-height: 600px;
}

.module-details {
    padding: 32px;
}

.module-topics h4 {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 16px;
}

.module-topics ul {
    list-style: none;
    margin-bottom: 24px;
}

.module-topics li {
    padding: 8px 0;
    color: #374151;
    position: relative;
    padding-left: 24px;
}

.module-topics li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #0a4264;
    font-weight: bold;
}

.why-important {
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 8px;
    padding: 20px;
}

.why-important h4 {
    font-size: 16px;
    font-weight: 700;
    color: #0369a1;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.why-important i {
    color: #f59e0b;
}

.why-important p {
    color: #0369a1;
    margin: 0;
    line-height: 1.6;
}

/* Learning Experience */
.learning-experience {
    background: #f8fafc;
    padding: 100px 20px;
}

.experience-container {
    max-width: 1200px;
    margin: 0 auto;
}

.experience-header {
    text-align: center;
    margin-bottom: 80px;
}

.experience-title {
    font-size: 42px;
    font-weight: 900;
    color: #000;
    line-height: 1.3;
    margin-bottom: 0;
}

.experience-subtitle {
    color: #0a4264;
    font-weight: 800;
}

.experience-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.experience-feature {
    text-align: center;
    padding: 40px 24px;
}

.feature-icon-large {
    width: 100px;
    height: 100px;
    background: #0a4264;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: background-color 0.2s ease;
}

.experience-feature:hover .feature-icon-large {
    background: #fab123;
}

.feature-icon-large i {
    font-size: 40px;
    color: #fff;
}

.experience-feature h3 {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    margin-bottom: 16px;
    line-height: 1.3;
}

.experience-feature p {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

/* Pricing Section */
.pricing-section {
    background: #fff;
    padding: 100px 20px;
}

.pricing-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.pricing-header {
    margin-bottom: 60px;
}

.pricing-title {
    font-size: 48px;
    font-weight: 900;
    color: #000;
    line-height: 1.2;
}

.pricing-card {
    background: #fff;
    border: 2px solid #f3f4f6;
    border-radius: 8px;
    padding: 60px 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    position: relative;
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #fab123 0%, #f59e0b 100%);
    color: #fff;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 32px;
}

.price-display {
    margin-bottom: 40px;
}

.currency {
    font-size: 32px;
    font-weight: 600;
    color: #6b7280;
}

.amount {
    font-size: 80px;
    font-weight: 900;
    color: #0a4264;
    margin: 0 8px;
}

.period {
    font-size: 24px;
    font-weight: 600;
    color: #6b7280;
}

.pricing-includes h4 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 24px;
}

.includes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.include-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #374151;
}

.include-item i {
    color: #10b981;
    font-size: 16px;
}

.pricing-note {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 24px;
}

.pricing-note p {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

/* Final CTA */
.final-cta {
    background: #0a4264;
    color: #fff;
    padding: 100px 20px;
}

.final-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.cta-title {
    font-size: 48px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 24px;
    line-height: 1.2;
}

.cta-description {
    font-size: 18px;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 40px;
}

.consultation-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #e2e8f0;
}

.benefit-item i {
    color: #fab123;
    font-size: 16px;
}

.consultation-form-card {
    background: #fff;
    border-radius: 8px;
    padding: 40px;
    color: #000;
}

.consultation-form-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin-bottom: 24px;
    text-align: center;
}

.consultation-booking-form {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.consultation-booking-form input,
.consultation-booking-form select,
.consultation-booking-form textarea {
    padding: 14px 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.2s ease;
}

.consultation-booking-form input:focus,
.consultation-booking-form select:focus,
.consultation-booking-form textarea:focus {
    outline: none;
    border-color: #0a4264;
}

.consultation-booking-form textarea {
    width: 100%;
    resize: vertical;
    margin-bottom: 24px;
}

.consultation-submit {
    width: 100%;
    background: #0a4264;
    color: #fff;
    border: none;
    padding: 16px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.consultation-submit:hover {
    background: #083552;
}

.form-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: #6b7280;
    margin-top: 16px;
}

.form-guarantee i {
    color: #10b981;
}

/* Mobile Course Page */
@media (max-width: 768px) {
    .course-hero {
        padding: 60px 20px;
    }
    
    .course-hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .course-hero-title {
        font-size: 36px;
    }
    
    .course-hero-subtitle {
        font-size: 18px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-bottom: 32px;
    }
    
    .stat-item {
        padding: 16px 12px;
        border-radius: 12px;
        text-align: center;
    }
    
    .stat-number {
        font-size: 24px;
        margin-bottom: 4px;
        line-height: 1;
    }
    
    .stat-label {
        font-size: 11px;
        line-height: 1.2;
        font-weight: 600;
    }
    
    .curriculum-section {
        padding: 60px 20px;
    }
    
    .curriculum-title {
        font-size: 32px;
    }
    
    .curriculum-description {
        font-size: 16px;
    }
    
    .module-header {
        padding: 24px;
    }
    
    .module-info {
        gap: 16px;
    }
    
    .module-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .module-content-header h3 {
        font-size: 20px;
    }
    
    .learning-experience {
        padding: 60px 20px;
    }
    
    .experience-title {
        font-size: 32px;
    }
    
    .experience-features {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .pricing-section {
        padding: 60px 20px;
    }
    
    .pricing-title {
        font-size: 32px;
    }
    
    .pricing-card {
        padding: 40px 24px;
    }
    
    .amount {
        font-size: 64px;
    }
    
    .includes-grid {
        grid-template-columns: 1fr;
    }
    
    .final-cta {
        padding: 60px 20px;
    }
    
    .final-cta-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .cta-description {
        font-size: 16px;
    }
    
    .consultation-benefits {
        grid-template-columns: 1fr;
        margin-bottom: 32px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .consultation-form-card {
        padding: 32px 24px;
    }
}

/* ABOUT PAGE STYLES - AUTHENTIC REDESIGN */
.about-page {
    padding-top: 120px;
    background: #f8fafc;
}

.about-hero {
    background: linear-gradient(135deg, #fafbff 0%, #f0f4f8 100%);
    padding: 100px 0;
    margin-bottom: 120px;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(10, 66, 100, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.about-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0a4264;
    color: #fff;
    padding: 12px 24px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 32px;
}

.about-title {
    font-size: 56px;
    font-weight: 900;
    color: #000;
    line-height: 1.1;
    margin-bottom: 24px;
}

.title-highlight {
    color: #0a4264;
}

.about-description {
    font-size: 22px;
    color: #4b5563;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 40px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.stat-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.stat-card.highlight {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    border-color: #10b981;
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
}

.stat-card .stat-icon {
    background: #fee2e2;
    color: #dc2626;
}

.stat-card.highlight .stat-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.stat-content .stat-number {
    font-size: 32px;
    font-weight: 900;
    display: block;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-content .stat-label {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    display: block;
}

.stat-card p {
    font-size: 14px;
    opacity: 0.8;
    margin: 0;
    line-height: 1.4;
}

.stat-card.highlight p {
    color: #fff;
}

/* Problem & Solution Section */
.problem-solution {
    background: #fff;
    padding: 100px 0;
    margin-bottom: 120px;
}

.problem-solution-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.section-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    font-size: 32px;
}

.section-icon.problem {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #fff;
}

.section-icon.solution {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
}

.problem-section h2,
.solution-section h2 {
    font-size: 36px;
    font-weight: 900;
    color: #000;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.2;
}

.problem-list,
.solution-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.problem-item,
.solution-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.problem-item {
    background: #fef2f2;
    border: 1px solid #fecaca;
}

.problem-item:hover {
    background: #fee2e2;
    transform: translateX(-4px);
}

.solution-item {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}

.solution-item:hover {
    background: #ecfdf5;
    transform: translateX(4px);
}

.problem-item i {
    color: #dc2626;
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.solution-item i {
    color: #10b981;
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.problem-item h3,
.solution-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
    line-height: 1.3;
}

.problem-item p,
.solution-item p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.problem-item p {
    color: #7f1d1d;
}

.solution-item p {
    color: #166534;
}

/* Why Rezora Section */
.why-rezora {
    background: #f8fafc;
    padding: 100px 0;
    margin-bottom: 120px;
}

.why-rezora-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.differences-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.difference-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 40px;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.difference-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #0a4264, #1e40af);
}

.difference-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.card-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: #0a4264;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 900;
}

.difference-card h3 {
    font-size: 24px;
    font-weight: 800;
    color: #000;
    margin-bottom: 16px;
    line-height: 1.3;
}

.difference-card p {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 20px;
}

.proof-items {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.proof-item {
    background: #f0fdf4;
    color: #166534;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid #bbf7d0;
}

/* Our Story Section */
.our-story {
    background: #fff;
    padding: 100px 0;
    margin-bottom: 120px;
}

.story-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-header {
    margin-bottom: 40px;
}

.story-header h2 {
    font-size: 48px;
    font-weight: 900;
    color: #000;
    margin-bottom: 16px;
    line-height: 1.1;
}

.story-subtitle {
    font-size: 24px;
    color: #0a4264;
    font-weight: 700;
}

.story-paragraph {
    font-size: 18px;
    color: #374151;
    line-height: 1.7;
    margin-bottom: 32px;
}

.story-paragraph.first {
    font-size: 20px;
    color: #1f2937;
}

.story-paragraph strong {
    color: #0a4264;
    font-weight: 700;
}

.story-highlight {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 1px solid #cbd5e1;
    border-radius: 20px;
    padding: 40px;
    margin-top: 40px;
    position: relative;
}

.highlight-icon {
    position: absolute;
    top: -20px;
    left: 40px;
    width: 40px;
    height: 40px;
    background: #0a4264;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
}

.story-highlight p {
    font-size: 20px;
    color: #1f2937;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
}

.quote-author {
    text-align: center;
    color: #0a4264;
    font-size: 16px;
    font-weight: 600;
}

.timeline {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 40px;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 80px;
    bottom: 80px;
    width: 3px;
    background: linear-gradient(180deg, #0a4264, #1e40af);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 40px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-year {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: #0a4264;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 900;
    border: 4px solid #f8fafc;
}

.timeline-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 16px;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

/* Values Section */
.values-section {
    background: linear-gradient(135deg, #0a4264 0%, #1e40af 100%);
    color: #fff;
    padding: 100px 0 100px 0;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

.values-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.values-section .section-header h2 {
    color: #fff;
}

.values-section .section-header p {
    color: #cbd5e1;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.value-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
}

/* Hover efekti kaldırıldı */

.value-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    color: #fff;
}

.value-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
}

.value-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #e2e8f0;
}

.mission-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.mission-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 48px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.mission-card.primary {
    background: linear-gradient(135deg, #0a4264 0%, #1e40af 100%);
    color: #fff;
    transform: scale(1.05);
}

.mission-card.primary:hover {
    transform: scale(1.05) translateY(-8px);
}

.card-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
}

.mission-card .card-icon {
    background: #f8fafc;
    color: #0a4264;
}

.mission-card.primary .card-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.mission-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.mission-card p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
}

/* Why Different */
.why-different {
    background: #f8fafc;
    padding: 100px 0;
}

.different-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.different-header {
    text-align: center;
    margin-bottom: 80px;
}

.different-header h2 {
    font-size: 48px;
    font-weight: 900;
    color: #000;
    margin-bottom: 16px;
}

.different-header p {
    font-size: 20px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.differences-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.difference-item {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.difference-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.diff-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 32px;
    color: #fff;
}

.diff-icon.official {
    background: linear-gradient(45deg, #10b981, #059669);
}

.diff-icon.live {
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
}

.diff-icon.legal {
    background: linear-gradient(45deg, #8b5cf6, #7c3aed);
}

.diff-icon.support {
    background: linear-gradient(45deg, #f59e0b, #d97706);
}

.difference-item h3 {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin-bottom: 16px;
}

.difference-item p {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 20px;
}

.proof-badge {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 14px;
    color: #166534;
    font-weight: 600;
    text-align: center;
}

/* Team Section */
.team-section {
    background: #fff;
    padding: 100px 0;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 900;
    color: #000;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 20px;
    color: #6b7280;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.team-member {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.member-avatar {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
}

.member-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #e5e7eb;
}

.member-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 40px;
    background: #0a4264;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    border: 3px solid #fff;
}

.member-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
}

.member-title {
    font-size: 16px;
    color: #0a4264;
    font-weight: 600;
    margin-bottom: 16px;
}

.member-bio {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 20px;
}

.member-expertise {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.member-expertise span {
    background: #f0fdf4;
    color: #166534;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* About CTA */
.about-cta {
    background: #0a4264;
    color: #fff;
    padding: 80px 0;
}

.about-cta .cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.about-cta h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
}

.about-cta p {
    font-size: 20px;
    color: #cbd5e1;
    margin-bottom: 40px;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn.primary {
    background: #fab123;
    color: #000;
}

.cta-btn.primary:hover {
    background: #f59e0b;
    transform: translateY(-2px);
}

.cta-btn.secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.cta-btn.secondary:hover {
    background: #fff;
    color: #0a4264;
}

/* Mobile About - Updated */
@media (max-width: 768px) {
    .about-hero {
        padding: 60px 0;
        margin-bottom: 80px;
    }
    
    .about-title {
        font-size: 36px;
    }
    
    .about-description {
        font-size: 18px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 350px;
    }
    
    .problem-solution-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .problem-section h2,
    .solution-section h2 {
        font-size: 28px;
    }
    
    .differences-showcase {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .story-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .story-header h2 {
        font-size: 32px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
}

/* FAQ PAGE STYLES */
.faq-page {
    padding-top: 120px;
    background: #f8fafc;
}

.faq-hero {
    background: linear-gradient(135deg, #fafbff 0%, #f0f4f8 100%);
    padding: 80px 0;
    text-align: center;
}

.faq-hero-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-title {
    font-size: 56px;
    font-weight: 900;
    color: #000;
    margin-bottom: 24px;
    line-height: 1.1;
}

.faq-description {
    font-size: 20px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 40px;
}

.faq-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.faq-stats .stat {
    text-align: center;
}

.faq-stats .stat-number {
    display: block;
    font-size: 32px;
    font-weight: 900;
    color: #0a4264;
    line-height: 1;
}

.faq-stats .stat-label {
    font-size: 14px;
    color: #6b7280;
    font-weight: 600;
    margin-top: 8px;
}

/* FAQ Categories */
.faq-categories {
    background: #fff;
    padding: 40px 0;
    border-bottom: 1px solid #e5e7eb;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.tab-btn {
    background: #f8fafc;
    border: 2px solid #e5e7eb;
    color: #374151;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tab-btn:hover,
.tab-btn.active {
    background: #0a4264;
    color: #fff;
    border-color: #0a4264;
}

/* FAQ Content */
.faq-content {
    padding: 80px 0;
}

.category-title {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 32px;
    font-weight: 800;
    color: #000;
    margin-bottom: 40px;
    padding-bottom: 16px;
    border-bottom: 3px solid #0a4264;
}

.category-title i {
    color: #0a4264;
    font-size: 28px;
}

.faq-accordion {
    margin-bottom: 80px;
}

.faq-item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #0a4264;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.faq-question {
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.2s ease;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question h3 {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin: 0;
    flex: 1;
    line-height: 1.4;
}

.faq-toggle {
    width: 40px;
    height: 40px;
    background: #f8fafc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.faq-toggle i {
    color: #0a4264;
    font-size: 16px;
    transition: transform 0.2s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-top: 1px solid #f1f5f9;
}

.faq-answer.active {
    max-height: 800px;
}

.answer-content {
    padding: 32px;
}

.answer-content p {
    font-size: 16px;
    color: #374151;
    line-height: 1.7;
    margin-bottom: 20px;
}

.answer-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.answer-content li {
    padding: 8px 0;
    color: #374151;
    font-size: 16px;
    line-height: 1.6;
}

.platform-list {
    display: grid;
    gap: 16px;
    margin: 20px 0;
}

.platform-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.platform-item i {
    font-size: 24px;
    color: #0a4264;
}

.platform-item strong {
    display: block;
    font-weight: 700;
    color: #000;
    margin-bottom: 4px;
}

.platform-item p {
    color: #6b7280;
    margin: 0;
    font-size: 14px;
}

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

.device-item {
    text-align: center;
    padding: 16px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.device-item i {
    font-size: 24px;
    color: #0a4264;
    margin-bottom: 8px;
}

.device-item span {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

.price-breakdown {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px;
    margin: 20px 0;
}

.price-main {
    text-align: center;
    margin-bottom: 24px;
}

.price-main .price {
    font-size: 48px;
    font-weight: 900;
    color: #0a4264;
    display: block;
    line-height: 1;
}

.price-main .price-note {
    font-size: 16px;
    color: #6b7280;
    margin-top: 8px;
}

.price-includes h4 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 16px;
}

.highlight-box,
.guarantee-box,
.community-highlight,
.consultation-guarantee,
.certificate-preview,
.transparency-note {
    background: #f0fdf4;
    border: 2px solid #bbf7d0;
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
}

.highlight-box p,
.guarantee-box p,
.community-highlight p,
.consultation-guarantee p,
.certificate-preview p,
.transparency-note p {
    margin: 0;
    color: #166534;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.highlight-box i,
.guarantee-box i,
.community-highlight i,
.consultation-guarantee i,
.certificate-preview i,
.transparency-note i {
    color: #10b981;
    font-size: 18px;
}

/* FAQ CTA */
.faq-cta {
    background: #0a4264;
    color: #fff;
    padding: 80px 0;
}

.faq-cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.faq-cta h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
}

.faq-cta p {
    font-size: 20px;
    color: #cbd5e1;
    margin-bottom: 40px;
}

.cta-options {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.faq-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.faq-cta-btn.primary {
    background: #fab123;
    color: #000;
}

.faq-cta-btn.primary:hover {
    background: #f59e0b;
    transform: translateY(-2px);
}

.faq-cta-btn.secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.faq-cta-btn.secondary:hover {
    background: #fff;
    color: #0a4264;
}

/* Mobile FAQ */
@media (max-width: 768px) {
    .faq-title {
        font-size: 36px;
    }
    
    .faq-stats {
        gap: 24px;
    }
    
    .category-tabs {
        gap: 12px;
    }
    
    .tab-btn {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .faq-question {
        padding: 20px;
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .faq-question h3 {
        font-size: 18px;
    }
    
    .answer-content {
        padding: 24px;
    }
    
    .device-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .platform-list {
        gap: 12px;
    }
    
    .platform-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .cta-options {
        flex-direction: column;
        align-items: center;
    }
}

/* Mobile Course Hero - Very Small Screens */
@media (max-width: 480px) {
    .course-hero {
        padding: 40px 16px;
    }
    
    .course-hero-title {
        font-size: 28px;
        margin-bottom: 16px;
    }
    
    .course-hero-subtitle {
        font-size: 16px;
        margin-bottom: 24px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 8px;
        margin-bottom: 24px;
    }
    
    .stat-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: left;
        padding: 12px 16px;
    }
    
    .stat-number {
        font-size: 20px;
        margin-bottom: 0;
        margin-right: 8px;
    }
    
    .stat-label {
        font-size: 12px;
        text-align: right;
    }
    
    .cta-card {
        padding: 20px 16px;
        border-radius: 12px;
    }
    
    .cta-header h3 {
        font-size: 18px;
    }
    
    .cta-header p {
        font-size: 13px;
    }
    
    .cta-price-display {
        padding: 16px;
    }
    
    .price-main {
        font-size: 32px;
    }
    
    .primary-cta-button {
        font-size: 14px;
        padding: 12px 20px;
    }
}

/* Mobile Newsletter */
@media (max-width: 768px) {
    .newsletter-contact-section {
        padding: 60px 20px;
    }
    
    .newsletter-section {
        padding: 40px 24px;
    }
    
    .newsletter-title {
        font-size: 32px;
    }
    
    .newsletter-description {
        font-size: 16px;
    }
    
    .form-container {
        flex-direction: column;
        gap: 16px;
    }
    
    .newsletter-button {
        width: 100%;
        justify-content: center;
    }
}

/* Mobile Footer */
@media (max-width: 768px) {
    .main-footer {
        padding: 60px 20px 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-logo {
        font-size: 28px;
    }
    
    .social-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .legal-links {
        flex-direction: column;
        gap: 12px;
    }
}

/* ===============================
   MODERN SEARCH PAGE STYLES
   =============================== */

/* Modern Search Page Layout */
.modern-search-page {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    min-height: 100vh;
    padding: 120px 0 80px;
}

.search-container-modern {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Search Hero Section */
.search-hero {
    text-align: center;
    margin-bottom: 60px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 60px 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.search-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0a4264 0%, #0f172a 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 8px 24px rgba(10, 66, 100, 0.2);
}

.search-icon-wrapper i {
    font-size: 32px;
    color: white;
}

.search-hero-title {
    font-size: 48px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.search-hero-subtitle {
    font-size: 18px;
    color: #64748b;
    margin: 0;
    font-weight: 500;
}

.search-hero-subtitle .search-term {
    color: #0a4264;
    font-weight: 700;
}

.search-hero-subtitle strong {
    color: #10b981;
}

.search-hero-subtitle.no-results strong {
    color: #ef4444;
}

/* Modern Search Form */
.modern-search-form-wrapper {
    margin-bottom: 50px;
}

.modern-search-form {
    max-width: 800px;
    margin: 0 auto;
}

.modern-search-container {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    background: white;
    border-radius: 16px;
    padding: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.modern-search-container:focus-within {
    border-color: #0a4264;
    box-shadow: 0 8px 32px rgba(10, 66, 100, 0.12);
}

.search-input-group {
    flex: 1;
    position: relative;
}

.search-input-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 18px;
    z-index: 2;
}

.modern-search-input {
    width: 100%;
    padding: 20px 20px 20px 60px;
    border: none;
    border-radius: 12px;
    background: #f8fafc;
    font-size: 16px;
    color: #1e293b;
    transition: all 0.3s ease;
}

.modern-search-input:focus {
    outline: none;
    background: white;
    box-shadow: 0 0 0 3px rgba(10, 66, 100, 0.1);
}

.modern-search-input::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.modern-search-btn {
    padding: 20px 32px;
    background: linear-gradient(135deg, #0a4264 0%, #0f172a 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(10, 66, 100, 0.2);
}

.modern-search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(10, 66, 100, 0.3);
}

/* Search Quick Filters */
.search-quick-filters {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.filter-label {
    font-weight: 600;
    color: #64748b;
    font-size: 14px;
}

.filter-tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-tag {
    padding: 8px 16px;
    background: rgba(10, 66, 100, 0.1);
    color: #0a4264;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(10, 66, 100, 0.2);
}

.filter-tag:hover {
    background: #0a4264;
    color: white;
    transform: translateY(-2px);
}

/* ===============================
   ORIGINAL SEARCH PAGE STYLES
   =============================== */

/* Search Bar Improvements */
.nav-search .search-container {
    position: relative;
}

.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-top: none;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-height: 200px;
    overflow-y: auto;
    display: none;
}

.search-suggestions.active {
    display: block;
}

.search-suggestion-item {
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 1px solid #f3f4f6;
    transition: background 0.2s ease;
}

.search-suggestion-item:hover {
    background: #f8fafc;
}

.search-suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-title {
    font-weight: 600;
    color: #1f2937;
    font-size: 14px;
}

.suggestion-type {
    font-size: 12px;
    color: #6b7280;
    margin-top: 2px;
}

/* Search Results Page */
.search-results-page {
    padding: 120px 0 80px;
    background: #f8fafc;
    min-height: 60vh;
}

.search-container-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.search-header {
    text-align: center;
    margin-bottom: 40px;
}

.search-header h1 {
    font-size: 42px;
    font-weight: 900;
    color: #000;
    margin-bottom: 16px;
}

.search-query {
    font-size: 18px;
    color: #6b7280;
    margin: 0;
}

.results-count {
    color: #0a4264;
    font-weight: 600;
}

/* Search Form */
.search-form-wrapper {
    max-width: 600px;
    margin: 0 auto 60px;
}

.search-page-form {
    position: relative;
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.search-input-wrapper:focus-within {
    border-color: #0a4264;
    box-shadow: 0 0 0 3px rgba(10, 66, 100, 0.1);
}

.search-input-wrapper i {
    padding: 0 16px;
    color: #6b7280;
    font-size: 16px;
}

.search-page-input {
    flex: 1;
    padding: 16px 0;
    border: none;
    outline: none;
    font-size: 16px;
    background: transparent;
}

.search-page-btn {
    padding: 16px 24px;
    background: #0a4264;
    color: #fff;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-page-btn:hover {
    background: #0f172a;
}

/* Results Grid */
.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.result-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.result-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.result-image {
    height: 200px;
    overflow: hidden;
}

.result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.result-content {
    padding: 24px;
}

.result-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.post-type-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.post-type-badge.course {
    background: #dbeafe;
    color: #1d4ed8;
}

.post-type-badge.blog {
    background: #dcfce7;
    color: #15803d;
}

.post-type-badge.page {
    background: #fef3c7;
    color: #d97706;
}

.post-type-badge.default {
    background: #f3f4f6;
    color: #6b7280;
}

.post-date {
    font-size: 14px;
    color: #6b7280;
}

.result-title {
    margin-bottom: 12px;
}

.result-title a {
    color: #000;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    transition: color 0.2s ease;
}

.result-title a:hover {
    color: #0a4264;
}

.result-excerpt {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 16px;
}

.course-meta-search {
    margin-bottom: 16px;
    padding-top: 16px;
    border-top: 1px solid #f3f4f6;
}

.course-search-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lessons-count {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #6b7280;
}

.lessons-count i {
    color: #0a4264;
}

.course-price {
    font-weight: 700;
    font-size: 16px;
}

.course-price.free {
    color: #10b981;
}

.course-price.paid {
    color: #0a4264;
}

.result-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0a4264;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: gap 0.2s ease;
}

.result-link:hover {
    gap: 12px;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 80px 20px;
}

.no-results-icon {
    font-size: 64px;
    color: #d1d5db;
    margin-bottom: 24px;
}

.no-results h3 {
    font-size: 24px;
    color: #374151;
    margin-bottom: 16px;
}

.no-results p {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 32px;
}

.search-suggestions h4 {
    font-size: 18px;
    color: #374151;
    margin-bottom: 16px;
}

.suggestion-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.suggestion-tag {
    padding: 8px 16px;
    background: #f3f4f6;
    color: #374151;
    text-decoration: none;
    border-radius: 20px;
    font-size: 14px;
    transition: all 0.2s ease;
}

.suggestion-tag:hover {
    background: #0a4264;
    color: #fff;
}

/* Search Pagination */
.search-pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.search-pagination .page-numbers {
    padding: 12px 16px;
    margin: 0 4px;
    background: #fff;
    color: #374151;
    text-decoration: none;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
    transition: all 0.2s ease;
}

.search-pagination .page-numbers:hover,
.search-pagination .page-numbers.current {
    background: #0a4264;
    color: #fff;
    border-color: #0a4264;
}

.search-pagination .page-numbers.prev,
.search-pagination .page-numbers.next {
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .search-header h1 {
        font-size: 28px;
    }
    
    .search-query {
        font-size: 16px;
    }
    
    .search-input-wrapper {
        flex-direction: column;
    }
    
    .search-page-btn {
        width: 100%;
        justify-content: center;
        border-top: 1px solid #e5e7eb;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .result-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .suggestion-tags {
        justify-content: flex-start;
    }
    
    .course-search-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* ===============================
   MODERN COURSE SINGLE PAGE
   =============================== */

.modern-course-single {
    background: #f8fafc;
    min-height: 100vh;
}

/* Course Hero Section */
.course-hero {
    background: linear-gradient(135deg, #0a4264 0%, #0f172a 100%);
    color: #fff;
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
}

.course-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.05)" points="0,0 1000,300 1000,1000 0,700"/></svg>') no-repeat;
    background-size: cover;
}

.course-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    position: relative;
    z-index: 1;
}

/* Course Info (Left Side) */
.course-info {
    padding-top: 20px;
}

.course-breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    font-size: 14px;
    opacity: 0.8;
}

.course-breadcrumb a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.course-breadcrumb a:hover {
    opacity: 0.7;
}

.course-breadcrumb i {
    font-size: 12px;
    opacity: 0.6;
}

.course-main-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #fff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.course-subtitle {
    font-size: 20px;
    color: #cbd5e1;
    line-height: 1.5;
    margin-bottom: 32px;
    max-width: 90%;
}

.course-stats-row {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #e2e8f0;
}

.stat-item i {
    color: #fbbf24;
    font-size: 16px;
}

.course-categories {
    margin-bottom: 32px;
}

.category-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-right: 12px;
    margin-bottom: 8px;
}

.instructor-brief {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.instructor-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.instructor-label {
    display: block;
    font-size: 12px;
    opacity: 0.7;
    margin-bottom: 2px;
}

.instructor-name {
    font-size: 16px;
    font-weight: 600;
}

.learning-preview h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #fbbf24;
}

.learning-points {
    list-style: none;
    padding: 0;
}

.learning-points li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 16px;
}

.learning-points i {
    color: #10b981;
    font-size: 14px;
    min-width: 14px;
}

/* Course Preview Card (Right Side) */
.course-preview-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    position: sticky;
    top: 100px;
    height: fit-content;
}

.video-preview-container {
    position: relative;
}

.video-thumbnail,
.static-thumbnail,
.thumbnail-placeholder {
    height: 240px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.video-thumbnail img,
.static-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-thumbnail:hover img {
    transform: scale(1.05);
}

.thumbnail-placeholder {
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #64748b;
}

.thumbnail-placeholder i {
    font-size: 48px;
    margin-bottom: 12px;
}

.play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-thumbnail:hover .play-overlay {
    opacity: 1;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: transform 0.2s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

.play-button i {
    font-size: 28px;
    color: #0a4264;
    margin-left: 4px;
}

.preview-text {
    color: #fff;
    font-weight: 600;
    text-align: center;
}

.pricing-section {
    padding: 24px;
    border-bottom: 1px solid #f1f5f9;
}

.price-display {
    text-align: center;
    margin-bottom: 24px;
}

.current-price {
    font-size: 36px;
    font-weight: 900;
    color: #0a4264;
    margin-bottom: 4px;
}

.price-note {
    font-size: 14px;
    color: #6b7280;
}

.enrollment-area {
    margin-bottom: 20px;
}

.progress-info {
    margin-bottom: 16px;
}

.progress-text {
    font-size: 14px;
    color: #374151;
    margin-bottom: 8px;
    font-weight: 600;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.enroll-now-btn,
.continue-course-btn {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #0a4264 0%, #0f172a 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.enroll-now-btn:hover,
.continue-course-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(10, 66, 100, 0.3);
    color: #fff;
    text-decoration: none;
}

.guarantee-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: #059669;
    font-weight: 600;
}

.guarantee-badge i {
    color: #10b981;
}

.course-includes {
    padding: 24px;
}

.course-includes h4 {
    font-size: 18px;
    color: #374151;
    margin-bottom: 16px;
}

.includes-list {
    list-style: none;
    padding: 0;
}

.includes-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f8fafc;
    font-size: 14px;
    color: #374151;
}

.includes-list li:last-child {
    border-bottom: none;
}

.includes-list i {
    color: #0a4264;
    width: 16px;
    text-align: center;
}

/* Course Content Sections */
.course-content-wrapper {
    background: #fff;
    margin-top: -30px;
    border-radius: 24px 24px 0 0;
    position: relative;
    z-index: 2;
}

.course-content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.course-main-content {
    padding: 60px 0;
}

.course-nav-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 40px;
    border-bottom: 2px solid #f1f5f9;
    overflow-x: auto;
}

.tab-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    background: none;
    border: none;
    color: #6b7280;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
}

.tab-button.active {
    color: #0a4264;
    border-bottom-color: #0a4264;
}

.tab-button:hover {
    color: #374151;
}

.tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Overview Tab */
.course-description h2 {
    font-size: 32px;
    color: #374151;
    margin-bottom: 24px;
}

.description-content {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 40px;
}

.description-content p {
    margin-bottom: 16px;
}

.course-objectives {
    margin-top: 60px;
}

.course-objectives h3 {
    font-size: 24px;
    color: #374151;
    margin-bottom: 32px;
}

.objectives-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.objective-item {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #0a4264;
}

.objective-item i {
    font-size: 24px;
    color: #0a4264;
    min-width: 24px;
    margin-top: 4px;
}

.objective-item h4 {
    font-size: 18px;
    color: #374151;
    margin-bottom: 8px;
}

.objective-item p {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.5;
}

/* Curriculum Tab */
.curriculum-section h2 {
    font-size: 32px;
    color: #374151;
    margin-bottom: 16px;
}

.curriculum-stats {
    color: #6b7280;
    margin-bottom: 32px;
    font-size: 16px;
}

.curriculum-accordion {
    space-y: 16px;
}

.curriculum-item {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
}

.curriculum-item .section-header {
    padding: 20px 24px;
    background: #f8fafc;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s ease;
}

.curriculum-item .section-header:hover {
    background: #f1f5f9;
}

.section-info h3 {
    font-size: 18px;
    color: #374151;
    margin-bottom: 4px;
}

.section-meta {
    font-size: 14px;
    color: #6b7280;
}

.section-toggle i {
    color: #9ca3af;
    transition: transform 0.3s ease;
}

.section-toggle i.rotated {
    transform: rotate(180deg);
}

.curriculum-item .section-content {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.topic-list {
    padding: 16px 0;
}

.topic-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    margin-bottom: 8px;
    background: #fff;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.topic-item:hover {
    background: #f8fafc;
}

.topic-item i {
    color: #0a4264;
    font-size: 16px;
}

.topic-title {
    flex: 1;
    font-size: 15px;
    color: #374151;
}

.topic-duration {
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
}

/* Instructor Tab */
.instructor-detailed {
    max-width: 800px;
}

.instructor-header {
    display: flex;
    gap: 32px;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid #e5e7eb;
}

.instructor-avatar-large img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid #e5e7eb;
}

.instructor-detailed .instructor-info h2 {
    font-size: 28px;
    color: #374151;
    margin-bottom: 8px;
}

.instructor-detailed .instructor-title {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 16px;
}

.instructor-stats-detailed {
    display: flex;
    gap: 24px;
}

.instructor-stats-detailed .stat-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #374151;
}

.instructor-stats-detailed .stat-item i {
    color: #0a4264;
}

.instructor-bio-detailed h3 {
    font-size: 20px;
    color: #374151;
    margin-bottom: 16px;
}

.instructor-bio-detailed p {
    font-size: 16px;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 32px;
}

.instructor-expertise h3 {
    font-size: 20px;
    color: #374151;
    margin-bottom: 16px;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.expertise-tag {
    padding: 8px 16px;
    background: #f0f9ff;
    color: #0369a1;
    border: 1px solid #bae6fd;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

/* Reviews Tab */
.reviews-section h2 {
    font-size: 32px;
    color: #374151;
    margin-bottom: 32px;
}

.reviews-placeholder {
    text-align: center;
    padding: 80px 20px;
    background: #f8fafc;
    border-radius: 16px;
}

.review-stats {
    margin-bottom: 40px;
}

.overall-rating {
    display: inline-block;
}

.rating-number {
    font-size: 48px;
    font-weight: 900;
    color: #0a4264;
    margin-bottom: 8px;
}

.rating-stars {
    margin-bottom: 8px;
}

.rating-stars i {
    color: #fbbf24;
    font-size: 20px;
    margin: 0 2px;
}

.rating-count {
    color: #6b7280;
    font-size: 16px;
}

.review-placeholder-text {
    color: #6b7280;
}

.review-placeholder-text i {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.5;
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    z-index: 1;
}

.video-container {
    position: relative;
    width: 100%;
    height: 400px;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
}

.video-container iframe {
    width: 100%;
    height: 100%;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .course-hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .course-preview-card {
        position: static;
        order: -1;
    }
    
    .objectives-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .instructor-header {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
    
    .instructor-stats-detailed {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .course-main-title {
        font-size: 32px;
    }
    
    .course-subtitle {
        font-size: 18px;
    }
    
    .course-stats-row {
        flex-direction: column;
        gap: 12px;
    }
    
    .course-nav-tabs {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .tab-button {
        font-size: 14px;
        padding: 12px 16px;
    }
    
    .video-container {
        height: 250px;
    }
    
    .expertise-tags {
        justify-content: center;
    }
}

/* ===============================
   REVIEWS SECTION ENHANCEMENTS
   =============================== */

.reviews-summary {
    background: #f8fafc;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 40px;
}

.rating-overview {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: center;
}

.overall-rating {
    text-align: center;
}

.rating-breakdown {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
}

.rating-label {
    min-width: 60px;
    color: #6b7280;
    font-weight: 500;
}

.bar-container {
    flex: 1;
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.rating-percentage {
    min-width: 40px;
    text-align: right;
    color: #6b7280;
    font-weight: 500;
}

/* Individual Reviews */
.individual-reviews {
    margin-top: 40px;
}

.individual-reviews h3 {
    font-size: 24px;
    color: #374151;
    margin-bottom: 24px;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.review-item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    transition: box-shadow 0.2s ease;
}

.review-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.reviewer-info {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.reviewer-avatar img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #f1f5f9;
}

.reviewer-details {
    flex: 1;
}

.reviewer-name {
    font-size: 16px;
    font-weight: 600;
    color: #374151;
    margin: 0 0 4px 0;
}

.review-rating {
    margin-bottom: 4px;
}

.review-rating i {
    color: #fbbf24;
    font-size: 14px;
    margin-right: 2px;
}

.review-rating .far {
    color: #d1d5db;
}

.review-date {
    font-size: 12px;
    color: #9ca3af;
}

.review-content {
    margin-left: 64px;
}

.review-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #4b5563;
    margin: 0;
}

/* Load More Reviews */
.load-more-reviews {
    text-align: center;
    margin-top: 32px;
}

.load-more-btn {
    padding: 12px 24px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    color: #374151;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.load-more-btn:hover {
    background: #0a4264;
    color: #fff;
    border-color: #0a4264;
}

/* Review Form for Enrolled Students */
.write-review-section {
    margin-top: 40px;
    padding: 32px;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
}

.write-review-section h3 {
    font-size: 20px;
    color: #374151;
    margin-bottom: 24px;
}

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

.rating-input label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.star-rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 4px;
}

.star-rating-input input {
    display: none;
}

.star-rating-input label {
    font-size: 24px;
    color: #d1d5db;
    cursor: pointer;
    transition: color 0.2s ease;
    margin: 0;
}

.star-rating-input label:hover,
.star-rating-input label:hover ~ label,
.star-rating-input input:checked ~ label {
    color: #fbbf24;
}

.review-text-input {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.review-text-input label {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

.review-text-input textarea {
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 15px;
    line-height: 1.5;
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

.review-text-input textarea:focus {
    outline: none;
    border-color: #0a4264;
    box-shadow: 0 0 0 3px rgba(10, 66, 100, 0.1);
}

.submit-review-btn {
    align-self: flex-start;
    padding: 12px 24px;
    background: linear-gradient(135deg, #0a4264 0%, #0f172a 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.submit-review-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(10, 66, 100, 0.3);
}

/* Mobile Responsive for Reviews */
@media (max-width: 768px) {
    .rating-overview {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }
    
    .rating-bar {
        gap: 12px;
    }
    
    .rating-label {
        min-width: 50px;
        font-size: 13px;
    }
    
    .review-content {
        margin-left: 0;
        margin-top: 16px;
    }
    
    .reviewer-info {
        flex-direction: column;
        text-align: center;
    }
    
    .star-rating-input {
        justify-content: center;
    }
    
    .reviews-summary {
        padding: 24px 20px;
    }
    
    .write-review-section {
        padding: 24px 20px;
    }
}

/* ===============================
   CONSULTATION AFTER PRICE
   =============================== */

.consultation-after-price {
    margin-top: 32px;
    padding: 32px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid #0ea5e9;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.consultation-after-price::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0ea5e9 0%, #0284c7 50%, #0369a1 100%);
}

.consultation-header {
    text-align: center;
    margin-bottom: 24px;
}

.consultation-header h3 {
    font-size: 24px;
    color: #0369a1;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.consultation-header h3 i {
    font-size: 26px;
}

.consultation-header p {
    font-size: 16px;
    color: #0c4a6e;
    margin: 0;
}

.consultation-features {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.consultation-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #0c4a6e;
    font-weight: 600;
}

.consultation-feature i {
    color: #0ea5e9;
    font-size: 16px;
}

.consultation-form-container {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.1);
}

.consultation-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.consultation-form .form-row:last-of-type {
    margin-bottom: 24px;
}

.consultation-form .form-group.full-width {
    grid-column: 1 / -1;
}

.consultation-form input,
.consultation-form select,
.consultation-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e1f5fe;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s ease;
    font-family: inherit;
}

.consultation-form input:focus,
.consultation-form select:focus,
.consultation-form textarea:focus {
    outline: none;
    border-color: #0ea5e9;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.consultation-form select {
    cursor: pointer;
}

.consultation-form textarea {
    resize: vertical;
    min-height: 80px;
}

.consultation-submit-btn {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.consultation-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.3);
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
}

.consultation-submit-btn i {
    font-size: 18px;
}

.form-privacy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    color: #6b7280;
    text-align: center;
}

.form-privacy i {
    color: #10b981;
    font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .consultation-after-price {
        padding: 24px 16px;
        margin-top: 24px;
    }
    
    .consultation-features {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .consultation-form-container {
        padding: 20px 16px;
    }
    
    .consultation-form .form-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .consultation-header h3 {
        font-size: 20px;
        flex-direction: column;
        gap: 8px;
    }
    
    .consultation-submit-btn {
        padding: 14px 20px;
        font-size: 15px;
    }
}/* Results Stats */
.search-results-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px 30px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.results-count-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.2);
}

.results-sort {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sort-dropdown {
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    background: white;
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sort-dropdown:focus {
    outline: none;
    border-color: #0a4264;
}

/* Modern Results Grid */
.modern-search-results {
    margin-bottom: 60px;
}

.modern-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 30px;
}

/* Modern Result Cards */
.modern-result-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.modern-result-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    border-color: rgba(10, 66, 100, 0.1);
}

.result-image-wrapper {
    position: relative;
    overflow: hidden;
}

.result-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.result-image-placeholder {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 48px;
}

.result-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 66, 100, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.result-overlay i {
    color: white;
    font-size: 24px;
}

.modern-result-card:hover .result-overlay {
    opacity: 1;
}

.modern-result-card:hover .result-image img {
    transform: scale(1.05);
}

/* Modern Result Content */
.modern-result-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.modern-result-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.modern-post-type-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modern-post-type-badge.course {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.modern-post-type-badge.blog {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
}

.modern-post-type-badge.page {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
}

.modern-post-type-badge.default {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    color: white;
}

.modern-post-date {
    color: #94a3b8;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.modern-result-title {
    margin-bottom: 16px;
}

.modern-result-title a {
    color: #1e293b;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    transition: all 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.modern-result-title a:hover {
    color: #0a4264;
}

.modern-result-excerpt {
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

/* Modern Course Meta */
.modern-course-meta {
    margin-bottom: 20px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}

.modern-course-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.course-stats {
    display: flex;
    gap: 16px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
}

.stat-item i {
    color: #0a4264;
}

.course-price-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
}

.course-price-badge.free {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.course-price-badge.paid {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
}

/* Modern Result Footer */
.modern-result-footer {
    margin-top: auto;
}

.modern-result-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #0a4264 0%, #0f172a 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(10, 66, 100, 0.2);
}

.modern-result-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(10, 66, 100, 0.3);
}

/* Modern Pagination */
.modern-search-pagination {
    display: flex;
    justify-content: center;
    margin-top: 60px;
    gap: 8px;
}

.modern-search-pagination .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 20px;
    background: white;
    color: #64748b;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid #f1f5f9;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.modern-search-pagination .page-numbers:hover,
.modern-search-pagination .page-numbers.current {
    background: #0a4264;
    color: white;
    border-color: #0a4264;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(10, 66, 100, 0.2);
}

/* Modern No Results */
.modern-no-results {
    text-align: center;
    padding: 80px 40px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.no-results-illustration {
    margin-bottom: 40px;
}

.search-empty-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 50%;
    margin-bottom: 30px;
}

.search-empty-icon i {
    font-size: 48px;
    color: #94a3b8;
    z-index: 2;
}

.empty-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    border: 3px dashed #cbd5e1;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.no-results-content {
    margin-bottom: 50px;
}

.no-results-title {
    font-size: 32px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 16px;
}

.no-results-text {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Search Help Section */
.search-help-section {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.help-title {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 30px;
    text-align: center;
}

.help-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.help-category {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.help-category:hover {
    background: white;
    border-color: #0a4264;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(10, 66, 100, 0.1);
}

.help-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0a4264 0%, #0f172a 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.help-content h5 {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 4px 0;
}

.help-content span {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

.quick-links {
    text-align: center;
}

.quick-links h5 {
    font-size: 16px;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 16px;
}

.quick-link-tags {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.quick-tag {
    padding: 8px 16px;
    background: rgba(10, 66, 100, 0.05);
    color: #0a4264;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(10, 66, 100, 0.1);
}

.quick-tag:hover {
    background: rgba(10, 66, 100, 0.1);
    transform: translateY(-2px);
}

/* Search Page CTA */
.search-page-cta {
    background: linear-gradient(135deg, #0a4264 0%, #0f172a 100%);
    padding: 60px 0;
    text-align: center;
}

.search-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.search-cta-content {
    flex: 1;
    text-align: left;
}

.search-cta-title {
    font-size: 32px;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
}

.search-cta-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

.search-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 32px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    text-decoration: none;
    border-radius: 16px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}

.search-cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(16, 185, 129, 0.4);
}

.search-cta-features {
    display: flex;
    gap: 30px;
}

.cta-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-feature i {
    font-size: 24px;
    color: #10b981;
}

.cta-feature span {
    font-size: 14px;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .search-cta-container {
        flex-direction: column;
        text-align: center;
    }
    
    .search-cta-content {
        text-align: center;
    }
    
    .help-categories {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .search-hero {
        padding: 40px 20px;
    }
    
    .search-hero-title {
        font-size: 32px;
    }
    
    .modern-search-container {
        flex-direction: column;
    }
    
    .modern-search-btn {
        justify-content: center;
    }
    
    .modern-results-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .search-results-stats {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .search-cta-features {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .no-results-title {
        font-size: 24px;
    }
    
    .search-cta-title {
        font-size: 24px;
    }
}

/* ===== SADE ARAMA SAYFASI ===== */
.simple-search-page {
    padding: 60px 0;
    background: #f8fafc;
    min-height: 60vh;
}

.simple-search-page .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Arama Başlığı */
.search-header {
    text-align: center;
    margin-bottom: 40px;
}

.search-header h1 {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 10px;
    font-weight: 600;
}

.search-info {
    color: #64748b;
    font-size: 1rem;
}

/* Arama Formu */
.search-form-wrapper {
    margin-bottom: 50px;
}

.search-form {
    display: flex;
    gap: 10px;
    max-width: 600px;
    margin: 0 auto;
}

.search-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.2s;
}

.search-input:focus {
    outline: none;
    border-color: #0ea5e9;
}

.search-button {
    padding: 12px 24px;
    background: #0ea5e9;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.search-button:hover {
    background: #0284c7;
}

/* Sonuçlar */
.search-results {
    background: white;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    overflow: hidden;
}

.results-list {
    divide-y: 1px solid #f1f5f9;
}

.result-item {
    padding: 24px;
    transition: background-color 0.2s;
    border-bottom: 1px solid #f1f5f9;
}

.result-item:last-child {
    border-bottom: none;
}

.result-item:hover {
    background: #f8fafc;
}

.result-title {
    margin-bottom: 8px;
}

.result-title a {
    color: #1e293b;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
}

.result-title a:hover {
    color: #0ea5e9;
}

.result-meta {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.result-excerpt {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 16px;
}

.result-link {
    color: #0ea5e9;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
}

.result-link:hover {
    text-decoration: underline;
}

/* Sayfalama */
.search-pagination {
    margin-top: 40px;
    text-align: center;
}

.search-pagination .page-numbers {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 2px;
    color: #64748b;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s;
}

.search-pagination .page-numbers:hover,
.search-pagination .page-numbers.current {
    background: #0ea5e9;
    color: white;
}

/* Sonuç Bulunamadı */
.no-results {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.no-results h3 {
    color: #1e293b;
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.no-results p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .simple-search-page {
        padding: 40px 0;
    }
    
    .search-form {
        flex-direction: column;
    }
    
    .search-button {
        width: 100%;
    }
    
    .result-item {
        padding: 20px;
    }
    
    .search-header h1 {
        font-size: 1.75rem;
    }
}
