/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #f97316;
    --primary-light: #fb923c;
    --bg-dark: #0c0c0c;
    --bg-card: #161616;
    --text-light: #ffffff;
    --text-muted: #a1a1aa;
    --text-dim: #71717a;
    --gradient-orange: linear-gradient(135deg, #f97316, #fb923c);
    --border-subtle: rgba(255, 255, 255, 0.1);
}

body {
    font-family: 'Cairo', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

/* ==================== BACKGROUND EFFECTS ==================== */
.bg-effects {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.bg-glow-1 {
    width: 100%;
    height: 400px;
    background: linear-gradient(180deg, transparent 0%, rgba(249, 115, 22, 0.25) 50%, rgba(251, 146, 60, 0.15) 100%);
    bottom: 0;
    left: 0;
    border-radius: 0;
    filter: blur(60px);
}

.bg-glow-2 {
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(249, 115, 22, 0.3) 0%, transparent 70%);
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    filter: blur(80px);
}

.bg-glow-3 {
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(251, 146, 60, 0.2) 0%, transparent 70%);
    bottom: 50px;
    right: 10%;
    filter: blur(100px);
    animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.bg-grid {
    display: none;
}

/* Cursor Glow Effect */
.cursor-glow {
    position: fixed;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.25) 0%, rgba(251, 146, 60, 0.15) 30%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    opacity: 0;
    mix-blend-mode: screen;
}

.cursor-glow.active {
    opacity: 1;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

/* ==================== NAVIGATION ==================== */
.navbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    padding: 18px 40px;
    background: transparent;
    transition: background 0.3s ease;
}

.navbar.scrolled {
    background: rgba(12, 12, 12, 0.95);
    backdrop-filter: blur(20px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 80px;
    width: auto;
}

.logo-star {
    color: var(--primary);
    margin-right: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.dropdown-toggle i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(22, 22, 22, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 10px 0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    list-style: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    margin-top: 15px;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-light);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background: rgba(249, 115, 22, 0.1);
    color: var(--primary);
}

.nav-actions {
    display: flex;
    align-items: center;
}

.btn-login {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 10px 25px;
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    transition: all 0.3s;
}

.btn-login:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.hamburger::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(247, 115, 22, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hamburger:hover::before {
    opacity: 1;
}

.hamburger:hover {
    background: rgba(247, 115, 22, 0.1);
    transform: scale(1.05);
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-light);
    display: block;
    margin: 3px 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 2px;
    transform-origin: center;
}

.hamburger.active {
    background: rgba(247, 115, 22, 0.2);
    transform: scale(1.1);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(247, 115, 22, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(247, 115, 22, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(247, 115, 22, 0);
    }
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: var(--primary);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background: var(--primary);
}


/* ==================== HERO SECTION ==================== */
.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background: var(--bg-dark);
    display: grid;
    grid-template-columns: 55% 45%;
    direction: ltr;
}

/* Background Image - LEFT side */
.hero-bg-image {
    position: relative;
    background: url('bg4.png') center center / cover no-repeat;
    order: 1;
}

.hero-bg-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, var(--bg-dark) 0%, rgba(12,12,12,0.3) 30%, transparent 60%);
}

/* Orange Glow */
.hero-glow {
    position: absolute;
    left: 20%;
    top: 50%;
    transform: translateY(-50%);
    width: 350px;
    height: 500px;
    background: var(--primary);
    filter: blur(120px);
    opacity: 0.2;
    border-radius: 50%;
    pointer-events: none;
}

/* Content - RIGHT side */
.hero-content {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 100px 60px 100px 40px;
    order: 2;
    direction: rtl;
}

/* Centered Hero Style */
.hero-centered {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    position: relative;
}

/* ==================== SPLIT HERO SECTION ==================== */
.hero-split {
    display: flex;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-split-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 60px 80px 40px;
    position: relative;
    z-index: 2;
    background: linear-gradient(to left, transparent 0%, var(--bg-dark) 30%);
}

.hero-split-inner {
    max-width: 600px;
    text-align: right;
}

.hero-split-inner .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(249, 115, 22, 0.15);
    border: 1px solid rgba(249, 115, 22, 0.3);
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.95rem;
    color: var(--primary);
    margin-bottom: 25px;
    animation: fadeInRight 0.6s ease;
}

.hero-split-inner .hero-badge i {
    font-size: 1rem;
}

.hero-split-inner h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 15px;
    animation: fadeInRight 0.6s ease 0.1s both;
}

.hero-main-title {
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 30px;
    animation: fadeInRight 0.6s ease 0.1s both;
}

.hero-main-title .highlight {
    color: var(--primary);
}

.typing-wrapper {
    display: inline;
}

.typing-text {
    color: var(--text-light);
    font-weight: 700;
}

.typing-cursor {
    color: var(--primary);
    font-weight: 400;
    animation: blink 0.8s infinite;
    margin-right: 5px;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-typing {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 25px;
    min-height: 50px;
    animation: fadeInRight 0.6s ease 0.2s both;
}

.typing-static {
    color: var(--text-muted);
}

.typing-text {
    color: var(--primary);
    font-weight: 700;
}

.typing-cursor {
    color: var(--primary);
    animation: blink 0.8s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-split-inner .hero-description {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 2.2;
    margin-bottom: 35px;
    animation: fadeInRight 0.6s ease 0.3s both;
}

.hero-split-inner .hero-btns {
    display: flex;
    gap: 20px;
    margin-bottom: 45px;
    animation: fadeInRight 0.6s ease 0.4s both;
}

.hero-split-inner .hero-btns .btn-primary,
.hero-split-inner .hero-btns .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    font-size: 1rem;
}

.hero-split-inner .hero-stats-row {
    display: flex;
    gap: 40px;
    animation: fadeInRight 0.6s ease 0.5s both;
}

.hero-split-inner .hero-stat {
    text-align: center;
}

.hero-split-inner .stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.hero-split-inner .stat-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 5px;
    display: block;
}

/* Hero Split Image Side */
.hero-split-image {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(249, 115, 22, 0.3) 0%, transparent 70%);
    filter: blur(60px);
    z-index: -1;
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 0%, transparent 40%, rgba(12, 12, 12, 0.4) 60%, rgba(12, 12, 12, 0.8) 80%, var(--bg-dark) 100%);
    pointer-events: none;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(22, 22, 22, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(249, 115, 22, 0.3);
    padding: 12px 20px;
    border-radius: 12px;
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 600;
    z-index: 10;
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    color: var(--primary);
    font-size: 1.2rem;
}

.floating-card.card-1 {
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.floating-card.card-2 {
    bottom: 30%;
    right: 5%;
    animation-delay: 0.5s;
}

.floating-card.card-3 {
    bottom: 15%;
    left: 10%;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Diagonal Separator */
.hero-diagonal {
    position: absolute;
    top: 0;
    left: 50%;
    width: 150px;
    height: 100%;
    background: linear-gradient(to left, transparent 0%, var(--bg-dark) 100%);
    transform: skewX(-5deg);
    z-index: 1;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive for Split Hero */
@media (max-width: 1024px) {
    .hero-split {
        flex-direction: column-reverse;
    }
    
    .hero-split-content {
        padding: 60px 30px;
        background: var(--bg-dark);
    }
    
    .hero-split-inner {
        text-align: center;
        max-width: 100%;
    }
    
    .hero-split-inner h1 {
        font-size: 2.5rem;
    }
    
    .hero-typing {
        font-size: 1.3rem;
    }
    
    .hero-split-inner .hero-btns {
        justify-content: center;
    }
    
    .hero-split-inner .hero-stats-row {
        justify-content: center;
    }
    
    .hero-split-image {
        height: 50vh;
    }
    
    .hero-diagonal {
        display: none;
    }
    
    .floating-card {
        display: none;
    }
    
    .hero-image-overlay {
        background: linear-gradient(to top, var(--bg-dark) 0%, transparent 50%);
    }
}

@media (max-width: 768px) {
    .hero-split-content {
        padding: 40px 20px;
    }
    
    .hero-split-inner h1 {
        font-size: 2rem;
    }
    
    .hero-split-inner .hero-btns {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-split-inner .hero-stats-row {
        gap: 25px;
    }
    
    .hero-split-inner .stat-number {
        font-size: 1.8rem;
    }
}

.hero-centered .hero-bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-centered .hero-bg-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, rgba(12, 12, 12, 0.3) 0%, rgba(12, 12, 12, 0.7) 50%, rgba(12, 12, 12, 0.95) 100%);
}

.hero-content-centered {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 140px 20px 80px;
    position: relative;
    z-index: 2;
}

.hero-content-centered .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(249, 115, 22, 0.15);
    border: 1px solid rgba(249, 115, 22, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.95rem;
    color: var(--primary);
    margin-bottom: 25px;
    animation: fadeInUp 0.6s ease;
}

.hero-content-centered h1 {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 15px;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.hero-content-centered .hero-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 25px;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-content-centered .hero-description {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 2;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-content-centered .hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    animation: fadeInUp 0.6s ease 0.4s both;
}

.hero-content-centered .hero-btns .btn-primary,
.hero-content-centered .hero-btns .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    font-size: 1.05rem;
}

.hero-content-centered .hero-stats-row {
    display: flex;
    justify-content: center;
    gap: 60px;
    animation: fadeInUp 0.6s ease 0.5s both;
}

.hero-content-centered .hero-stat {
    text-align: center;
}

.hero-content-centered .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.hero-content-centered .stat-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-top: 8px;
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive for centered hero */
@media (max-width: 768px) {
    .hero-content-centered {
        padding: 120px 20px 60px;
    }
    
    .hero-content-centered h1 {
        font-size: 2.5rem;
    }
    
    .hero-content-centered .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-content-centered .hero-description {
        font-size: 1rem;
    }
    
    .hero-content-centered .hero-btns {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-content-centered .hero-stats-row {
        gap: 30px;
    }
    
    .hero-content-centered .stat-number {
        font-size: 2rem;
    }
}

.hero-text {
    text-align: right;
    max-width: 650px;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 30px;
}

.highlight {
    color: var(--primary);
}

.hero-description {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 2.2;
}

.hero-description strong {
    color: var(--primary);
    font-weight: 700;
}

/* ==================== OFFER BOX & COUNTDOWN ==================== */
.offer-box {
    display: inline-flex;
    align-items: stretch;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    overflow: hidden;
}

.offer-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px 25px;
    background: linear-gradient(180deg, rgba(249, 115, 22, 0.15) 0%, rgba(249, 115, 22, 0.05) 100%);
    border-left: 1px solid var(--border-subtle);
    order: 2;
}

.limited {
    background: var(--gradient-orange);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.discount {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
}

.offer-text {
    font-size: 0.7rem;
    color: var(--text-dim);
    margin-top: 2px;
}

.countdown {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 12px 20px;
    order: 1;
}

.time-box {
    text-align: center;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: 10px 12px;
    min-width: 52px;
}

.time {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1;
}

.time-box .label {
    font-size: 0.6rem;
    color: var(--text-dim);
    margin-top: 3px;
    display: block;
}

.time-separator {
    font-size: 1.2rem;
    color: var(--text-dim);
    margin-top: -10px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    color: var(--text-dim);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}


/* ==================== FEATURES SECTION ==================== */
.features {
    padding: 100px 0;
    background: var(--bg-dark);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(249, 115, 22, 0.3);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(249, 115, 22, 0.05));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ==================== STATS SECTION ==================== */
.stats {
    padding: 70px 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-item p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* ==================== TESTIMONIALS ==================== */
.testimonials {
    padding: 100px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 30px;
}

.testimonial-card .stars {
    color: var(--primary);
    margin-bottom: 15px;
}

.testimonial-card .quote {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-author img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
}

.author-info span {
    color: var(--text-dim);
    font-size: 0.8rem;
}

/* ==================== CTA SECTION ==================== */
.cta {
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: var(--primary);
    filter: blur(150px);
    opacity: 0.1;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 35px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta {
    display: inline-block;
    background: var(--gradient-orange);
    color: white;
    padding: 16px 45px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.25);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.35);
}


/* ==================== FOOTER ==================== */
.footer {
    background: var(--bg-card);
    padding: 60px 0 25px;
    border-top: 1px solid var(--border-subtle);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    display: block;
    margin-bottom: 15px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    max-width: 280px;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.footer-links h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid var(--border-subtle);
    color: var(--text-dim);
    font-size: 0.85rem;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 40% 60%;
    }
    
    .hero-text h1 {
        font-size: 2.3rem;
    }
    
    .features-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-actions {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .hero-bg-image {
        position: absolute;
        inset: 0;
        width: 100%;
        opacity: 0.3;
    }
    
    .hero-bg-image::after {
        background: linear-gradient(to top, var(--bg-dark) 30%, transparent 100%);
    }
    
    .hero-content {
        padding: 120px 20px 80px;
        justify-content: center;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .offer-box {
        flex-direction: column;
    }
    
    .offer-badge {
        order: 1;
        border-left: none;
        border-bottom: 1px solid var(--border-subtle);
    }
    
    .countdown {
        order: 2;
        justify-content: center;
    }
    
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-item h3 {
        font-size: 2.2rem;
    }
    
    .cta h2 {
        font-size: 1.8rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand p {
        margin: 0 auto;
    }
    
    .social-links {
        justify-content: center;
    }
}


/* ==================== LEARN SECTION ==================== */
.learn-section {
    padding: 100px 0;
    background: var(--bg-dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.learn-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 250px;
    background: radial-gradient(ellipse, rgba(249, 115, 22, 0.2) 0%, transparent 70%);
    filter: blur(50px);
    pointer-events: none;
}

.learn-section .section-header {
    margin-bottom: 50px;
}

.learn-section .section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 10px;
}

.highlight-text {
    display: block;
    font-size: 2rem;
    color: var(--primary);
    font-weight: 700;
}

.learn-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    padding: 50px 40px;
    max-width: 1100px;
    margin: 0 auto;
    max-height: 450px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--bg-dark);
}

.learn-card::-webkit-scrollbar {
    width: 6px;
}

.learn-card::-webkit-scrollbar-track {
    background: var(--bg-dark);
    border-radius: 3px;
}

.learn-card::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 3px;
}

.learn-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    direction: rtl;
}

.learn-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 25px;
    text-align: right;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.learn-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.15), transparent);
    transition: right 0.5s ease;
}

.learn-item:hover {
    border-color: var(--primary);
    background: rgba(249, 115, 22, 0.1);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.2);
}

.learn-item:hover::before {
    right: 100%;
}

.learn-icon {
    color: var(--primary);
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: all 0.3s;
}

.learn-item:hover .learn-icon {
    transform: rotate(180deg) scale(1.2);
    text-shadow: 0 0 10px var(--primary);
}

.learn-item span:last-child {
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: color 0.3s;
}

.learn-item:hover span:last-child {
    color: var(--text-light);
}

@media (max-width: 900px) {
    .learn-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .learn-card {
        padding: 30px 20px;
    }
}

@media (max-width: 600px) {
    .learn-grid {
        grid-template-columns: 1fr;
    }
    
    .learn-section .section-header h2 {
        font-size: 2rem;
    }
    
    .highlight-text {
        font-size: 1.5rem;
    }
}


/* ==================== AI TOOLS SECTION ==================== */
.tools-section {
    padding: 80px 0;
    background: var(--bg-dark);
}

.tools-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    padding: 50px 60px;
    text-align: center;
    max-width: 950px;
    margin: 0 auto;
}

