/**
 * Bheem Kodee - AI Academy Styles
 * External CSS for better SEO and performance
 */

/* ===== BASE STYLES ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --bg-dark: #0a0a0a;
    --bg-card: #111111;
    --bg-card-hover: #1a1a1a;
    --accent: #00d4ff;
    --accent-secondary: #ff6b35;
    --white: #ffffff;
    --gray-100: #f5f5f5;
    --gray-300: #d4d4d4;
    --gray-500: #737373;
    --gray-700: #404040;
    --gray-900: #171717;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-dark);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 1rem;
    transition: all 0.3s ease;
}

.nav.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo img {
    height: 130px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    color: var(--gray-300);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.btn-apply {
    background: var(--accent);
    color: var(--bg-dark);
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-apply:hover {
    background: var(--white);
    transform: translateY(-2px);
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown .dropdown-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.nav-dropdown .dropdown-btn i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

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

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(10, 10, 10, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px 0;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 10px;
    backdrop-filter: blur(20px);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-item {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: var(--gray-300);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 2rem 80px;
    overflow: hidden;
    background: #010426;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(1, 4, 38, 0.6) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(0, 212, 255, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-content {
    text-align: left;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    height: auto;
    max-height: 550px;
    object-fit: contain;
    filter: drop-shadow(0 20px 60px rgba(138, 92, 246, 0.3));
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.4);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: #00d4ff;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-title {
    font-family: 'Lato', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-title .highlight {
    color: #00d4ff;
}

.hero-tagline {
    font-family: 'Lato', sans-serif;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: #00d4ff;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.hero-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--gray-300);
    margin-bottom: 1.5rem;
    font-weight: 400;
    line-height: 1.7;
}

.hero-features {
    margin-bottom: 1.5rem;
}

.hero-feature {
    font-family: 'Lato', sans-serif;
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: var(--white);
    margin-bottom: 0.5rem;
    font-weight: 600;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.cta-text {
    font-family: 'Lato', sans-serif;
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #00d4ff 0%, #00a8cc 100%);
    color: #0a0612;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 212, 255, 0.45);
}

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

/* Stats */
.hero-stats {
    display: flex;
    justify-content: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: left;
}

.stat-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* ===== SECTION STYLES ===== */
section {
    padding: 6rem 2rem;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background: #ffffff;
}

.about-section .about-text h3,
.about-section .about-title {
    color: #02073b;
}

.about-section .about-text p {
    color: #333333;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.about-text h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--gray-300);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

/* About Image Container with Floating Badges */
.about-image {
    position: relative;
}

.floating-badge {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: floatBadge 3s ease-in-out infinite;
}

.floating-badge.badge-create {
    top: 5%;
    left: 0;
    background: rgba(0, 212, 255, 0.9);
    color: #fff;
    animation-delay: 0s;
}

.floating-badge.badge-promote {
    top: 5%;
    right: 0;
    background: rgba(168, 85, 247, 0.9);
    color: #fff;
    animation-delay: 0.5s;
}

.floating-badge.badge-manage {
    bottom: 5%;
    left: 0;
    background: rgba(245, 158, 11, 0.9);
    color: #fff;
    animation-delay: 1s;
}

.floating-badge.badge-earn {
    bottom: 5%;
    right: 0;
    background: rgba(16, 185, 129, 0.9);
    color: #fff;
    animation-delay: 1.5s;
}

.floating-badge:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ===== TRACKS/COURSES SECTION ===== */
.tracks-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 70% 30%, rgba(0, 180, 255, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 30% 70%, rgba(255, 120, 50, 0.1) 0%, transparent 45%),
        radial-gradient(ellipse at 50% 100%, rgba(255, 140, 50, 0.15) 0%, transparent 40%),
        radial-gradient(ellipse at 80% 80%, rgba(0, 150, 255, 0.06) 0%, transparent 40%),
        linear-gradient(180deg,
            #0c0c14 0%,
            #0e0e1a 15%,
            #101020 30%,
            #121228 50%,
            #101020 70%,
            #0e0e1a 85%,
            #0a0a14 100%);
}

.tracks-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    animation: tracksGlowPulse1 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.tracks-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 50%;
    height: 80%;
    background: radial-gradient(ellipse at center, rgba(168, 85, 247, 0.12) 0%, transparent 70%);
    animation: tracksGlowPulse2 10s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes tracksGlowPulse1 {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1) translateX(0);
    }
    50% {
        opacity: 1;
        transform: scale(1.1) translateX(5%);
    }
}