.tools-badge {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 8px 22px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.tools-card h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.tools-card > p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.tools-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 35px;
}

.tools-divider::before,
.tools-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-subtle);
    max-width: 200px;
}

.divider-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    margin: 0 15px;
}

.tools-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.tool-tag {
    background: transparent;
    border: 1px solid var(--border-subtle);
    border-radius: 25px;
    padding: 10px 22px;
    font-size: 0.85rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tool-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.2), transparent);
    transition: left 0.5s ease;
}

.tool-tag:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.2);
}

.tool-tag:hover::before {
    left: 100%;
}

.tools-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 35px;
}

.tools-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-dim);
    transition: all 0.3s;
    cursor: pointer;
}

.tools-dots .dot:hover {
    background: var(--primary);
}

.tools-dots .dot.active {
    background: var(--primary);
    width: 24px;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .tools-card {
        padding: 35px 25px;
    }
    
    .tools-card h2 {
        font-size: 1.6rem;
    }
    
    .tool-tag {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

/* ==================== AFTER COURSE SECTION ==================== */
.after-course-section {
    padding: 100px 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.after-course-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.15) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}

.after-course-header {
    text-align: center;
    margin-bottom: 60px;
}

.after-course-header h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.after-course-header .section-desc {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Three Column Grid */
.after-course-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

/* Skills Columns */
.skills-column {
    height: 450px;
    overflow: hidden;
    position: relative;
}

.skills-column::before,
.skills-column::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 80px;
    z-index: 2;
    pointer-events: none;
}

.skills-column::before {
    top: 0;
    background: linear-gradient(to bottom, var(--bg-dark), transparent);
}

.skills-column::after {
    bottom: 0;
    background: linear-gradient(to top, var(--bg-dark), transparent);
}

.skills-track {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.skills-track-up {
    animation: scrollUp 18s ease-in-out infinite;
}

.skills-track-down {
    animation: scrollDown 18s ease-in-out infinite;
}

@keyframes scrollUp {
    0%, 8% { transform: translateY(0); }
    16%, 24% { transform: translateY(-120px); }
    32%, 40% { transform: translateY(-240px); }
    48%, 56% { transform: translateY(-120px); }
    64%, 72% { transform: translateY(-180px); }
    80%, 88% { transform: translateY(-60px); }
    96%, 100% { transform: translateY(0); }
}

@keyframes scrollDown {
    0%, 8% { transform: translateY(-240px); }
    16%, 24% { transform: translateY(-120px); }
    32%, 40% { transform: translateY(0); }
    48%, 56% { transform: translateY(-60px); }
    64%, 72% { transform: translateY(-180px); }
    80%, 88% { transform: translateY(-120px); }
    96%, 100% { transform: translateY(-240px); }
}

/* Skill Card */
.skill-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.skill-card:hover {
    border-color: var(--primary);
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.15);
}

.skill-icon {
    font-size: 2rem;
    margin-bottom: 12px;
    display: block;
}

.skill-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-light);
}

.skill-card p {
    color: var(--text-muted);
    font-size: 0.8rem;
    line-height: 1.5;
}

/* Center Stats Card */
.center-stats-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(249, 115, 22, 0.08) 100%);
    border: 1px solid var(--primary);
    border-radius: 24px;
    padding: 50px 35px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stats-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.2) 0%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
}

.center-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
    display: block;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.center-stats-card h3 {
    font-size: 1.6rem;
    margin-bottom: 25px;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

.center-stats-card h3 .highlight {
    display: block;
    font-size: 2rem;
}

.mini-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.mini-stat {
    text-align: center;
}

.mini-stat .num {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.mini-stat .label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.center-stats-card > p {
    color: var(--text-muted);
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

/* Responsive */
@media (max-width: 1024px) {
    .after-course-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .skills-column {
        height: 300px;
    }
    
    .center-stats-card {
        order: -1;
    }
}

@media (max-width: 768px) {
    .after-course-header h2 {
        font-size: 2rem;
    }
    
    .skills-column {
        height: 250px;
    }
    
    .center-stats-card {
        padding: 35px 25px;
    }
    
    .center-stats-card h3 {
        font-size: 1.4rem;
    }
    
    .center-stats-card h3 .highlight {
        font-size: 1.6rem;
    }
}


/* ==================== COURSE FOR ALL SECTION ==================== */
.course-for-section {
    padding: 100px 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.course-for-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(249, 115, 22, 0.15) 0%, transparent 100%);
    pointer-events: none;
}

.course-for-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 300px;
    background: radial-gradient(ellipse, rgba(249, 115, 22, 0.25) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

.course-for-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.course-for-content {
    text-align: right;
}

.course-badge {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 8px 22px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.course-for-content h2 {
    font-size: 2.8rem;
    line-height: 1.4;
    margin-bottom: 20px;
}

.course-for-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Vertical Slider */
.audience-slider-wrapper {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.audience-slider {
    display: flex;
    flex-direction: column;
    gap: 15px;
    animation: slideUp 12s ease-in-out infinite;
}

@keyframes slideUp {
    0%, 15% {
        transform: translateY(0);
    }
    20%, 35% {
        transform: translateY(-85px);
    }
    40%, 55% {
        transform: translateY(-170px);
    }
    60%, 75% {
        transform: translateY(-255px);
    }
    80%, 95% {
        transform: translateY(-170px);
    }
    100% {
        transform: translateY(0);
    }
}

.audience-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    transition: all 0.4s ease;
    cursor: pointer;
    min-height: 70px;
}

.audience-card:hover {
    border-color: var(--primary);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.1);
}

.check-icon {
    width: 32px;
    height: 32px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: all 0.3s;
}

.audience-card:hover .check-icon {
    transform: scale(1.15);
    box-shadow: 0 0 15px rgba(249, 115, 22, 0.5);
}

.audience-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    text-align: right;
    transition: color 0.3s;
    flex: 1;
}

.audience-card:hover p {
    color: var(--text-light);
}

.slider-progress {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
}

.progress-dot {
    width: 25px;
    height: 4px;
    background: var(--text-dim);
    border-radius: 2px;
    transition: all 0.3s;
}

.progress-dot.active {
    background: var(--primary);
    width: 40px;
}

/* Responsive for new sections */
@media (max-width: 1024px) {
    .course-for-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .course-for-content {
        text-align: center;
    }
    
    .audience-slider-wrapper {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .course-for-content h2 {
        font-size: 2rem;
    }
    
    .audience-card {
        padding: 20px;
    }
    
    .audience-slider-wrapper {
        height: 300px;
    }
}


/* ==================== STUDENTS VIDEOS SECTION ==================== */
.students-videos-section {
    padding: 100px 0;
    background: var(--bg-dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.students-videos-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 300px;
    background: radial-gradient(ellipse, rgba(249, 115, 22, 0.15) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}

.section-badge {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 8px 22px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.students-videos-section h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 50px;
}

.videos-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.video-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}

.video-item.tall {
    grid-row: span 2;
}

.video-item.wide {
    grid-column: span 1;
}

.video-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.3s ease;
}

.video-overlay-new {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.video-item:hover .video-overlay-new {
    opacity: 1;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(249, 115, 22, 0.2) 50%, transparent 100%);
}

.video-item:hover img {
    transform: scale(1.1);
    filter: brightness(0.8);
}

.play-icon {
    width: 70px;
    height: 70px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transform: scale(0);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 40px rgba(249, 115, 22, 0.5);
}

.video-item:hover .play-icon {
    transform: scale(1);
}

.video-item:hover .play-icon:hover {
    transform: scale(1.15);
    box-shadow: 0 15px 50px rgba(249, 115, 22, 0.7);
}

.video-caption {
    color: white;
    font-size: 0.9rem;
    margin-top: 15px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease 0.1s;
}

.video-item:hover .video-caption {
    transform: translateY(0);
    opacity: 1;
}

.video-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.75rem;
    backdrop-filter: blur(10px);
}

.video-badge span {
    color: var(--primary);
    margin: 0 5px;
}

/* Border glow effect on hover */
.video-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary), transparent, var(--primary));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
    pointer-events: none;
}

.video-item:hover::before {
    opacity: 1;
}

/* ==================== STUDENTS PROJECTS SECTION ==================== */
.students-projects-section {
    padding: 100px 0;
    background: var(--bg-card);
    text-align: center;
}

.students-projects-section h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.project-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.3s ease;
}

.project-card:hover img {
    transform: scale(1.1);
    filter: brightness(0.7);
}

.project-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.project-card:hover::after {
    opacity: 1;
}

/* Border glow effect */
.project-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary), transparent, var(--primary));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
    pointer-events: none;
}

.project-card:hover::before {
    opacity: 1;
}

/* Responsive for gallery sections */
@media (max-width: 1024px) {
    .videos-masonry {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .students-videos-section h2,
    .students-projects-section h2 {
        font-size: 2rem;
    }
    
    .videos-masonry {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }
    
    .video-item.tall {
        grid-row: span 1;
    }
    
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .play-icon {
        width: 55px;
        height: 55px;
        font-size: 1.2rem;
    }
}


/* ==================== PRICING SECTION ==================== */
.pricing-section {
    padding: 100px 0;
    background: var(--bg-dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70%;
    background: linear-gradient(to top, rgba(249, 115, 22, 0.12) 0%, transparent 100%);
    pointer-events: none;
}

.pricing-section h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.pricing-section .section-desc {
    margin-bottom: 30px;
}

/* Location Toggle */
.location-toggle {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.location-btn {
    background: transparent;
    border: 1px solid var(--border-subtle);
    color: var(--text-muted);
    padding: 12px 25px;
    border-radius: 25px;
    font-family: 'Cairo', sans-serif;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
}

.location-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.location-btn:hover:not(.active) {
    border-color: var(--primary);
    color: var(--primary);
}

/* Plan Tabs */
.plan-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.plan-tab {
    background: transparent;
    border: 1px solid var(--border-subtle);
    color: var(--text-muted);
    padding: 12px 30px;
    border-radius: 25px;
    font-family: 'Cairo', sans-serif;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
}

.plan-tab.active {
    background: var(--gradient-orange);
    border-color: transparent;
    color: white;
}

.plan-tab:hover:not(.active) {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

/* Pricing Card */
.pricing-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: linear-gradient(135deg, #d4a574 0%, #c4956a 50%, #b8895e 100%);
    border-radius: 24px;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
    text-align: right;
    direction: ltr;
}

.pricing-details {
    padding: 40px;
    background: linear-gradient(135deg, #e8c49a 0%, #d4a574 100%);
}

.price-box {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 30px;
}

.old-price {
    color: #8b6914;
    text-decoration: line-through;
    font-size: 1.2rem;
    display: block;
    margin-bottom: 5px;
}

.badge-discount {
    display: inline-block;
    background: #dc2626;
    color: white;
    padding: 3px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    margin-bottom: 10px;
}

.current-price {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1;
    margin-bottom: 5px;
}

.price-note {
    color: #dc2626;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 25px;
}

.features-list {
    list-style: none;
    text-align: right;
    direction: rtl;
    margin-bottom: 25px;
}

.features-list li {
    color: #4a3f2f;
    font-size: 0.9rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-btn {
    width: 100%;
    background: #1a1a1a;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 12px;
    font-family: 'Cairo', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-btn:hover {
    background: #333;
    transform: translateY(-2px);
}

.pricing-info {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: right;
    direction: rtl;
}

.pricing-info h3 {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.pricing-info p {
    color: #4a3f2f;
    font-size: 1rem;
    line-height: 1.8;
}

/* Responsive Pricing */
@media (max-width: 768px) {
    .location-toggle,
    .plan-tabs {
        flex-wrap: wrap;
    }
    
    .pricing-card {
        grid-template-columns: 1fr;
    }
    
    .pricing-info {
        order: -1;
        padding: 30px;
    }
    
    .pricing-details {
        padding: 30px;
    }
    
    .current-price {
        font-size: 2.2rem;
    }
}


/* ==================== FAQ SECTION ==================== */
.faq-section {
    padding: 100px 0;
    background: var(--bg-dark);
    text-align: center;
}

.faq-section .section-badge {
    margin-bottom: 25px;
}

.faq-section h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.faq-section .section-desc {
    margin-bottom: 50px;
}

.faq-list {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.faq-item:hover {
    border-color: var(--primary);
    transform: translateX(-8px);
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.15);
}

.faq-item:hover::before {
    opacity: 1;
}

.faq-question {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px 30px;
    text-align: right;
    direction: rtl;
    position: relative;
    z-index: 1;
}

.faq-number {
    width: 38px;
    height: 38px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.faq-item:hover .faq-number {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.6);
}

.faq-text {
    flex: 1;
}

.faq-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-light);
    transition: color 0.3s;
}

.faq-item:hover .faq-text h4 {
    color: var(--primary);
}

.faq-text p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
    transition: color 0.3s;
}

.faq-item:hover .faq-text p {
    color: var(--text-light);
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .faq-section h2 {
        font-size: 2rem;
    }
    
    .faq-question {
        padding: 20px;
        gap: 15px;
    }
    
    .faq-text h4 {
        font-size: 1rem;
    }
    
    .faq-text p {
        font-size: 0.85rem;
    }
    
    .faq-item:hover {
        transform: translateX(0) translateY(-5px);
    }
}


/* ==================== NEW TESTIMONIALS SECTION ==================== */
.testimonials-section {
    padding: 100px 0;
    background: var(--bg-dark);
    text-align: center;
}

.testimonials-section h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.testimonials-section .section-desc {
    margin-bottom: 25px;
}

.rating-badge {
    display: inline-block;
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 0.95rem;
    margin-bottom: 50px;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.testimonial-card-new {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 30px;
    text-align: right;
    direction: rtl;
    transition: all 0.3s;
}

.testimonial-card-new:hover {
    border-color: rgba(249, 115, 22, 0.3);
    transform: translateY(-5px);
}

.testimonial-card-new .stars {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-align: right;
}

.review-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.9;
    margin-bottom: 25px;
    min-height: 80px;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid var(--border-subtle);
}

.reviewer-avatar {
    width: 45px;
    height: 45px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.reviewer-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 3px;
}

.reviewer-info span {
    font-size: 0.8rem;
    color: var(--primary);
}

/* Slider Navigation */
.slider-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.nav-arrow {
    width: 45px;
    height: 45px;
    background: transparent;
    border: 1px solid var(--border-subtle);
    border-radius: 50%;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-arrow:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.slider-dots-new {
    display: flex;
    gap: 8px;
}

.slider-dots-new .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-dim);
    transition: all 0.3s;
    cursor: pointer;
}

.slider-dots-new .dot.active {
    background: var(--primary);
    width: 30px;
    border-radius: 4px;
}

/* Responsive Testimonials */
@media (max-width: 1024px) {
    .testimonials-slider {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-section h2 {
        font-size: 2rem;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .review-text {
        min-height: auto;
    }
    
    .slider-dots-new .dot {
        width: 6px;
        height: 6px;
    }
    
    .slider-dots-new .dot.active {
        width: 20px;
    }
}


/* ==================== HOME PAGE STYLES ==================== */

/* Home Hero */
.home-hero {
    grid-template-columns: 50% 50%;
}

.home-hero .hero-content {
    padding: 120px 60px 100px 40px;
}

.home-bg {
    background: url('bg6.png') center center / cover no-repeat;
}

.hero-badge {
    display: inline-block;
    background: rgba(249, 115, 22, 0.15);
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.hero-btns {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    background: var(--gradient-orange);
    color: white;
    padding: 14px 35px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.35);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--text-light);
    padding: 14px 35px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid var(--border-subtle);
    transition: all 0.3s;
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.hero-stats-row {
    display: flex;
    gap: 40px;
}

.hero-stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-text {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.about-content {
    text-align: right;
}

.about-content h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    line-height: 1.4;
}

.about-content p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.about-tag {
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.3);
    color: var(--primary);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-img-wrapper {
    position: relative;
    width: 300px;
    height: 350px;
}

.about-img-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.3) 0%, transparent 70%);
    filter: blur(40px);
}

.about-img-placeholder {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--primary);
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: var(--bg-card);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.service-card {
    background: var(--bg-dark);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-orange);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.15);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, var(--bg-dark) 0%, rgba(249, 115, 22, 0.08) 100%);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.service-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: var(--text-light);
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-link {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
}

.service-link:hover {
    letter-spacing: 1px;
}

/* Courses Section */
.courses-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

/* Categories Slider */
.categories-slider {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 60px;
    position: relative;
}

.slider-arrow {
    width: 45px;
    height: 45px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 50%;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.categories-track {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 0;
    flex: 1;
}

.categories-track::-webkit-scrollbar {
    display: none;
}

.category-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 50px;
    padding: 12px 25px;
    text-decoration: none;
    color: var(--text-light);
    white-space: nowrap;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.category-pill:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
}

.category-pill.free-pill {
    border-color: rgba(34, 197, 94, 0.3);
}

.category-pill.free-pill:hover {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border-color: #22c55e;
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
}

.pill-icon {
    font-size: 1.3rem;
}

.pill-text {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.3;
}

.pill-text small {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-muted);
    display: block;
}

.category-pill:hover .pill-text small {
    color: rgba(255, 255, 255, 0.8);
}

/* Latest Courses Header */
.latest-courses-header {
    text-align: center;
    margin-bottom: 40px;
}

.latest-courses-header h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.latest-courses-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Courses Grid */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.course-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.4s ease;
    display: block;
}

.course-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.15);
}

.course-card.free-course {
    border-color: rgba(34, 197, 94, 0.3);
}

.course-card.free-course:hover {
    border-color: #22c55e;
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.15);
}

.course-img {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.course-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.course-card:hover .course-img img {
    transform: scale(1.1);
}

.course-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--primary);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
}

.course-badge.new-badge {
    background: #3b82f6;
}

.course-badge.free-badge-tag {
    background: #22c55e;
}

.course-info {
    padding: 20px;
}

.course-category {
    display: inline-block;
    background: rgba(249, 115, 22, 0.15);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.7rem;
    margin-bottom: 12px;
}

.course-card.free-course .course-category {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.course-info h4 {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 8px;
    line-height: 1.4;
}

.course-info > p {
    color: var(--text-muted);
    font-size: 0.8rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.course-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--border-subtle);
}

.course-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
}

.course-price.free-price {
    color: #22c55e;
}

.course-students {
    font-size: 0.75rem;
    color: var(--text-dim);
}

.courses-cta {
    text-align: center;
}

/* Blog Section */
.blog-section {
    padding: 100px 0;
    background: var(--bg-card);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.blog-card {
    background: var(--bg-dark);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.1);
}

.blog-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
}

.blog-content {
    padding: 25px;
}

.blog-date {
    color: var(--text-dim);
    font-size: 0.8rem;
    display: block;
    margin-bottom: 10px;
}

.blog-content h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    line-height: 1.5;
    color: var(--text-light);
}

.blog-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.blog-link {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
}

.blog-link:hover {
    letter-spacing: 1px;
}

.blog-cta {
    text-align: center;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.contact-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(249, 115, 22, 0.1) 100%);
    border: 1px solid var(--primary);
    border-radius: 30px;
    padding: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, transparent 50%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.contact-content {
    position: relative;
    z-index: 1;
}

.contact-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.contact-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.contact-btns {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-whatsapp {
    display: inline-block;
    background: #25d366;
    color: white;
    padding: 14px 35px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
}

.btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-3px);
}

.contact-socials {
    display: flex;
    justify-content: center;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-3px);
}