@keyframes tracksGlowPulse2 {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1) translateY(0);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.15) translateY(-5%);
    }
}

.tracks-section .section-header,
.tracks-section .tracks-grid {
    position: relative;
    z-index: 1;
}

.tracks-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 0 2rem;
}

.track-card {
    background: #172d4f;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.track-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.track-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.track-card:hover::before {
    transform: scaleX(1);
}

.track-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent) 0%, rgba(0, 212, 255, 0.3) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.track-icon-img {
    background: transparent;
    width: 100%;
    max-width: 380px;
    height: auto;
    margin: 0 auto 1rem;
    padding: 0;
}

.track-icon-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.track-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.track-subtitle {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: #00d4ff;
    margin-bottom: 0.5rem;
}

.track-desc {
    color: var(--gray-300);
    margin-bottom: 0.75rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

.track-meta-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
}

.track-meta-info span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.track-meta-info i {
    color: var(--accent);
    font-size: 0.9rem;
}

.track-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem 1.75rem;
    background: var(--accent-secondary);
    color: var(--white);
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.track-btn:hover {
    background: #ff8555;
    transform: translateY(-2px);
}

.track-btn i {
    transition: transform 0.3s ease;
}

.track-btn:hover i {
    transform: translateX(4px);
}

/* ===== TIMELINE/BENEFITS SECTION ===== */
.timeline-section {
    background: #ffffff;
}

.timeline-section .section-title {
    color: #010426;
}

.benefits-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 1.5rem;
    min-height: 180px;
    background: #f8f9fa;
    border-radius: 16px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.benefit-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(1, 4, 38, 0.15);
    border-color: #00d4ff;
}

.benefit-item i {
    font-size: 2.5rem;
    color: #00d4ff;
    margin-bottom: 1.25rem;
}

.benefit-item span {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #010426;
    line-height: 1.4;
}

/* ===== REAL SKILLS SECTION ===== */
.real-skills-section {
    background: #010426;
    padding: 5rem 2rem;
}

.real-skills-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.real-skills-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.real-skills-desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}

/* ===== TRANSFORM SECTION ===== */
.transform-section {
    background: #ffffff;
    padding: 5rem 2rem;
}

.transform-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.transform-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #010426;
    margin-bottom: 1.5rem;
}

.transform-desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    font-weight: 400;
    color: #333333;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.transform-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.transform-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #010426;
}

.transform-feature i {
    color: #00d4ff;
    font-size: 1.2rem;
}

.transform-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #00d4ff 0%, #00a8cc 100%);
    color: #010426;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.3);
}

.transform-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 212, 255, 0.45);
}

/* ===== CURRICULUM SECTION (NEW) ===== */
.curriculum-section {
    background: linear-gradient(180deg, #0a0a14 0%, #101020 100%);
    padding: 5rem 2rem;
}

.curriculum-section .section-title {
    color: #ffffff;
    text-align: center;
    margin-bottom: 3rem;
}

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

.curriculum-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.curriculum-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.curriculum-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1rem;
}

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

.curriculum-card li {
    color: var(--gray-300);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
}

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

.curriculum-card li i {
    color: var(--accent);
    margin-right: 0.5rem;
}

/* ===== TESTIMONIALS SECTION (NEW) ===== */
.testimonials-section {
    background: #ffffff;
    padding: 5rem 2rem;
}