/* Responsive Home Page */
@media (max-width: 1024px) {
    .home-hero {
        grid-template-columns: 40% 60%;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .courses-categories {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-content {
        text-align: center;
    }
    
    .about-tags {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .home-hero {
        grid-template-columns: 1fr;
    }
    
    .home-hero .hero-content {
        padding: 120px 20px 80px;
        justify-content: center;
    }
    
    .home-hero .hero-text {
        text-align: center;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .hero-stats-row {
        justify-content: center;
    }
    
    .services-grid,
    .courses-categories,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-card {
        padding: 40px 25px;
    }
    
    .contact-content h2 {
        font-size: 1.8rem;
    }
}


/* ==================== BLOG PAGE STYLES ==================== */

/* Blog Hero */
.blog-hero {
    padding: 150px 0 80px;
    text-align: center;
    background: var(--bg-dark);
    position: relative;
}

.blog-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 200px;
    background: radial-gradient(ellipse, rgba(249, 115, 22, 0.15) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

.blog-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.blog-hero > .container > p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.blog-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--border-subtle);
    color: var(--text-muted);
    padding: 10px 22px;
    border-radius: 25px;
    font-family: 'Cairo', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* Featured Article */
.featured-article-section {
    padding: 60px 0;
    background: var(--bg-dark);
}

.featured-article {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    overflow: hidden;
    align-items: stretch;
}

.featured-img {
    position: relative;
    min-height: 400px;
    overflow: hidden;
}

.featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-article:hover .featured-img img {
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: white;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.featured-badge-inline {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 6px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    margin-left: 10px;
}

.featured-content {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-category-tag {
    display: inline-block;
    background: rgba(249, 115, 22, 0.15);
    color: var(--primary);
    padding: 6px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    margin-bottom: 20px;
}

.featured-content h2 {
    font-size: 1.8rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.featured-content > p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.featured-meta {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.meta-date,
.meta-read {
    color: var(--text-dim);
    font-size: 0.9rem;
}

/* All Articles Section */
.all-articles-section {
    padding: 80px 0;
    background: var(--bg-card);
}

.all-articles-section h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.page-btn {
    background: transparent;
    border: 1px solid var(--border-subtle);
    color: var(--text-muted);
    padding: 10px 18px;
    border-radius: 10px;
    font-family: 'Cairo', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
}

.page-btn:hover,
.page-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background: var(--bg-dark);
}

.newsletter-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(249, 115, 22, 0.1) 100%);
    border: 1px solid var(--primary);
    border-radius: 24px;
    padding: 60px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.newsletter-card h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.newsletter-card > p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 14px 20px;
    background: var(--bg-dark);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    color: var(--text-light);
    font-family: 'Cairo', sans-serif;
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary);
}

.newsletter-form input::placeholder {
    color: var(--text-dim);
}

/* Active Nav Link */
.nav-links a.active {
    color: var(--primary);
}

/* Responsive Blog Page */
@media (max-width: 1024px) {
    .featured-article {
        grid-template-columns: 1fr;
    }
    
    .featured-img {
        min-height: 300px;
    }
    
    .featured-content {
        padding: 30px;
    }
    
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-hero h1 {
        font-size: 2rem;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .featured-content h2 {
        font-size: 1.4rem;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-card {
        padding: 40px 25px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        min-width: 100%;
    }
}


/* Responsive Courses Section */
@media (max-width: 1200px) {
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .categories-slider {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .slider-arrow {
        display: none;
    }
    
    .categories-track {
        justify-content: flex-start;
        padding: 10px;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
    }
    
    .latest-courses-header h3 {
        font-size: 1.5rem;
    }
}


/* ==================== COURSES PAGE STYLES ==================== */

/* Courses Page Hero */
.courses-page-hero {
    padding: 150px 0 60px;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.courses-page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top right, rgba(249, 115, 22, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.courses-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-label {
    display: inline-block;
    background: rgba(249, 115, 22, 0.15);
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.courses-page-hero h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.courses-page-hero p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 40px;
}

/* Search Box */
.courses-search {
    display: flex;
    max-width: 500px;
    margin: 0 auto 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 50px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.courses-search:focus-within {
    border-color: var(--primary);
}

.courses-search input {
    flex: 1;
    padding: 15px 25px;
    background: transparent;
    border: none;
    color: var(--text-light);
    font-family: 'Cairo', sans-serif;
    font-size: 1rem;
}

.courses-search input::placeholder {
    color: var(--text-dim);
}

.courses-search input:focus {
    outline: none;
}

.search-btn {
    padding: 15px 25px;
    background: var(--primary);
    border: none;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.search-btn:hover {
    background: var(--primary-light);
}

/* Quick Stats */
.courses-quick-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.quick-stat {
    text-align: center;
}

.qs-num {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.qs-text {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Categories Section */
.courses-categories-section {
    padding: 40px 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.categories-grid {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.category-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    background: var(--bg-dark);
    border: 1px solid var(--border-subtle);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
}

.category-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.category-card.active {
    background: var(--primary);
    border-color: var(--primary);
}

.category-card.active .cat-name,
.category-card.active .cat-count {
    color: white;
}

.category-card.free-cat:hover {
    border-color: #22c55e;
}

.category-card.free-cat.active {
    background: #22c55e;
    border-color: #22c55e;
}

.cat-icon {
    font-size: 1.2rem;
}

.cat-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
}

.cat-count {
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.category-card.active .cat-count {
    background: rgba(255, 255, 255, 0.2);
}

/* CTA Section */
.courses-cta-section {
    padding: 80px 0;
    background: var(--bg-card);
}

.cta-card {
    background: linear-gradient(135deg, var(--bg-dark) 0%, rgba(249, 115, 22, 0.1) 100%);
    border: 1px solid var(--primary);
    border-radius: 24px;
    padding: 60px;
    text-align: center;
}

.cta-card h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-card p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Courses Page */
@media (max-width: 1024px) {
    .courses-grid-full {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .courses-hero h1 {
        font-size: 2rem;
    }
    
    .courses-grid-full {
        grid-template-columns: 1fr;
    }
    
    .cta-card {
        padding: 40px 25px;
    }
    
    .cta-card h2 {
        font-size: 1.5rem;
    }
}


/* ==================== ENHANCED MOBILE RESPONSIVE ==================== */

/* Mobile Navigation Menu */
.nav-mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-darker) 100%);
    border-left: 1px solid var(--border-subtle);
    padding: 80px 30px 30px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 999;
    overflow-y: auto;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
}

.nav-mobile-menu.active {
    right: 0;
    transform: translateX(0);
}

.nav-mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 0;
}

.nav-mobile-menu li {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.3s ease;
}

.nav-mobile-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-mobile-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(247, 115, 22, 0.1), transparent);
    transition: left 0.5s ease;
}

.nav-mobile-menu a:hover::before {
    left: 100%;
}

.nav-mobile-menu a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.nav-mobile-menu .mobile-cta {
    background: linear-gradient(135deg, var(--primary) 0%, #ea580c 100%);
    color: var(--bg-dark) !important;
    border-radius: 12px;
    text-align: center;
    margin-top: 20px;
    border: none !important;
    box-shadow: 0 4px 15px rgba(247, 115, 22, 0.3);
    transform: scale(1);
    transition: all 0.3s ease;
}

.nav-mobile-menu .mobile-cta:hover {
    background: linear-gradient(135deg, #ea580c 0%, var(--primary) 100%);
    color: var(--bg-dark) !important;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(247, 115, 22, 0.4);
}

/* Mobile Dropdown */
.mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    margin-top: 10px;
    backdrop-filter: blur(10px);
}

.mobile-dropdown-menu.active {
    max-height: 200px;
}

.mobile-dropdown-menu li {
    margin: 0;
    animation: none;
    opacity: 1;
    transform: none;
}

.mobile-dropdown-menu a {
    padding: 12px 20px;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin: 0;
}

.mobile-dropdown-menu a:last-child {
    border-bottom: none;
}

.mobile-dropdown-toggle i {
    transition: transform 0.3s ease;
}

.mobile-dropdown-toggle i.rotated {
    transform: rotate(180deg);
}

body.menu-open {
    overflow: hidden;
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Navbar Transparent */
@media (max-width: 768px) {
    .navbar {
        background: transparent !important;
        backdrop-filter: none !important;
        padding: 15px 20px;
    }
    
    .navbar.scrolled {
        background: transparent !important;
        backdrop-filter: none !important;
    }
    
    .logo-img {
        height: 60px;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    /* Hero */
    .hero-text h1 {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .hero-btns {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .hero-stats-row {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    /* Offer Box */
    .offer-box {
        width: 100%;
    }
    
    .countdown {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .time-box {
        min-width: 45px;
        padding: 8px 10px;
    }
    
    .time {
        font-size: 1.2rem;
    }
    
    /* Section Headers */
    .section-header h2,
    .learn-section .section-header h2,
    .after-course-header h2 {
        font-size: 1.6rem;
    }
    
    .highlight-text {
        font-size: 1.3rem;
    }
    
    /* Services */
    .service-card {
        padding: 25px 20px;
    }
    
    .service-icon {
        font-size: 2rem;
    }
    
    /* Courses */
    .category-pill {
        padding: 10px 18px;
    }
    
    .pill-text {
        font-size: 0.8rem;
    }
    
    .course-info h4 {
        font-size: 0.95rem;
    }
    
    /* Blog */
    .blog-hero h1,
    .courses-hero h1 {
        font-size: 1.8rem;
    }
    
    .featured-content {
        padding: 25px;
    }
    
    .featured-content h2 {
        font-size: 1.3rem;
    }
    
    /* Contact */
    .contact-card {
        padding: 30px 20px;
    }
    
    .contact-content h2 {
        font-size: 1.5rem;
    }
    
    .contact-btns {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-whatsapp {
        width: 100%;
    }
    
    /* Footer */
    .footer-content {
        gap: 30px;
    }
    
    .footer-brand p {
        font-size: 0.85rem;
    }
    
    /* FAQ */
    .faq-question {
        padding: 18px 15px;
        gap: 12px;
    }
    
    .faq-number {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }
    
    .faq-text h4 {
        font-size: 0.95rem;
    }
    
    /* Pricing */
    .current-price {
        font-size: 1.8rem;
    }
    
    .pricing-details,
    .pricing-info {
        padding: 25px;
    }
    
    /* Testimonials */
    .testimonial-card-new {
        padding: 20px;
    }
    
    .review-text {
        font-size: 0.85rem;
    }
    
    /* Newsletter */
    .newsletter-card {
        padding: 30px 20px;
    }
    
    .newsletter-card h2 {
        font-size: 1.5rem;
    }
    
    /* Skills Section */
    .skills-column {
        height: 200px;
    }
    
    .skill-card {
        padding: 15px;
    }
    
    .skill-icon {
        font-size: 1.5rem;
    }
    
    .skill-card h4 {
        font-size: 0.9rem;
    }
    
    .center-stats-card {
        padding: 30px 20px;
    }
    
    .center-stats-card h3 {
        font-size: 1.3rem;
    }
    
    .mini-stat .num {
        font-size: 1.8rem;
    }
    
    /* Tools Section */
    .tools-card {
        padding: 25px 15px;
    }
    
    .tools-card h2 {
        font-size: 1.4rem;
    }
    
    .tool-tag {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    
    /* Learn Section */
    .learn-card {
        padding: 20px 15px;
        max-height: 350px;
    }
    
    .learn-item {
        padding: 10px 15px;
    }
    
    .learn-item span:last-child {
        font-size: 0.8rem;
    }
    
    /* Gallery */
    .videos-masonry {
        grid-auto-rows: 180px;
    }
    
    .play-icon {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    /* Audience Slider */
    .audience-slider-wrapper {
        height: 250px;
    }
    
    .audience-card {
        padding: 15px;
    }
    
    .audience-card p {
        font-size: 0.8rem;
    }
}

/* Tablet Portrait (max-width: 768px) - Additional fixes */
@media (max-width: 768px) {
    
    /* Logo */
    .logo-img {
        height: 32px;
    }
    
    /* Section Badge */
    .section-badge {
        font-size: 0.8rem;
        padding: 6px 16px;
    }
    
    /* Stats */
    .stats-grid {
        gap: 20px;
    }
    
    .stat-item h3 {
        font-size: 1.8rem;
    }
    
    /* Filter buttons */
    .filter-btn {
        padding: 8px 14px;
        font-size: 0.8rem;
    }
    
    /* Blog cards */
    .blog-img {
        height: 180px;
    }
    
    .blog-content {
        padding: 20px;
    }
    
    .blog-content h3 {
        font-size: 1rem;
    }
}

/* Landscape phones */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }
    
    .hero-content {
        padding: 80px 20px 40px;
    }
    
    .blog-hero,
    .courses-hero {
        padding: 120px 0 60px;
    }
}

/* Fix for very small screens */
@media (max-width: 360px) {
    .hero-text h1 {
        font-size: 1.3rem;
    }
    
    .section-header h2 {
        font-size: 1.4rem;
    }
    
    .time-box {
        min-width: 40px;
        padding: 6px 8px;
    }
    
    .time {
        font-size: 1rem;
    }
    
    .category-pill {
        padding: 8px 12px;
    }
    
    .pill-icon {
        font-size: 1rem;
    }
    
    .pill-text {
        font-size: 0.7rem;
    }
}

/* Ensure touch targets are large enough */
@media (max-width: 768px) {
    .nav-links a,
    .btn-login,
    .btn-primary,
    .btn-secondary,
    .filter-btn,
    .category-pill,
    .blog-link,
    .service-link,
    .social-link {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .hamburger {
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}


/* Featured Course Section */
.featured-course-section {
    padding: 60px 0;
    background: var(--bg-dark);
}

.featured-course-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(249, 115, 22, 0.08) 100%);
    border: 1px solid var(--primary);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.fc-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: white;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.fc-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.fc-category {
    display: inline-block;
    background: rgba(249, 115, 22, 0.15);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    margin-bottom: 15px;
}

.fc-info h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.fc-info > p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

.fc-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
}

.fc-features span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.fc-meta {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.fc-students {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.students-avatars {
    font-size: 1.2rem;
}

.fc-rating {
    color: var(--primary);
    font-size: 0.9rem;
}

.fc-price-row {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.fc-price .old {
    text-decoration: line-through;
    color: var(--text-dim);
    font-size: 1rem;
    margin-left: 10px;
}

.fc-price .current {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
}

.fc-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.fc-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.fc-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 40px rgba(249, 115, 22, 0.4);
}

.fc-play:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

/* All Courses Section */
.all-courses-section {
    padding: 60px 0 100px;
    background: var(--bg-dark);
}

.section-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.section-top-bar h2 {
    font-size: 1.8rem;
}

.sort-dropdown select {
    padding: 10px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    color: var(--text-light);
    font-family: 'Cairo', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
}

.sort-dropdown select:focus {
    outline: none;
    border-color: var(--primary);
}

/* Courses Masonry Grid */
.courses-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Course Card Pro */
.course-card-pro {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.course-card-pro:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(249, 115, 22, 0.15);
}

.course-card-pro.free-course-pro {
    border-color: rgba(34, 197, 94, 0.3);
}

.course-card-pro.free-course-pro:hover {
    border-color: #22c55e;
    box-shadow: 0 20px 50px rgba(34, 197, 94, 0.15);
}

.ccp-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.ccp-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.course-card-pro:hover .ccp-image img {
    transform: scale(1.1);
}

.ccp-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.course-card-pro:hover .ccp-overlay {
    opacity: 1;
}

.ccp-preview {
    background: var(--primary);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    cursor: pointer;
}

.ccp-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
}

.ccp-badge.new {
    background: #3b82f6;
    color: white;
}

.ccp-badge.hot {
    background: #ef4444;
    color: white;
}

.ccp-badge.free {
    background: #22c55e;
    color: white;
}

.ccp-content {
    padding: 20px;
}

.ccp-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.ccp-cat {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.ccp-level {
    background: rgba(255, 255, 255, 0.05);
    padding: 3px 10px;
    border-radius: 10px;
    font-size: 0.7rem;
    color: var(--text-dim);
}

.ccp-content h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: var(--text-light);
    line-height: 1.4;
}

.ccp-content > p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.ccp-stats {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-subtle);
}

.ccp-stats span {
    font-size: 0.75rem;
    color: var(--text-dim);
}

.ccp-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ccp-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
}

.ccp-price.free {
    color: #22c55e;
}

.ccp-btn {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.3s;
}

.ccp-btn:hover {
    background: var(--primary);
    color: white;
}

/* Why Learn Section */
.why-learn-section {
    padding: 80px 0;
    background: var(--bg-card);
}

.why-learn-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.why-card {
    background: var(--bg-dark);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
}

.why-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.why-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}

.why-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.why-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* CTA Card Pro */
.cta-card-pro {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(249, 115, 22, 0.15) 100%);
    border: 1px solid var(--primary);
    border-radius: 24px;
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-content p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.cta-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-decoration {
    font-size: 8rem;
    color: var(--primary);
    opacity: 0.2;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Courses Page */
@media (max-width: 1024px) {
    .fc-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .fc-image {
        order: -1;
    }
    
    .courses-masonry {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .courses-page-hero h1 {
        font-size: 2rem;
    }
    
    .courses-quick-stats {
        gap: 30px;
    }
    
    .qs-num {
        font-size: 1.5rem;
    }
    
    .categories-grid {
        gap: 10px;
    }
    
    .category-card {
        padding: 10px 15px;
    }
    
    .cat-name {
        font-size: 0.8rem;
    }
    
    .featured-course-card {
        padding: 25px;
    }
    
    .fc-info h2 {
        font-size: 1.5rem;
    }
    
    .fc-price .current {
        font-size: 1.4rem;
    }
    
    .courses-masonry {
        grid-template-columns: 1fr;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-card-pro {
        padding: 40px 25px;
        flex-direction: column;
        text-align: center;
    }
    
    .cta-decoration {
        display: none;
    }
    
    .cta-btns {
        justify-content: center;
    }
}


/* ==================== TUTORIALS PAGE STYLES ==================== */

/* Tutorials Hero */
.tutorials-hero {
    padding: 150px 0 80px;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.tutorials-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.15) 0%, transparent 60%);
    filter: blur(80px);
    pointer-events: none;
}

.tutorials-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.tutorials-hero h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
}

.tutorials-hero p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 550px;
    margin: 0 auto 40px;
}

/* Tutorials Stats */
.tutorials-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 40px;
}

.t-stat {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 15px 25px;
}

.t-stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 0, 0, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #ff0000;
}

.t-stat-info {
    text-align: right;
}

.t-stat-num {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-light);
}

.t-stat-text {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* YouTube Button */
.btn-youtube {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ff0000;
    color: white;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
}

.btn-youtube:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.4);
}

.yt-icon {
    width: 30px;
    height: 30px;
    background: white;
    color: #ff0000;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

/* Tutorials Tabs */
.tutorials-tabs-section {
    padding: 30px 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    position: sticky;
    top: 70px;
    z-index: 100;
}

.tutorials-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.tutorial-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: var(--bg-dark);
    border: 1px solid var(--border-subtle);
    border-radius: 50px;
    color: var(--text-muted);
    font-family: 'Cairo', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
}

.tutorial-tab:hover {
    border-color: var(--primary);
    color: var(--text-light);
}

.tutorial-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* Playlists Section */
.playlists-section {
    padding: 60px 0;
    background: var(--bg-dark);
}

.playlist-block {
    margin-bottom: 60px;
}

.playlist-block:last-child {
    margin-bottom: 0;
}

.playlist-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.playlist-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.playlist-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.playlist-info h2 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.playlist-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.playlist-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.playlist-link:hover {
    letter-spacing: 1px;
}

/* Videos Grid */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Video Card */
.video-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
}

.video-card:hover {
    transform: translateY(-8px);
    border-color: #ff0000;
    box-shadow: 0 20px 50px rgba(255, 0, 0, 0.15);
}

.video-thumbnail {
    position: relative;
    height: 160px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.1);
}

.video-duration {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.video-play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.video-card:hover .video-play-overlay {
    opacity: 1;
}

.play-btn {
    width: 60px;
    height: 60px;
    background: #ff0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    transform: scale(0);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.video-card:hover .play-btn {
    transform: scale(1);
}

.video-info {
    padding: 15px;
}

.video-info h3 {
    font-size: 0.95rem;
    margin-bottom: 10px;
    line-height: 1.5;
    color: var(--text-light);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-meta {
    display: flex;
    gap: 15px;
}

.video-meta span {
    font-size: 0.75rem;
    color: var(--text-dim);
}

/* Subscribe CTA */
.subscribe-cta-section {
    padding: 80px 0;
    background: var(--bg-card);
}

.subscribe-card {
    background: linear-gradient(135deg, #1a1a1a 0%, rgba(255, 0, 0, 0.15) 100%);
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 24px;
    padding: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.subscribe-content {
    position: relative;
    z-index: 1;
}

.yt-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: #ff0000;
    border-radius: 20px;
    font-size: 2rem;
    color: white;
    margin-bottom: 25px;
}

.subscribe-card h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.subscribe-card p {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.btn-youtube-big {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #ff0000;
    color: white;
    padding: 16px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 10px 40px rgba(255, 0, 0, 0.4);
}

.btn-youtube-big:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 50px rgba(255, 0, 0, 0.5);
}

.subscribe-decoration {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
}

.sub-circle {
    width: 150px;
    height: 150px;
    border: 2px solid rgba(255, 0, 0, 0.2);
    border-radius: 50%;
    position: absolute;
}

.sub-circle:nth-child(1) {
    animation: pulse-circle 3s ease-in-out infinite;
}

.sub-circle:nth-child(2) {
    width: 200px;
    height: 200px;
    top: -25px;
    right: -25px;
    animation: pulse-circle 3s ease-in-out infinite 0.5s;
}

.sub-circle:nth-child(3) {
    width: 250px;
    height: 250px;
    top: -50px;
    right: -50px;
    animation: pulse-circle 3s ease-in-out infinite 1s;
}

@keyframes pulse-circle {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}

/* Request Section */
.request-section {
    padding: 60px 0;
    background: var(--bg-dark);
}

.request-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    padding: 50px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.request-card h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.request-card > p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.request-form {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.request-form input {
    flex: 1;
    padding: 14px 20px;
    background: var(--bg-dark);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    color: var(--text-light);
    font-family: 'Cairo', sans-serif;
    font-size: 1rem;
}

.request-form input:focus {
    outline: none;
    border-color: var(--primary);
}

.request-form input::placeholder {
    color: var(--text-dim);
}

/* Responsive Tutorials */
@media (max-width: 1200px) {
    .videos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tutorials-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .tutorials-hero h1 {
        font-size: 2rem;
    }
    
    .tutorials-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .t-stat {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .tutorials-tabs {
        gap: 8px;
    }
    
    .tutorial-tab {
        padding: 10px 16px;
        font-size: 0.8rem;
    }
    
    .playlist-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .playlist-info {
        flex-direction: column;
        align-items: flex-start;
        text-align: right;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
    }
    
    .video-thumbnail {
        height: 200px;
    }
    
    .subscribe-card {
        padding: 40px 25px;
    }
    
    .subscribe-decoration {
        display: none;
    }
    
    .request-form {
        flex-direction: column;
    }
}


/* ==================== VIDEO MODAL ==================== */
.video-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    width: 100%;
    max-width: 1000px;
    overflow: hidden;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
}

.video-modal.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid var(--border-subtle);
}

.modal-header h3 {
    font-size: 1.1rem;
    color: var(--text-light);
    margin: 0;
}

.modal-close {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    border-radius: 50%;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: #ff0000;
    border-color: #ff0000;
    color: white;
}

.modal-video {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.modal-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        border-radius: 15px;
    }
    
    .modal-header {
        padding: 15px 20px;
    }
    
    .modal-header h3 {
        font-size: 0.95rem;
    }
    
    .modal-close {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}


/* ==================== PLAYLIST PAGE STYLES ==================== */

/* Playlist Hero */
.playlist-hero {
    padding: 130px 0 60px;
    background: var(--bg-dark);
    position: relative;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 30px;
    transition: color 0.3s;
}

.back-link:hover {
    color: var(--primary);
}

.playlist-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.playlist-category {
    display: inline-block;
    background: rgba(249, 115, 22, 0.15);
    color: var(--primary);
    padding: 6px 15px;
    border-radius: 15px;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.playlist-hero-info h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.playlist-hero-info > p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.playlist-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.pl-stat {
    text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 15px 25px;
}

.pl-stat-num {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.pl-stat-text {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.playlist-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-play-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: white;
    padding: 14px 30px;
    border-radius: 50px;
    border: none;
    font-family: 'Cairo', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-play-all:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
}

.btn-youtube-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #ff0000;
    padding: 14px 30px;
    border-radius: 50px;
    border: 1px solid #ff0000;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-youtube-outline:hover {
    background: #ff0000;
    color: white;
}

/* Playlist Thumbnail */
.playlist-hero-thumb {
    display: flex;
    justify-content: center;
}

.thumb-stack {
    position: relative;
    width: 100%;
    max-width: 450px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.thumb-stack img {
    width: 100%;
    display: block;
}

.thumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
}

.thumb-count {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* Video Player Section */
.video-player-section {
    padding: 40px 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.player-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
}

.video-player {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
}

.video-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.player-info {
    padding: 20px 0;
}

.player-info h2 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.player-meta {
    display: flex;
    gap: 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Player Sidebar */
.player-sidebar {
    background: var(--bg-dark);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    overflow: hidden;
    max-height: 500px;
    display: flex;
    flex-direction: column;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-subtle);
}

.sidebar-header h3 {
    font-size: 1rem;
}

.current-index {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.sidebar-videos {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
}

.sidebar-video {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 5px;
}

.sidebar-video:hover {
    background: rgba(255, 255, 255, 0.05);
}

.sidebar-video.active {
    background: rgba(249, 115, 22, 0.15);
    border: 1px solid var(--primary);
}

.sv-num {
    font-size: 0.8rem;
    color: var(--text-dim);
    min-width: 25px;
}

.sv-info {
    flex: 1;
    min-width: 0;
}

.sv-title {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sv-duration {
    font-size: 0.75rem;
    color: var(--text-dim);
}

.sv-playing {
    color: var(--primary);
    font-size: 0.8rem;
}

/* Playlist Videos Grid */
.playlist-videos-section {
    padding: 60px 0;
    background: var(--bg-dark);
}

.section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.section-header-row h2 {
    font-size: 1.5rem;
}

.videos-count {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.playlist-videos-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Playlist Video Card */
.playlist-video-card {
    display: grid;
    grid-template-columns: 50px 200px 1fr;
    gap: 20px;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 15px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.playlist-video-card:hover {
    border-color: var(--primary);
    transform: translateX(-5px);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.1);
}

.playlist-video-card.active {
    border-color: var(--primary);
    background: rgba(249, 115, 22, 0.08);
}

.pvc-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dim);
    text-align: center;
}

.playlist-video-card:hover .pvc-number,
.playlist-video-card.active .pvc-number {
    color: var(--primary);
}

.pvc-thumb {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.pvc-thumb img {
    width: 100%;
    height: 110px;
    object-fit: cover;
    transition: transform 0.3s;
}

.playlist-video-card:hover .pvc-thumb img {
    transform: scale(1.05);
}

.pvc-duration {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
}

.pvc-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 45px;
    height: 45px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    transition: transform 0.3s;
}

.playlist-video-card:hover .pvc-play {
    transform: translate(-50%, -50%) scale(1);
}

.pvc-info h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: var(--text-light);
}

.pvc-info > p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 10px;
    line-height: 1.5;
}

.pvc-meta {
    display: flex;
    gap: 15px;
}

.pvc-meta span {
    font-size: 0.8rem;
    color: var(--text-dim);
}

/* Related Playlists */
.related-playlists-section {
    padding: 60px 0;
    background: var(--bg-card);
}

.related-playlists-section h2 {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.related-playlists-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.related-playlist-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--bg-dark);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 20px;
    text-decoration: none;
    transition: all 0.3s;
}

.related-playlist-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.rpc-icon {
    width: 60px;
    height: 60px;
    background: rgba(249, 115, 22, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.rpc-info h3 {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

.rpc-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Responsive Playlist Page */
@media (max-width: 1024px) {
    .playlist-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .playlist-hero-thumb {
        order: -1;
    }
    
    .player-wrapper {
        grid-template-columns: 1fr;
    }
    
    .player-sidebar {
        max-height: 300px;
    }
    
    .playlist-video-card {
        grid-template-columns: 40px 150px 1fr;
        gap: 15px;
    }
    
    .related-playlists-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .playlist-hero-info h1 {
        font-size: 1.8rem;
    }
    
    .playlist-stats {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .pl-stat {
        flex: 1;
        min-width: 80px;
    }
    
    .playlist-actions {
        flex-direction: column;
    }
    
    .btn-play-all,
    .btn-youtube-outline {
        width: 100%;
        justify-content: center;
    }
    
    .playlist-video-card {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .pvc-number {
        display: none;
    }
    
    .pvc-thumb {
        width: 100%;
    }
    
    .pvc-thumb img {
        height: 180px;
    }
}


/* ==================== COURSE DETAIL PAGE ==================== */

/* Course Detail Hero */
.course-detail-hero {
    padding: 140px 0 60px;
    position: relative;
}

.cd-hero-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 50px;
    align-items: start;
}

.cd-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.cd-breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.cd-breadcrumb a:hover {
    color: var(--primary);
}

.cd-breadcrumb span {
    color: var(--text-dim);
}

.cd-breadcrumb .current {
    color: var(--primary);
}

.cd-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.cd-badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.cd-badge.category {
    background: rgba(249, 115, 22, 0.15);
    color: var(--primary);
}

.cd-badge.level {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}

.cd-badge.bestseller {
    background: linear-gradient(135deg, #f97316, #fb923c);
    color: white;
}

.cd-hero-content h1 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
}

.cd-description {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 25px;
}

.cd-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 30px;
}

.cd-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.meta-icon {
    font-size: 1.1rem;
}

.cd-stats-row {
    display: flex;
    gap: 30px;
    padding: 25px 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.cd-stat {
    text-align: center;
}

.cd-stat .stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.cd-stat .stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Course Preview Card */
.cd-preview-card {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    position: sticky;
    top: 100px;
}

.cd-preview-video {
    position: relative;
    cursor: pointer;
}

.cd-preview-video img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.cd-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: white;
    transition: transform 0.3s;
}

.cd-play-btn span:first-child {
    width: 70px;
    height: 70px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 10px 40px rgba(249, 115, 22, 0.4);
}

.cd-play-btn .play-text {
    font-size: 0.9rem;
    font-weight: 600;
}

.cd-preview-video:hover .cd-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
}

.cd-preview-content {
    padding: 25px;
}

.cd-price-section {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.cd-old-price {
    font-size: 1.1rem;
    color: var(--text-dim);
    text-decoration: line-through;
}

.cd-current-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-light);
}

.cd-discount {
    background: #22c55e;
    color: white;
    padding: 4px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
}

.cd-offer-timer {
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.3);
    padding: 12px 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--primary);
}

.cd-enroll-btn {
    width: 100%;
    padding: 16px;
    background: var(--gradient-orange);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    font-family: 'Cairo', sans-serif;
    margin-bottom: 12px;
}

.cd-enroll-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.4);
}

.cd-enroll-btn.large {
    padding: 20px;
    font-size: 1.2rem;
}

.cd-wishlist-btn {
    width: 100%;
    padding: 14px;
    background: transparent;
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    font-family: 'Cairo', sans-serif;
    margin-bottom: 20px;
}

.cd-wishlist-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.cd-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 10px;
    font-size: 0.85rem;
    color: #22c55e;
    margin-bottom: 20px;
}

.cd-includes h4 {
    font-size: 1rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.cd-includes ul {
    list-style: none;
}

.cd-includes li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-subtle);
    font-size: 0.95rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.cd-includes li:last-child {
    border-bottom: none;
}

/* Course Tabs */
.cd-tabs-section {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-subtle);
    position: sticky;
    top: 70px;
    z-index: 100;
}

.cd-tabs {
    display: flex;
    gap: 10px;
    padding: 15px 0;
    overflow-x: auto;
}

.cd-tab {
    padding: 12px 25px;
    background: transparent;
    border: 1px solid var(--border-subtle);
    border-radius: 30px;
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Cairo', sans-serif;
    white-space: nowrap;
}

.cd-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.cd-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* Tab Content */
.cd-tab-content {
    display: none;
    padding: 60px 0;
}

.cd-tab-content.active {
    display: block;
}

/* Overview Tab */
.cd-overview-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

.cd-section-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid var(--border-subtle);
}

.cd-section-card h2 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    color: var(--text-light);
}

.cd-learn-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.cd-learn-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
}

.cd-learn-item .check {
    color: #22c55e;
    font-weight: bold;
    font-size: 1.1rem;
}

.cd-requirements {
    list-style: none;
}

.cd-requirements li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-muted);
    padding-right: 25px;
    position: relative;
}

.cd-requirements li::before {
    content: '•';
    position: absolute;
    right: 0;
    color: var(--primary);
}

.cd-requirements li:last-child {
    border-bottom: none;
}

.cd-description-full p {
    color: var(--text-muted);
    margin-bottom: 15px;
    line-height: 1.8;
}

.cd-description-full ul {
    margin-top: 15px;
    padding-right: 20px;
}

.cd-description-full li {
    color: var(--text-muted);
    margin-bottom: 8px;
}

/* Sidebar */
.cd-sidebar-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid var(--border-subtle);
}

.cd-sidebar-card h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

.cd-target-list {
    list-style: none;
}

.cd-target-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-muted);
    font-size: 0.95rem;
    padding-right: 20px;
    position: relative;
}

.cd-target-list li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: var(--primary);
}

.cd-target-list li:last-child {
    border-bottom: none;
}

.certificate-preview {
    text-align: center;
    padding: 30px;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 15px;
    margin-top: 15px;
}

.cert-icon {
    font-size: 3rem;
}

/* Curriculum Tab */
.cd-curriculum {
    max-width: 900px;
}

.curriculum-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.curriculum-header h2 {
    font-size: 1.5rem;
}

.curriculum-stats {
    display: flex;
    gap: 15px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.curriculum-module {
    background: var(--bg-card);
    border-radius: 15px;
    margin-bottom: 15px;
    border: 1px solid var(--border-subtle);
    overflow: hidden;
}

.module-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    transition: background 0.3s;
}

.module-header:hover {
    background: rgba(255, 255, 255, 0.03);
}

.module-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.module-icon {
    font-size: 1.3rem;
}

.module-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

.module-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.toggle-icon {
    margin-right: 10px;
    transition: transform 0.3s;
}

.module-lessons {
    border-top: 1px solid var(--border-subtle);
    max-height: 1000px;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.module-lessons.collapsed {
    max-height: 0;
    border-top: none;
}

.lesson-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    border-bottom: 1px solid var(--border-subtle);
    transition: background 0.3s;
}

.lesson-item:last-child {
    border-bottom: none;
}

.lesson-item:hover {
    background: rgba(255, 255, 255, 0.02);
}

.lesson-icon {
    color: var(--text-dim);
}

.lesson-title {
    flex: 1;
    color: var(--text-muted);
}

.lesson-duration {
    color: var(--text-dim);
    font-size: 0.9rem;
}

.lesson-preview {
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Instructor Tab */
.instructor-card {
    display: flex;
    gap: 40px;
    background: var(--bg-card);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid var(--border-subtle);
}

.instructor-image img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary);
}

.instructor-info h2 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.instructor-title {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.instructor-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
    padding: 20px 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.inst-stat {
    text-align: center;
}

.inst-num {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-light);
}

.inst-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.instructor-bio {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

.instructor-social {
    display: flex;
    gap: 15px;
}

.social-link {
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--primary);
    color: white;
}

/* Reviews Tab */
.cd-reviews {
    max-width: 900px;
}

.reviews-summary {
    display: flex;
    gap: 50px;
    background: var(--bg-card);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    border: 1px solid var(--border-subtle);
}

.rating-big {
    text-align: center;
    min-width: 150px;
}

.rating-num {
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-light);
    display: block;
}

.rating-stars {
    color: #fbbf24;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.rating-count {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.rating-bars {
    flex: 1;
}