.testimonials-section .section-title {
    color: #010426;
    text-align: center;
    margin-bottom: 3rem;
}

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

.testimonial-card {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.testimonial-quote {
    font-size: 1rem;
    color: #333;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00d4ff, #00a8cc);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.testimonial-info h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #010426;
    margin: 0;
}

.testimonial-info p {
    font-size: 0.85rem;
    color: #666;
    margin: 0.25rem 0 0;
}

/* ===== INSTRUCTORS SECTION (NEW) ===== */
.instructors-section {
    background: #010426;
    padding: 5rem 2rem;
}

.instructors-section .section-title {
    color: #ffffff;
    text-align: center;
    margin-bottom: 1rem;
}

.instructors-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-bottom: 3rem;
}

.instructors-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.instructor-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.instructor-card:hover {
    border-color: var(--accent);
    background: rgba(0, 212, 255, 0.05);
}

.instructor-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00d4ff, #a855f7);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.instructor-avatar i {
    font-size: 2rem;
    color: white;
}

.instructor-info h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.25rem;
}

.instructor-info .role {
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.instructor-info p {
    font-size: 0.95rem;
    color: var(--gray-300);
    line-height: 1.6;
    margin: 0;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    width: 100%;
    min-height: 100vh;
    background: #000000;
    padding: 0;
    overflow: hidden;
}

.contact-title-area {
    width: 100%;
    padding: 60px 40px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(12px, 1.2vw, 14px);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 6px;
    text-transform: uppercase;
    margin: 0 0 15px 0;
}

.contact-main-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.5rem, 7vw, 80px);
    font-weight: 900;
    color: #ffffff;
    margin: 0;
    line-height: 0.9;
    letter-spacing: -4px;
    text-transform: uppercase;
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 35% 65%;
    min-height: 50vh;
}

.contact-map-side {
    position: relative;
    background: #0a0a0a;
    display: flex;
    flex-direction: column;
}

.map-container {
    flex: 1;
    min-height: 280px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

.view-map-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px;
    background: #ffffff;
    color: #000000;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.view-map-btn:hover {
    background: #3b82f6;
    color: #ffffff;
}

.contact-info-side {
    padding: 40px 50px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: #3b82f6;
}

.card-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    flex-shrink: 0;
}

.card-icon i {
    font-size: 20px;
    color: #ffffff;
}

.card-label {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.card-value {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-card);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 4rem 2rem 2rem;
}

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

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand img {
    height: 50px;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--gray-500);
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--gray-500);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-300);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg-dark);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: var(--gray-500);
    font-size: 0.85rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: var(--gray-500);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--white);
}

/* ===== POPUP STYLES ===== */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.popup-modal {
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    width: 95%;
    max-width: 1080px;
    position: relative;
    transform: scale(0.8) translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 212, 255, 0.1);
    overflow: hidden;
}

.popup-overlay.active .popup-modal {
    transform: scale(1) translateY(0);
}

.popup-content-wrapper {
    display: flex;
    min-height: 600px;
}

.popup-form-side {
    flex: 1;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.popup-image-side {
    width: 520px;
    background: linear-gradient(180deg, rgba(0, 212, 255, 0.05) 0%, #16213e 100%);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.popup-image-container {
    position: relative;
    width: 100%;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 1rem;
}

.popup-hero-image {
    width: 130%;
    height: auto;
    max-height: 620px;
    object-fit: contain;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 10px 30px rgba(0, 212, 255, 0.3));
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #ffffff;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.popup-close:hover {
    background: rgba(255, 107, 107, 0.5);
    border-color: #ff6b6b;
    color: #ff6b6b;
}

.popup-header {
    text-align: center;
    margin-bottom: 1.75rem;
}

.popup-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
}

.popup-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.popup-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    position: relative;
}