.rating-bar-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.rating-bar-item span:first-child {
    width: 40px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.rating-bar-item .bar {
    flex: 1;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: var(--primary);
    border-radius: 5px;
}

.rating-bar-item span:last-child {
    width: 40px;
    text-align: left;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.review-card {
    background: var(--bg-card);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid var(--border-subtle);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: rgba(249, 115, 22, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.reviewer-info h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.review-date {
    font-size: 0.85rem;
    color: var(--text-dim);
}

.review-rating {
    margin-right: auto;
    color: #fbbf24;
}

.review-text {
    color: var(--text-muted);
    line-height: 1.7;
}

.load-more-reviews {
    width: 100%;
    padding: 15px;
    background: transparent;
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Cairo', sans-serif;
}

.load-more-reviews:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Related Courses */
.cd-related-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.cd-related-section h2 {
    font-size: 1.8rem;
    margin-bottom: 40px;
    text-align: center;
}

.related-courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.related-course-card {
    background: var(--bg-card);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    text-decoration: none;
    transition: all 0.3s;
}

.related-course-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.15);
}

.rc-image img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.rc-content {
    padding: 20px;
}

.rc-cat {
    font-size: 0.8rem;
    color: var(--primary);
    margin-bottom: 8px;
    display: block;
}

.rc-content h3 {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 12px;
}

.rc-meta {
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Course Detail CTA */
.cd-cta-section {
    padding: 80px 0;
}

.cd-cta-card {
    background: var(--bg-card);
    border-radius: 25px;
    padding: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
}

.cd-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-orange);
}

.cd-cta-card h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cd-cta-card p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.cd-cta-card .cta-price {
    margin-bottom: 25px;
}

.cd-cta-card .cta-price .old {
    color: var(--text-dim);
    text-decoration: line-through;
    font-size: 1.2rem;
    margin-left: 15px;
}

.cd-cta-card .cta-price .current {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
}

.cd-cta-card .cta-decoration {
    position: absolute;
    bottom: 20px;
    left: 30px;
    font-size: 4rem;
    color: rgba(249, 115, 22, 0.1);
}

.cd-cta-card .cd-enroll-btn {
    display: inline-flex;
    width: auto;
    padding: 18px 50px;
}

/* Course Detail Responsive */
@media (max-width: 1024px) {
    .cd-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cd-preview-card {
        position: static;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .cd-overview-grid {
        grid-template-columns: 1fr;
    }
    
    .related-courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .instructor-card {
        flex-direction: column;
        text-align: center;
    }
    
    .instructor-stats {
        justify-content: center;
    }
    
    .instructor-social {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .course-detail-hero {
        padding: 120px 0 40px;
    }
    
    .cd-hero-content h1 {
        font-size: 2rem;
    }
    
    .cd-stats-row {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .cd-stat {
        flex: 1;
        min-width: 70px;
    }
    
    .cd-tabs {
        gap: 8px;
    }
    
    .cd-tab {
        padding: 10px 18px;
        font-size: 0.9rem;
    }
    
    .cd-learn-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-summary {
        flex-direction: column;
        gap: 30px;
    }
    
    .related-courses-grid {
        grid-template-columns: 1fr;
    }
    
    .cd-cta-card {
        padding: 40px 25px;
    }
    
    .cd-cta-card h2 {
        font-size: 1.5rem;
    }
    
    .cd-cta-card .cta-price .current {
        font-size: 2rem;
    }
    
    .instructor-image img {
        width: 140px;
        height: 140px;
    }
    
    .instructor-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .cd-hero-content h1 {
        font-size: 1.6rem;
    }
    
    .cd-badges {
        gap: 8px;
    }
    
    .cd-badge {
        padding: 5px 10px;
        font-size: 0.75rem;
    }
    
    .cd-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .cd-section-card {
        padding: 20px;
    }
    
    .module-header {
        padding: 15px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .module-meta {
        width: 100%;
        justify-content: space-between;
    }
    
    .lesson-item {
        padding: 12px 15px;
    }
}

/* Course Card as Link */
a.course-card-pro {
    text-decoration: none;
    color: inherit;
    display: block;
}

a.course-card-pro:hover {
    transform: translateY(-8px);
}

a.course-card-pro .ccp-btn {
    display: inline-block;
    padding: 8px 20px;
    background: transparent;
    border: 1px solid var(--primary);
    border-radius: 8px;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
}

a.course-card-pro:hover .ccp-btn {
    background: var(--primary);
    color: white;
}


/* ==================== COURSE DETAIL NEW LAYOUT ==================== */

/* New Hero Layout */
.course-detail-hero-new {
    padding: 100px 0 40px;
}

.cd-new-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
}

/* Video Section */
.cd-video-section {
    position: relative;
}

.cd-video-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: #000;
    aspect-ratio: 16/9;
}

.cd-video-player {
    position: relative;
    width: 100%;
    height: 100%;
}

.cd-video-player img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cd-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.cd-video-overlay:hover {
    background: rgba(0, 0, 0, 0.3);
}

.cd-big-play-btn {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 40px rgba(249, 115, 22, 0.4);
}

.cd-big-play-btn:hover {
    transform: scale(1.1);
}

.cd-big-play-btn .play-icon {
    font-size: 2rem;
    color: white;
    margin-right: -5px;
}

.cd-video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 20px 15px 10px;
}

.video-progress {
    height: 4px;
    background: rgba(255,255,255,0.3);
    border-radius: 2px;
    margin-bottom: 10px;
    cursor: pointer;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: var(--primary);
    border-radius: 2px;
}

.video-controls-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.controls-right, .controls-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.control-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.control-btn:hover {
    opacity: 1;
}

.video-time {
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
}

#youtubePlayer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Info Section */
.cd-info-section {
    background: var(--bg-card);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid var(--border-subtle);
}

.cd-info-section h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

.cd-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.cd-instructor-mini {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-subtle);
    margin-bottom: 20px;
}

.cd-instructor-mini img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.cd-instructor-mini span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.cd-instructor-mini strong {
    color: var(--primary);
}

.cd-quick-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.quick-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.qi-icon {
    width: 24px;
    text-align: center;
}

.quick-item strong {
    color: var(--text-light);
}

.cd-action-buttons {
    display: flex;
    gap: 10px;
}

.cd-enroll-btn-new {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 15px 20px;
    background: var(--primary);
    border: none;
    border-radius: 10px;
    color: white;
    font-family: 'Cairo', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
}

.cd-enroll-btn-new:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

.cd-enroll-btn-new span:first-child {
    font-size: 1.1rem;
    font-weight: 700;
}

.cd-enroll-btn-new span:last-child {
    font-size: 0.85rem;
    opacity: 0.9;
}

.cd-cart-btn, .cd-share-btn {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cd-cart-btn:hover, .cd-share-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* New Tabs Style */
.cd-tabs-section-new {
    background: var(--bg-card);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    position: sticky;
    top: 70px;
    z-index: 100;
}

.cd-tabs-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cd-tabs-new {
    display: flex;
    gap: 5px;
    padding: 10px 0;
    overflow-x: auto;
}

.cd-tab-new {
    padding: 12px 20px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Cairo', sans-serif;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
}

.cd-tab-new:hover {
    color: var(--text-light);
}

.cd-tab-new.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.cd-rating-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: rgba(251, 191, 36, 0.1);
    border-radius: 20px;
}

.cd-rating-badge .rating-stars {
    color: #fbbf24;
    font-size: 0.9rem;
}

.cd-rating-badge .rating-num {
    color: #fbbf24;
    font-weight: 700;
}

/* New Tab Content */
.cd-tab-content-new {
    display: none;
    padding: 40px 0;
}

.cd-tab-content-new.active {
    display: block;
}

/* New Reviews Style */
.cd-reviews-new {
    max-width: 900px;
}

.review-card-new {
    background: var(--bg-card);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 15px;
    border: 1px solid var(--border-subtle);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.review-right {
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 200px;
}

.reviewer-avatar-new img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-details h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.review-stars {
    color: #fbbf24;
    font-size: 0.9rem;
}

.review-text-new {
    flex: 1;
    color: var(--text-muted);
    line-height: 1.7;
    text-align: right;
}

.load-more-btn {
    width: 100%;
    padding: 15px;
    background: transparent;
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Cairo', sans-serif;
    margin-top: 20px;
}

.load-more-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* New Learn Section */
.cd-learn-section h2,
.cd-requirements-section h2 {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.cd-learn-grid-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.cd-learn-item-new {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px 20px;
    background: var(--bg-card);
    border-radius: 10px;
    border: 1px solid var(--border-subtle);
}

.cd-learn-item-new .check {
    color: #22c55e;
    font-weight: bold;
    font-size: 1.1rem;
}

/* New Requirements */
.cd-requirements-new {
    list-style: none;
    max-width: 700px;
}

.cd-requirements-new li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: var(--bg-card);
    border-radius: 10px;
    border: 1px solid var(--border-subtle);
    margin-bottom: 10px;
    color: var(--text-muted);
}

.req-icon {
    color: var(--primary);
    font-size: 1.5rem;
}

/* Responsive New Layout */
@media (max-width: 1024px) {
    .cd-new-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cd-info-section {
        order: -1;
    }
}

@media (max-width: 768px) {
    .course-detail-hero-new {
        padding: 90px 0 30px;
    }
    
    .cd-tabs-wrapper {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .cd-tabs-new {
        width: 100%;
    }
    
    .cd-tab-new {
        padding: 10px 15px;
        font-size: 0.85rem;
    }
    
    .review-card-new {
        flex-direction: column;
    }
    
    .review-right {
        min-width: auto;
    }
    
    .cd-learn-grid-new {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .cd-info-section h1 {
        font-size: 1.3rem;
    }
    
    .cd-action-buttons {
        flex-wrap: wrap;
    }
    
    .cd-enroll-btn-new {
        width: 100%;
    }
}


/* Course Detail Sections - All Visible */
.cd-section {
    padding: 50px 0;
    border-bottom: 1px solid var(--border-subtle);
}

.cd-section:last-of-type {
    border-bottom: none;
}

.cd-section .cd-section-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid var(--border-subtle);
}

.cd-section .cd-section-card h2 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    color: var(--text-light);
}

.cd-section .cd-description-full p {
    color: var(--text-muted);
    margin-bottom: 15px;
    line-height: 1.8;
}

.cd-section .cd-description-full ul {
    margin-top: 15px;
    padding-right: 20px;
}

.cd-section .cd-description-full li {
    color: var(--text-muted);
    margin-bottom: 8px;
}

/* Tab links style */
.cd-tab-new {
    text-decoration: none;
    padding: 12px 20px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Cairo', sans-serif;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    display: inline-block;
}

.cd-tab-new:hover {
    color: var(--text-light);
}

.cd-tab-new.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

/* Scroll margin for sections */
.cd-section {
    scroll-margin-top: 140px;
}


/* ==================== COURSE DETAIL PAGE - NEW DESIGN ==================== */

/* Hero Section */
.course-hero-section {
    padding: 100px 0 30px;
}

.course-hero-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 30px;
    align-items: start;
}

/* Video Player */
.course-video-container {
    background: #000;
    border-radius: 12px;
    overflow: hidden;
}

.video-player-wrapper {
    position: relative;
    aspect-ratio: 16/9;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    cursor: pointer;
    transition: background 0.3s;
}

.video-play-overlay:hover {
    background: rgba(0,0,0,0.4);
}

.play-button {
    width: 70px;
    height: 70px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 10px 40px rgba(249, 115, 22, 0.5);
    transition: transform 0.3s;
}

.video-play-overlay:hover .play-button {
    transform: scale(1.1);
}

.play-text {
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
}

.video-iframe {
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.video-controls-bar {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 15px;
    background: #1a1a1a;
}

.vc-progress {
    flex: 1;
    height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
}

.vc-progress-fill {
    width: 0;
    height: 100%;
    background: var(--primary);
    border-radius: 2px;
}

.vc-time {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
}

.vc-btn {
    background: none;
    border: none;
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s;
}

.vc-btn:hover {
    color: white;
}

.vc-right, .vc-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Course Info Sidebar */
.course-info-sidebar {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid var(--border-subtle);
}

.course-title-section h1 {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 15px;
}

.course-instructor {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-subtle);
    margin-bottom: 20px;
}

.course-instructor img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
}

.course-instructor span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.course-instructor strong {
    color: var(--primary);
}

.course-meta-box {
    margin-bottom: 20px;
}

.meta-label {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.meta-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.meta-icon {
    width: 20px;
    text-align: center;
}

.meta-item strong {
    color: var(--text-light);
}

.course-actions {
    display: flex;
    gap: 10px;
    padding-top: 20px;
    border-top: 1px solid var(--border-subtle);
}

.enroll-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 12px 20px;
    background: var(--primary);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Cairo', sans-serif;
}

.enroll-btn:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

.enroll-btn .price {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
}

.enroll-btn .enroll-text {
    color: rgba(255,255,255,0.9);
    font-size: 0.8rem;
}

.action-btn {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    color: var(--text-muted);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Tabs Navigation */
.course-tabs-nav {
    background: var(--bg-card);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    position: sticky;
    top: 70px;
    z-index: 100;
}

.tabs-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tabs-list {
    display: flex;
    gap: 5px;
    padding: 10px 0;
    overflow-x: auto;
}

.tab-btn {
    padding: 12px 18px;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Cairo', sans-serif;
    white-space: nowrap;
}

.tab-btn:hover {
    color: var(--text-light);
}

.tab-btn.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.rating-display {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: rgba(251, 191, 36, 0.1);
    border-radius: 20px;
}

.rating-display .stars {
    color: #fbbf24;
    font-size: 0.85rem;
}

.rating-display .rating-value {
    color: #fbbf24;
    font-weight: 700;
    font-size: 1rem;
}

/* Tab Contents */
.course-tab-contents {
    padding: 40px 0;
    min-height: 400px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.content-card {
    background: var(--bg-card);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid var(--border-subtle);
}

.content-card h2 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--text-light);
}

/* Description */
.description-text p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 15px;
}

.description-text ul {
    padding-right: 20px;
    margin-top: 15px;
}

.description-text li {
    color: var(--text-muted);
    margin-bottom: 8px;
    line-height: 1.7;
}

/* Learn Grid */
.learn-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.learn-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: rgba(255,255,255,0.02);
    border-radius: 10px;
    border: 1px solid var(--border-subtle);
}

.check-icon {
    color: #22c55e;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Requirements */
.requirements-list {
    list-style: none;
}

.requirements-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255,255,255,0.02);
    border-radius: 10px;
    border: 1px solid var(--border-subtle);
    margin-bottom: 10px;
    color: var(--text-muted);
}

.bullet {
    color: var(--primary);
    font-size: 1.5rem;
}

/* Curriculum */
.curriculum-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.curriculum-stats {
    display: flex;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.modules-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.module-item {
    background: rgba(255,255,255,0.02);
    border-radius: 10px;
    border: 1px solid var(--border-subtle);
    overflow: hidden;
}

.module-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    cursor: pointer;
    transition: background 0.3s;
}

.module-header:hover {
    background: rgba(255,255,255,0.03);
}

.module-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.module-icon {
    font-size: 1.2rem;
}

.module-title h3 {
    font-size: 1rem;
    font-weight: 600;
}

.module-info {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.arrow {
    transition: transform 0.3s;
}

.module-lessons {
    border-top: 1px solid var(--border-subtle);
    max-height: 500px;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.module-lessons.collapsed {
    max-height: 0;
    border-top: none;
}

.lesson {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    border-bottom: 1px solid var(--border-subtle);
    font-size: 0.9rem;
}

.lesson:last-child {
    border-bottom: none;
}

.lesson-icon {
    color: var(--text-dim);
}

.lesson-name {
    flex: 1;
    color: var(--text-muted);
}

.lesson-time {
    color: var(--text-dim);
    font-size: 0.85rem;
}

.preview-badge {
    background: var(--primary);
    color: white;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Reviews */
.reviews-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.review-item {
    padding: 20px;
    background: rgba(255,255,255,0.02);
    border-radius: 10px;
    border: 1px solid var(--border-subtle);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.reviewer-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-info h4 {
    font-size: 0.95rem;
    margin-bottom: 3px;
}

.review-stars {
    color: #fbbf24;
    font-size: 0.85rem;
}

.review-text {
    color: var(--text-muted);
    line-height: 1.7;
}

/* Sidebar Fixed */
.course-sidebar-fixed {
    display: none;
}

/* Responsive */
@media (max-width: 1024px) {
    .course-hero-grid {
        grid-template-columns: 1fr;
    }
    
    .course-info-sidebar {
        order: -1;
    }
}

@media (max-width: 768px) {
    .course-hero-section {
        padding: 90px 0 20px;
    }
    
    .tabs-container {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .tabs-list {
        width: 100%;
    }
    
    .tab-btn {
        padding: 10px 12px;
        font-size: 0.8rem;
    }
    
    .learn-grid {
        grid-template-columns: 1fr;
    }
    
    .content-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .course-title-section h1 {
        font-size: 1.1rem;
    }
    
    .course-actions {
        flex-wrap: wrap;
    }
    
    .enroll-btn {
        width: 100%;
    }
}


/* ==================== COURSE DETAIL - PROFESSIONAL DESIGN ==================== */

/* Hero Section Pro */
.cd-hero-pro {
    padding: 140px 0 50px;
    position: relative;
    overflow: hidden;
}

.cd-hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.15) 0%, transparent 70%);
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.cd-hero-layout {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 40px;
    align-items: start;
}

/* Video Pro */
.cd-video-pro {
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.video-frame {
    position: relative;
    aspect-ratio: 16/9;
}

.video-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.5) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.video-overlay:hover {
    background: rgba(0,0,0,0.4);
}

.play-btn-pro {
    width: 80px;
    height: 80px;
    background: var(--gradient-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 15px 50px rgba(249, 115, 22, 0.5);
    transition: transform 0.3s, box-shadow 0.3s;
}

.video-overlay:hover .play-btn-pro {
    transform: scale(1.1);
    box-shadow: 0 20px 60px rgba(249, 115, 22, 0.6);
}

#videoIframe {
    display: none;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* Video Info Bar - Simple Design */
.video-info-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: linear-gradient(90deg, rgba(249, 115, 22, 0.1) 0%, rgba(22, 22, 22, 0.95) 100%);
    border-top: 1px solid rgba(249, 115, 22, 0.2);
}

.vib-icon {
    width: 28px;
    height: 28px;
    background: var(--gradient-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: white;
}

.vib-text {
    flex: 1;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 600;
}

.vib-duration {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    background: rgba(249, 115, 22, 0.15);
    padding: 5px 12px;
    border-radius: 15px;
}

/* Info Card Pro */
.cd-info-pro {
    background: linear-gradient(180deg, rgba(22, 22, 22, 0.9) 0%, rgba(22, 22, 22, 0.95) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 28px;
    backdrop-filter: blur(10px);
}

.cd-category-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(249, 115, 22, 0.15);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 25px;
    margin-bottom: 18px;
}

.cat-icon {
    font-size: 1rem;
}

.cd-category-badge span:last-child {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
}

.cd-info-pro h1 {
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 12px;
}

.cd-desc-short {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.cd-instructor-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    margin-bottom: 20px;
}

.cd-instructor-row img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid var(--primary);
}

.instructor-info {
    display: flex;
    flex-direction: column;
}

.inst-label {
    font-size: 0.8rem;
    color: var(--text-dim);
}

.inst-name {
    font-weight: 600;
    color: var(--primary);
}

.cd-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 18px;
}

.meta-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: rgba(255,255,255,0.03);
    border-radius: 10px;
    border: 1px solid var(--border-subtle);
}

.meta-box .meta-icon {
    font-size: 1.2rem;
}

.meta-text {
    display: flex;
    flex-direction: column;
}

.meta-value {
    font-weight: 700;
    font-size: 1.1rem;
}

.meta-label {
    font-size: 0.75rem;
    color: var(--text-dim);
}

.cd-features-mini {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.cd-features-mini span {
    font-size: 0.8rem;
    color: #22c55e;
}

.cd-price-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    background: rgba(249, 115, 22, 0.08);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 12px;
    margin-bottom: 18px;
}

.price-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.old-price {
    color: var(--text-dim);
    text-decoration: line-through;
    font-size: 0.95rem;
}

.current-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-light);
}

.discount-badge {
    background: #22c55e;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.cd-actions-pro {
    display: flex;
    gap: 10px;
}

.enroll-btn-pro {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 25px;
    background: var(--gradient-orange);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Cairo', sans-serif;
}

.enroll-btn-pro:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.4);
}

.enroll-btn-pro .arrow {
    font-size: 1.2rem;
}

.icon-btn {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(249, 115, 22, 0.1);
}

/* Tabs Pro */
.cd-tabs-pro {
    background: rgba(22, 22, 22, 0.95);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    position: sticky;
    top: 70px;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.tabs-wrapper-pro {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.tabs-scroll {
    display: flex;
    gap: 5px;
    overflow-x: auto;
    padding: 5px 0;
}

.tab-pro {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: transparent;
    border: none;
    border-radius: 10px;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Cairo', sans-serif;
    white-space: nowrap;
}

.tab-pro:hover {
    background: rgba(255,255,255,0.05);
    color: var(--text-light);
}

.tab-pro.active {
    background: rgba(249, 115, 22, 0.15);
    color: var(--primary);
}

.tab-icon {
    font-size: 1rem;
}

.tabs-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(251, 191, 36, 0.1);
    border-radius: 25px;
}

.tabs-rating .stars {
    color: #fbbf24;
    font-size: 0.85rem;
}

.tabs-rating .rating-num {
    color: #fbbf24;
    font-weight: 700;
    font-size: 1.1rem;
}

.tabs-rating .rating-count {
    color: var(--text-dim);
    font-size: 0.8rem;
}

/* Tab Content Pro */
.cd-content-pro {
    padding: 50px 0;
    min-height: 500px;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
    animation: fadeSlideIn 0.4s ease;
}

@keyframes fadeSlideIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.panel-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 35px;
}

.panel-header {
    margin-bottom: 30px;
}

.panel-header h2 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-icon {
    color: var(--primary);
    font-size: 1.2rem;
}

.panel-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.panel-body p {
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 18px;
    font-size: 1.02rem;
}

.highlight-box {
    background: rgba(249, 115, 22, 0.08);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 15px;
    padding: 25px;
    margin-top: 25px;
}

.highlight-box h3 {
    font-size: 1.1rem;
    margin-bottom: 18px;
    color: var(--primary);
}

.highlight-box ul {
    list-style: none;
}

.highlight-box li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-subtle);
}

.highlight-box li:last-child {
    border-bottom: none;
}

.highlight-box .bullet {
    color: var(--primary);
}

/* Learn Grid Pro */
.learn-grid-pro {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.learn-item-pro {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    transition: all 0.3s;
}

.learn-item-pro:hover {
    border-color: rgba(249, 115, 22, 0.3);
    background: rgba(249, 115, 22, 0.05);
}

.learn-icon-pro {
    color: var(--primary);
    font-size: 1.1rem;
}

/* Modules Pro */
.curriculum-meta {
    display: flex;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.curriculum-meta .dot {
    color: var(--text-dim);
}

.modules-pro {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.module-pro {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    overflow: hidden;
}

.module-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 22px;
    cursor: pointer;
    transition: background 0.3s;
}

.module-head:hover {
    background: rgba(255,255,255,0.03);
}

.mod-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mod-num {
    width: 35px;
    height: 35px;
    background: var(--gradient-orange);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.mod-right h3 {
    font-size: 1.05rem;
    font-weight: 600;
}

.mod-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mod-info {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.mod-arrow {
    color: var(--text-dim);
    transition: transform 0.3s;
}

.mod-lessons {
    border-top: 1px solid var(--border-subtle);
    max-height: 500px;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.mod-lessons.collapsed {
    max-height: 0;
    border-top: none;
}

.mod-lesson {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 22px;
    border-bottom: 1px solid var(--border-subtle);
    transition: background 0.3s;
}

.mod-lesson:last-child {
    border-bottom: none;
}

.mod-lesson:hover {
    background: rgba(255,255,255,0.02);
}

.les-icon {
    color: var(--text-dim);
    font-size: 0.9rem;
}

.les-icon.play {
    color: var(--primary);
}

.les-title {
    flex: 1;
    color: var(--text-muted);
}

.les-time {
    color: var(--text-dim);
    font-size: 0.85rem;
}

.les-badge {
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Requirements Pro */
.requirements-pro {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 35px;
}

.req-item-pro {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 12px;
}

.req-icon {
    color: #22c55e;
    font-weight: bold;
    font-size: 1.1rem;
}

.target-audience {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-subtle);
    border-radius: 15px;
    padding: 25px;
}

.target-audience h3 {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.target-audience h3 .header-icon {
    color: var(--primary);
    font-size: 1rem;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.audience-item {
    padding: 15px;
    background: rgba(249, 115, 22, 0.05);
    border-radius: 10px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Reviews Pro */
.rating-summary {
    display: flex;
    align-items: center;
    gap: 15px;
}

.big-rating {
    font-size: 3rem;
    font-weight: 800;
    color: #fbbf24;
}

.rating-details {
    display: flex;
    flex-direction: column;
}

.stars-big {
    color: #fbbf24;
    font-size: 1.2rem;
}

.reviews-count {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.reviews-pro {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.review-pro {
    padding: 22px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
}

.review-top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.review-top img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-data h4 {
    font-size: 1rem;
    margin-bottom: 3px;
}

.review-stars {
    color: #fbbf24;
    font-size: 0.85rem;
}

.review-pro p {
    color: var(--text-muted);
    line-height: 1.7;
    font-style: italic;
}

/* CTA Pro */
.cd-cta-pro {
    padding: 80px 0;
}

.cta-card-pro {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 25px;
    padding: 60px;
    text-align: center;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.2) 0%, transparent 70%);
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.cta-content-pro {
    position: relative;
    z-index: 1;
}

.cta-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(249, 115, 22, 0.15);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 25px;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.cta-content-pro h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta-content-pro p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.cta-price-pro {
    margin-bottom: 25px;
}

.cta-price-pro .old {
    color: var(--text-dim);
    text-decoration: line-through;
    font-size: 1.2rem;
    margin-left: 15px;
}

.cta-price-pro .new {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
}

.cta-btn-pro {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 50px;
    background: var(--gradient-orange);
    border: none;
    border-radius: 15px;
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Cairo', sans-serif;
}

.cta-btn-pro:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(249, 115, 22, 0.4);
}

/* Responsive Pro */
@media (max-width: 1024px) {
    .cd-hero-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cd-video-pro {
        order: -1;
    }
}

@media (max-width: 768px) {
    .cd-hero-pro {
        padding: 120px 0 30px;
    }
    
    .tabs-wrapper-pro {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .tabs-scroll {
        width: 100%;
    }
    
    .tab-pro {
        padding: 10px 14px;
        font-size: 0.8rem;
    }
    
    .learn-grid-pro,
    .audience-grid {
        grid-template-columns: 1fr;
    }
    
    .panel-card {
        padding: 25px;
    }
    
    .cta-card-pro {
        padding: 40px 25px;
    }
    
    .cta-content-pro h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .cd-info-pro h1 {
        font-size: 1.15rem;
    }
    
    .cd-meta-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    
    .cd-actions-pro {
        flex-wrap: wrap;
    }
    
    .enroll-btn-pro {
        width: 100%;
    }
    
    .mod-right h3 {
        font-size: 0.95rem;
    }
}

/* ==================== NEW PLAYLIST PLAYER LAYOUT ==================== */

.playlist-page {
    background: #0a0a0a;
}

.playlist-layout {
    display: flex;
    min-height: 100vh;
}

/* Video Main Section - Left 80% */
.video-main {
    flex: 1;
    padding: 20px;
    padding-left: 30px;
}

.video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.video-container iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.video-details {
    padding: 25px 0;
}

.video-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.video-title-row h1 {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.5;
    flex: 1;
}

.video-number {
    background: var(--primary);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    flex-shrink: 0;
}

.video-stats {
    display: flex;
    gap: 25px;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border-subtle);
}

.video-stats span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.video-stats i {
    color: var(--primary);
    font-size: 0.85rem;
}

.video-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.video-actions {
    display: flex;
    gap: 12px;
}

.btn-yt {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ff0000;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-yt:hover {
    background: #cc0000;
    transform: translateY(-2px);
}

.btn-share {
    background: rgba(255,255,255,0.08);
    border: 1px solid var(--border-subtle);
    color: var(--text-light);
    width: 42px;
    height: 42px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-share:hover {
    border-color: var(--primary);
    color: var(--primary);
}
/* Playlist Sidebar - Right 20% */
.playlist-sidebar {
    width: 380px;
    min-width: 320px;
    background: #111;
    border-right: 1px solid var(--border-subtle);
    height: calc(100vh - 100px);
    position: fixed;
    top: 100px;
    right: 0;
    display: flex;
    flex-direction: column;
    z-index: 10;
}

.video-main {
    margin-right: 380px;
    padding-top: 100px;
}

.sidebar-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 15px;
    background: rgba(249, 115, 22, 0.08);
    border-bottom: 1px solid var(--border-subtle);
}

.back-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s;
}

.back-btn:hover {
    background: var(--primary);
    color: white;
}

.sidebar-title {
    flex: 1;
}

.sidebar-title h2 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 3px;
}

.sidebar-title span {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.playlist-items {
    flex: 1;
    overflow-y: auto;
    padding: 8px;
}

.playlist-items::-webkit-scrollbar {
    width: 4px;
}

.playlist-items::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 2px;
}
/* Playlist Item */
.playlist-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

.playlist-item:hover {
    background: rgba(255,255,255,0.05);
}

.playlist-item.active {
    background: rgba(249, 115, 22, 0.12);
}

.item-num {
    color: var(--text-dim);
    font-size: 0.75rem;
    font-weight: 600;
    min-width: 20px;
}

.playlist-item.active .item-num {
    color: var(--primary);
}

.item-thumb {
    position: relative;
    width: 90px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
}

.item-thumb img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.item-dur {
    position: absolute;
    bottom: 3px;
    left: 3px;
    background: rgba(0,0,0,0.9);
    color: white;
    font-size: 0.65rem;
    padding: 2px 5px;
    border-radius: 3px;
}

.item-info {
    flex: 1;
    min-width: 0;
}

.item-info h4 {
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 4px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.item-info span {
    color: var(--text-dim);
    font-size: 0.7rem;
}

.now-playing {
    color: var(--primary);
    font-size: 0.65rem;
    animation: pulse 1.5s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 1200px) {
    .playlist-sidebar {
        width: 320px;
        min-width: 280px;
    }
}

@media (max-width: 900px) {
    .playlist-layout {
        flex-direction: column-reverse;
    }
    
    .playlist-sidebar {
        width: 100%;
        height: auto;
        max-height: 300px;
        position: relative;
        top: 0;
        border-right: none;
        border-bottom: 1px solid var(--border-subtle);
    }
    
    .video-main {
        padding: 15px;
    }
}

@media (max-width: 600px) {
    .video-title-row h1 {
        font-size: 1.1rem;
    }
    
    .video-stats {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .item-thumb {
        width: 70px;
    }
}




/* ==================== AI TOOLS PAGE ==================== */

.tools-hero {
    padding: 140px 0 60px;
    text-align: center;
    position: relative;
}

.tools-hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.tools-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(249, 115, 22, 0.15);
    border: 1px solid rgba(249, 115, 22, 0.3);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.tools-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 18px;
    line-height: 1.3;
}

.tools-hero p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 35px;
    line-height: 1.8;
}

.tools-search {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 50px;
    padding: 15px 25px;
    max-width: 500px;
    margin: 0 auto;
    transition: border-color 0.3s;
}

.tools-search:focus-within {
    border-color: var(--primary);
}

.tools-search i {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.tools-search input {
    flex: 1;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1rem;
    font-family: inherit;
    outline: none;
}

.tools-search input::placeholder {
    color: var(--text-dim);
}

/* Tools Section */
.tools-section {
    padding: 0 0 80px;
}

/* Main Tabs */
.tools-tabs {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--border-subtle);
    padding-bottom: 0;
}

.tool-tab {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 15px 25px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
    position: relative;
}

.tool-tab:hover {
    color: var(--text-light);
}

.tool-tab.active {
    color: var(--primary);
}

.tool-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
}

.tools-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    color: var(--text-muted);
    padding: 12px 22px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--text-light);
}

.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.tools-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-subtle);
}

.tools-count {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.tools-count span {
    color: var(--primary);
    font-weight: 700;
}

.tools-sort {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.tools-sort select {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    color: var(--text-light);
    padding: 8px 15px;
    border-radius: 8px;
    font-family: inherit;
    cursor: pointer;
}

/* Tools Grid */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}

.tool-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 25px;
    transition: all 0.3s;
}

.tool-card:hover {
    border-color: rgba(249, 115, 22, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.tool-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 18px;
}

.tool-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(249, 115, 22, 0.05));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
}

.tool-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.fav-btn {
    background: transparent;
    border: none;
    color: var(--text-dim);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    padding: 5px;
}

.fav-btn:hover,
.fav-btn.active {
    color: #ef4444;
}

.tool-badge {
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

.tool-badge.free {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.tool-badge.paid {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.tool-badge.freemium {
    background: rgba(249, 115, 22, 0.15);
    color: var(--primary);
}

.tool-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.tool-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.tool-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.tool-tag {
    background: rgba(255,255,255,0.05);
    color: var(--text-dim);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
}

.tool-buttons {
    display: flex;
    gap: 10px;
}

.tool-link {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--gradient-orange);
    color: white;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
}

.tool-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
}

.tool-article-btn {
    background: transparent;
    border: 1px solid var(--border-subtle);
    color: var(--text-muted);
    padding: 12px 18px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}

.tool-article-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Tools Page Responsive */
@media (max-width: 768px) {
    .tools-hero {
        padding: 120px 0 40px;
    }
    
    .tools-hero h1 {
        font-size: 2rem;
    }
    
    .tools-filters {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 10px 16px;
        font-size: 0.8rem;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
    }
}


/* ==================== PROMPTS LIBRARY PAGE ==================== */

.prompts-hero {
    padding: 140px 0 50px;
    text-align: center;
    position: relative;
}

.prompts-hero-content {
    max-width: 750px;
    margin: 0 auto;
}

.hero-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), #fb923c);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 25px;
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.3);
}

.prompts-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 18px;
}

.prompts-hero p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

.prompts-search {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 50px;
    padding: 15px 25px;
    max-width: 500px;
    margin: 0 auto 35px;
    transition: border-color 0.3s;
}

.prompts-search:focus-within {
    border-color: var(--primary);
}

.prompts-search i {
    color: var(--text-muted);
}