.popup-form input,
.popup-form select {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #ffffff;
    transition: all 0.3s ease;
}

.popup-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.popup-form input:focus,
.popup-form select:focus {
    outline: none;
    border-color: #00d4ff;
    background: rgba(0, 212, 255, 0.05);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.1);
}

.popup-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23ffffff' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
}

.popup-form select option {
    background: #1a1a2e;
    color: #ffffff;
}

.phone-group {
    display: flex;
    align-items: stretch;
}

.phone-prefix {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
    background: rgba(0, 212, 255, 0.15);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-right: none;
    border-radius: 12px 0 0 12px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #00d4ff;
}

.phone-group input {
    border-radius: 0 12px 12px 0;
    flex: 1;
}

.popup-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1.1rem 1.5rem;
    background: linear-gradient(135deg, #00d4ff 0%, #00a8cc 100%);
    border: none;
    border-radius: 12px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0a0612;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.popup-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

.popup-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.popup-security i {
    color: #10b981;
    font-size: 0.9rem;
}

.popup-security span {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.popup-badge {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 3;
    animation: popupBadgeFloat 3s ease-in-out infinite;
}

.popup-badge.badge-create {
    top: 8%;
    left: 5%;
    background: rgba(0, 212, 255, 0.9);
    color: #fff;
}

.popup-badge.badge-promote {
    top: 8%;
    right: 5%;
    background: rgba(168, 85, 247, 0.9);
    color: #fff;
    animation-delay: 0.5s;
}

.popup-badge.badge-manage {
    top: 50%;
    left: 2%;
    background: rgba(245, 158, 11, 0.9);
    color: #fff;
    animation-delay: 1s;
}

.popup-badge.badge-earn {
    top: 50%;
    right: 2%;
    background: rgba(16, 185, 129, 0.9);
    color: #fff;
    animation-delay: 1.5s;
}

@keyframes popupBadgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.popup-image-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    text-align: center;
    z-index: 5;
    background: linear-gradient(to top, rgba(22, 33, 62, 1) 0%, rgba(22, 33, 62, 0.95) 60%, transparent 100%);
}

.popup-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #00d4ff;
    letter-spacing: 1.5px;
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
}

.popup-headline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin: 0 0 0.6rem 0;
}

.popup-trust {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.popup-trust i {
    color: #10b981;
}

.popup-image-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, #16213e 0%, rgba(22, 33, 62, 0.8) 40%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-container {
        gap: 2rem;
    }

    .hero-image img {
        max-height: 420px;
        width: 100%;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        order: -1;
    }

    .tracks-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .curriculum-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .instructors-grid {
        grid-template-columns: 1fr;
    }

    .contact-main-grid {
        grid-template-columns: 1fr;
    }

    .contact-cards-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 0 1rem;
    }

    .nav-logo img {
        height: 90px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .hero {
        padding: 90px 1rem 40px;
        min-height: auto;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero-content {
        text-align: center;
        order: 2;
    }

    .hero-image {
        order: 1;
    }

    .hero-image img {
        max-height: 320px;
        width: 90%;
        margin: 0 auto;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-cta {
        align-items: center;
    }

    section {
        padding: 3rem 1rem;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .tracks-grid {
        grid-template-columns: 1fr;
    }

    .curriculum-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .popup-modal {
        max-width: 420px;
    }

    .popup-content-wrapper {
        flex-direction: column;
        min-height: auto;
    }

    .popup-image-side {
        width: 100%;
        height: auto;
        min-height: 220px;
        order: -1;
    }

    .popup-hero-image {
        max-height: 140px;
        width: 50%;
    }

    .popup-form-side {
        padding: 1.5rem 2rem 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 0.75rem 30px;
    }

    .hero-image img {
        max-height: 260px;
        width: 95%;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .popup-modal {
        margin: 1rem;
        max-width: calc(100% - 2rem);
    }

    .popup-title {
        font-size: 1.4rem;
    }
}