.prompts-search input {
    flex: 1;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1rem;
    font-family: inherit;
    outline: none;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.hero-stat {
    text-align: center;
}

.stat-num {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Prompts Section */
.prompts-section {
    padding: 0 0 80px;
}

.prompts-categories {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.cat-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    color: var(--text-muted);
    padding: 12px 22px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}

.cat-btn:hover {
    border-color: var(--primary);
    color: var(--text-light);
}

.cat-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.prompts-tags {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.tag-btn {
    background: transparent;
    border: 1px solid var(--border-subtle);
    color: var(--text-muted);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}

.tag-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.tag-btn.active {
    background: rgba(249, 115, 22, 0.15);
    border-color: var(--primary);
    color: var(--primary);
}

.prompts-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.prompts-count {
    color: var(--text-muted);
}

.prompts-count span {
    color: var(--primary);
    font-weight: 700;
}

.view-toggle {
    display: flex;
    gap: 5px;
}

.view-btn {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    color: var(--text-muted);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.view-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* Prompts Grid */
.prompts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.prompt-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.prompt-card:hover {
    border-color: rgba(249, 115, 22, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.new-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.prompt-image {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
}

.prompt-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.prompt-card:hover .prompt-image img {
    transform: scale(1.05);
}

.prompt-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.prompt-card:hover .prompt-overlay {
    opacity: 1;
}

.quick-copy {
    background: var(--primary);
    border: none;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
    transition: transform 0.3s;
}

.quick-copy:hover {
    transform: scale(1.05);
}

.prompt-content {
    padding: 18px;
}

.prompt-content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.prompt-meta {
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-bottom: 12px;
}

.prompt-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.prompt-tool i {
    color: var(--primary);
}

.prompt-tags {
    display: flex;
    gap: 8px;
}

.prompt-tag {
    background: rgba(255,255,255,0.05);
    color: var(--text-dim);
    padding: 4px 10px;
    border-radius: 10px;
    font-size: 0.75rem;
}

/* Prompt Modal */
.prompt-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.prompt-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    transform: scale(0.9);
    transition: transform 0.3s;
}

.prompt-modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0,0,0,0.5);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    font-size: 1.2rem;
    transition: background 0.3s;
}

.modal-close:hover {
    background: var(--primary);
}

.modal-image {
    aspect-ratio: 4/5;
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.modal-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
}

.modal-tags span {
    background: rgba(249, 115, 22, 0.15);
    color: var(--primary);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
}

.modal-body h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.modal-prompt-box {
    flex: 1;
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.prompt-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 15px;
    font-family: monospace;
    direction: ltr;
    text-align: left;
}

.copy-prompt-btn {
    background: var(--gradient-orange);
    border: none;
    color: white;
    padding: 12px 25px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
    transition: all 0.3s;
}

.copy-prompt-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
}

.modal-info {
    display: flex;
    gap: 25px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.modal-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-info i {
    color: var(--primary);
}

/* Toast */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #22c55e;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    z-index: 99999;
    opacity: 0;
    transition: all 0.3s;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .prompts-hero h1 {
        font-size: 2rem;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .stat-num {
        font-size: 1.5rem;
    }
    
    .modal-content {
        grid-template-columns: 1fr;
        max-height: 95vh;
        overflow-y: auto;
    }
    
    .modal-image {
        aspect-ratio: 16/9;
    }
    
    .prompts-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 500px) {
    .prompts-grid {
        grid-template-columns: 1fr;
    }
}


/* ==================== FREE TOOLS PAGE ==================== */

.ftools-hero {
    padding: 140px 0 50px;
    text-align: center;
}

.ftools-hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.ftools-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.ftools-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 18px;
}

.ftools-hero p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Tools Section */
.ftools-section {
    padding: 30px 0 80px;
}

.ftools-category {
    margin-bottom: 50px;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-subtle);
}

.category-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.category-header h2 i {
    color: var(--primary);
}

.category-count {
    color: var(--text-muted);
    font-size: 0.9rem;
    background: rgba(255,255,255,0.05);
    padding: 6px 15px;
    border-radius: 20px;
}

.ftools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
}

/* Tool Card */
.ftool-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 22px;
    text-decoration: none;
    transition: all 0.3s;
}

.ftool-card:hover {
    border-color: rgba(249, 115, 22, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.ftool-icon {
    width: 55px;
    height: 55px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(249, 115, 22, 0.05));
    color: var(--primary);
}

.ftool-info {
    flex: 1;
}

.ftool-info h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-light);
}

.ftool-info p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
}

.ftool-arrow {
    color: var(--text-dim);
    font-size: 1rem;
    transition: all 0.3s;
}

.ftool-card:hover .ftool-arrow {
    color: var(--primary);
    transform: translateX(-5px);
}

/* Responsive */
@media (max-width: 768px) {
    .ftools-hero h1 {
        font-size: 2rem;
    }
    
    .ftools-grid {
        grid-template-columns: 1fr;
    }
    
    .ftool-card {
        padding: 18px;
    }
    
    .ftool-icon {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }
}

/* ==================== ZATOONA PAGE ==================== */
.zat-hero {
    padding: 140px 0 60px;
    text-align: center;
}

.zat-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(249, 115, 22, 0.15);
    border: 1px solid rgba(249, 115, 22, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.zat-hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.zat-hero p {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 500px;
    margin: 0 auto 40px;
}

.zat-hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.zat-stat {
    text-align: center;
}

.zat-stat-num {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.zat-stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Categories Grid */
.zat-categories {
    padding: 20px 0 80px;
}

.zat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.zat-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 220px;
    text-decoration: none;
    display: block;
}

.zat-card-bg {
    position: absolute;
    inset: 0;
}

.zat-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.zat-card:hover .zat-card-bg img {
    transform: scale(1.1);
}

.zat-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(12, 12, 12, 0.9) 0%, rgba(12, 12, 12, 0.6) 100%);
    transition: all 0.3s ease;
}

.zat-card:hover .zat-card-overlay {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.8) 0%, rgba(12, 12, 12, 0.7) 100%);
}

.zat-card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 25px;
    display: flex;
    align-items: flex-end;
    gap: 20px;
}

.zat-card-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: white;
    transition: all 0.3s ease;
}

.zat-card:hover .zat-card-icon {
    background: white;
    color: var(--primary);
}

.zat-card-text {
    flex: 1;
}

.zat-card-num {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 700;
    margin-bottom: 5px;
}

.zat-card-text h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 3px;
}

.zat-card-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin: 0;
}

.zat-card-arrow {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
}

.zat-card:hover .zat-card-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive */
@media (max-width: 992px) {
    .zat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .zat-hero h1 {
        font-size: 2.5rem;
    }
    
    .zat-hero-stats {
        gap: 30px;
    }
    
    .zat-stat-num {
        font-size: 1.5rem;
    }
    
    .zat-grid {
        grid-template-columns: 1fr;
    }
    
    .zat-card {
        height: 200px;
    }
    
    .zat-card-text h3 {
        font-size: 1.2rem;
    }
}


/* ==================== CAMERA ANGLES PAGE ==================== */
.angle-hero {
    padding: 130px 0 50px;
}

.angle-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    margin-bottom: 30px;
    transition: color 0.3s ease;
}

.angle-back:hover {
    color: var(--primary);
}

.angle-hero-content {
    text-align: center;
}

.angle-hero-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-orange);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
}

.angle-hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.angle-hero-content > p {
    color: var(--text-muted);
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.angle-count {
    display: inline-block;
    background: rgba(249, 115, 22, 0.15);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Angles Grid */
.angles-section {
    padding: 30px 0 80px;
}

.angles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.angle-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.angle-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(249, 115, 22, 0.15);
}

.angle-card-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.angle-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.angle-card:hover .angle-card-img img {
    transform: scale(1.1);
}

.angle-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(12, 12, 12, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.angle-card:hover .angle-card-overlay {
    opacity: 1;
}

.copy-prompt-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-orange);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 10px;
    font-family: 'Cairo', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.copy-prompt-btn:hover {
    transform: scale(1.05);
}

.angle-card-info {
    padding: 20px;
}

.angle-card-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 5px;
}

.angle-arabic {
    color: var(--primary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.angle-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.angle-prompt {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 10px 15px;
    overflow-x: auto;
}

.angle-prompt code {
    color: var(--primary);
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    white-space: nowrap;
}

/* Responsive */
@media (max-width: 992px) {
    .angles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .angle-hero-content h1 {
        font-size: 2rem;
    }
    
    .angles-grid {
        grid-template-columns: 1fr;
    }
    
    .angle-card-img {
        height: 180px;
    }
}


/* Trendy Section */
.trendy-section {
    margin-top: 60px;
    padding-top: 50px;
    border-top: 1px solid var(--border-subtle);
}

.trendy-header {
    text-align: center;
    margin-bottom: 40px;
}

.trendy-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.trendy-header h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.trendy-header p {
    color: var(--text-muted);
    font-size: 1rem;
}

.trendy-card {
    border: 2px solid transparent;
    background: linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
                linear-gradient(135deg, #ff6b35, #f7931e) border-box;
}

.trendy-card:hover {
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.25);
}

.trendy-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 5;
}


/* ==================== ANGLES TABS SYSTEM ==================== */
.angles-tabs-section {
    padding: 30px 0 80px;
}

.angles-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
    padding: 15px;
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border-subtle);
}

.angle-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 10px;
    color: var(--text-muted);
    font-family: 'Cairo', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.angle-tab:hover {
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.05);
}

.angle-tab.active {
    background: var(--gradient-orange);
    color: white;
    border-color: transparent;
}

.angle-tab i {
    font-size: 0.85rem;
}

.angle-tab-content {
    display: none;
}

.angle-tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Tabs */
@media (max-width: 768px) {
    .angles-tabs {
        gap: 8px;
        padding: 10px;
    }
    
    .angle-tab {
        padding: 10px 14px;
        font-size: 0.8rem;
    }
    
    .angle-tab span {
        display: none;
    }
}
/* ==================== PROMPT GUIDE PAGE ==================== */

/* Hero Section */
.prompt-hero {
    min-height: 60vh;
    background: linear-gradient(135deg, var(--bg-dark) 0%, rgba(249, 115, 22, 0.1) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.prompt-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 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(249,115,22,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.prompt-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.prompt-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(249, 115, 22, 0.15);
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.prompt-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-light);
}

.prompt-hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.prompt-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.prompt-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
}

.stat-icon {
    font-size: 1.5rem;
}

.stat-text {
    font-weight: 600;
}

/* Introduction Section */
.prompt-intro {
    padding: 80px 0;
    background: var(--bg-dark);
}

.intro-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.intro-card h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 20px;
}

.intro-card p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.6;
}

.intro-points {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.intro-point {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
}

.intro-point i {
    color: var(--primary);
    font-size: 1.2rem;
}

/* Basics Section */
.prompt-basics {
    padding: 100px 0;
    background: var(--bg-darker);
}

.basics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.basic-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.basic-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.2);
}

.basic-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.basic-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 15px;
}

.basic-card p {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.basic-example {
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 8px;
    padding: 15px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.basic-example strong {
    color: var(--primary);
}

/* Keywords Section */
.prompt-keywords {
    padding: 100px 0;
    background: var(--bg-dark);
}

.keywords-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.keyword-category {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    border-radius: 15px;
    padding: 30px;
}

.keyword-category h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 20px;
}

.keyword-category h3 i {
    color: var(--primary);
}

.keyword-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.keyword-tag {
    background: rgba(249, 115, 22, 0.15);
    border: 1px solid rgba(249, 115, 22, 0.3);
    color: var(--primary);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.keyword-tag:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* Master Prompt Section */
.master-prompt {
    padding: 100px 0;
    background: var(--bg-darker);
}

.master-prompt-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 50px;
    margin-top: 60px;
}

.prompt-structure h3,
.prompt-example h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 20px;
}

.structure-code {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 40px;
}

.structure-code code {
    color: var(--text-light);
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
    white-space: pre-wrap;
}

.example-before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}

.example-side {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 25px;
}

.example-side h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.example-side p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Methods Section */
.prompt-methods {
    padding: 100px 0;
    background: var(--bg-dark);
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.method-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
}

.method-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.2);
}

.method-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.method-icon {
    font-size: 2rem;
}

.method-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
}

.method-level {
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.method-card p {
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.6;
}

.method-pros h4,
.method-steps h4 {
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 15px;
}

.method-pros ul,
.method-steps ol {
    color: var(--text-muted);
    padding-right: 20px;
    margin-bottom: 20px;
}

.method-pros li,
.method-steps li {
    margin-bottom: 8px;
    line-height: 1.5;
}

/* Tips Section */
.prompt-tips {
    padding: 100px 0;
    background: var(--bg-darker);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.tip-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.2);
}

.tip-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.tip-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 15px;
}

.tip-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Tools Section */
.prompt-tools {
    padding: 100px 0;
    background: var(--bg-dark);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.tool-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.tool-card.featured {
    border-color: var(--primary);
    background: rgba(249, 115, 22, 0.1);
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.2);
}

.tool-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.tool-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-light);
}

.tool-badge {
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.tool-card p {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.tool-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature {
    background: rgba(249, 115, 22, 0.15);
    border: 1px solid rgba(249, 115, 22, 0.3);
    color: var(--primary);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* CTA Section */
.prompt-cta {
    padding: 100px 0;
    background: var(--bg-darker);
}

.prompt-cta .cta-card {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid var(--border-subtle);
    border-radius: 25px;
    padding: 60px;
    display: flex;
    align-items: center;
    gap: 50px;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-visual {
    flex-shrink: 0;
}

.cta-visual .cta-icon {
    width: 120px;
    height: 120px;
    background: var(--gradient-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.3);
}

/* Zatoona CTA Section */
.zatoona-cta-section {
    padding: 80px 0;
    background: var(--bg-darker);
    position: relative;
    overflow: hidden;
}

.zatoona-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(247, 115, 22, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.zatoona-cta-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(247, 115, 22, 0.05) 100%);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 50px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.zatoona-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(247, 115, 22, 0.03), transparent);
    pointer-events: none;
}

.cta-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
    line-height: 1.3;
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-features {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
}

.cta-feature i {
    color: var(--primary);
    font-size: 1.1rem;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary) 0%, #ea580c 100%);
    color: var(--bg-dark);
    text-decoration: none;
    padding: 16px 30px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(247, 115, 22, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-btn::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;
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(247, 115, 22, 0.4);
    background: linear-gradient(135deg, #ea580c 0%, var(--primary) 100%);
}

.cta-visual {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-icon-main {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, #ea580c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--bg-dark);
    box-shadow: 0 8px 30px rgba(247, 115, 22, 0.4);
    animation: pulse-glow 3s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(247, 115, 22, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 8px 40px rgba(247, 115, 22, 0.6);
        transform: scale(1.05);
    }
}

.cta-floating-icons {
    position: absolute;
    inset: 0;
}

.floating-icon {
    position: absolute;
    width: 35px;
    height: 35px;
    background: rgba(247, 115, 22, 0.1);
    border: 1px solid rgba(247, 115, 22, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--primary);
    animation: float 4s ease-in-out infinite;
    animation-delay: var(--delay);
    backdrop-filter: blur(10px);
}

.floating-icon:nth-child(1) {
    top: 0;
    right: 0;
}

.floating-icon:nth-child(2) {
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
}

.floating-icon:nth-child(3) {
    bottom: 0;
    right: 0;
}

.floating-icon:nth-child(4) {
    top: 50%;
    left: -10px;
    transform: translateY(-50%);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(5deg);
    }
    50% {
        transform: translateY(-5px) rotate(-5deg);
    }
    75% {
        transform: translateY(-15px) rotate(3deg);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .zatoona-cta-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px 30px;
        gap: 30px;
    }
    
    .cta-content h3 {
        font-size: 1.6rem;
    }
    
    .cta-features {
        justify-content: center;
        gap: 20px;
    }
    
    .cta-feature {
        font-size: 0.9rem;
    }
    
    .cta-visual {
        width: 100px;
        height: 100px;
        margin: 0 auto;
    }
    
    .cta-icon-main {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .floating-icon {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .prompt-hero h1 {
        font-size: 2.5rem;
    }
    
    .prompt-stats {
        gap: 20px;
    }
    
    .intro-card {
        padding: 30px;
    }
    
    .intro-points {
        flex-direction: column;
        gap: 20px;
    }
    
    .basics-grid,
    .keywords-grid,
    .methods-grid,
    .tips-grid,
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .example-before-after {
        grid-template-columns: 1fr;
    }
    
    .prompt-cta .cta-card {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }
    
    .zatoona-cta-card {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    
    .cta-buttons {
        justify-content: center;
    }
}