:root {
    --primary: #ff6b35;
    --secondary: #2a2a2a;
    --accent: #00d9ff;
    --light: #f8f9fa;
    --dark: #1a1a1a;
    --success: #28a745;
    --error: #dc3545;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--light);
    background: linear-gradient(135deg, var(--dark) 0%, #2d1b69 100%);
}

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

/* Header */
header {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    z-index: 1000;
    border-bottom: 2px solid var(--primary);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--light);
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.cta-button {
    background: var(--primary);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.cta-button:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.cta-button.full-width {
    width: 100%;
    display: block;
}

/* Hero Section */
.hero {
    padding: 150px 0 100px;
    text-align: center;
    background: radial-gradient(circle at center, #2d1b69 0%, var(--dark) 70%);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #ccc;
}

.hero-badge {
    display: inline-block;
    background: var(--success);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    font-weight: bold;
}

/* Features Grid */
.features {
    padding: 100px 0;
    background: var(--secondary);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary);
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s;
}

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

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

/* Curriculum Section */
.curriculum {
    padding: 100px 0;
    background: var(--dark);
}

.curriculum-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.curriculum-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--accent);
}

.curriculum-card h3 {
    color: var(--accent);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.mechanics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.mechanic-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.mechanic-item:hover {
    border-color: var(--primary);
    transform: translateX(5px);
}

.mechanic-item::before {
    content: "✓";
    color: var(--success);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Media Gallery */
.media {
    padding: 100px 0;
    background: var(--secondary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover {
    border-color: var(--primary);
    transform: scale(1.05);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}
/* Fullscreen Image Modal */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-modal.active {
    display: flex;
    opacity: 1;
}

.modal-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

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

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 107, 53, 0.9);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    z-index: 2001;
}

.modal-close:hover {
    background: var(--primary);
    transform: rotate(90deg);
}

.modal-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
}

/* Gallery item cursor change */
.gallery-item {
    cursor: zoom-in;
}

/* Only enable fullscreen hover on desktop */
@media (min-width: 769px) {
    .gallery-item:hover {
        cursor: zoom-in;
    }
}

/* Disable fullscreen on mobile */
@media (max-width: 768px) {
    .gallery-item {
        cursor: default;
    }
    
    .image-modal {
        display: none !important;
    }
}
/* Lead Form */
.lead-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--light);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #ccc;
}

/* Custom dropdown styling */
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'><path fill='%23ff6b35' d='M2 0L0 2h4zm0 5L0 3h4z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 0.65rem;
}

.form-group select option {
    background: var(--dark);
    color: var(--light);
    padding: 1rem;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    display: none;
}

.form-message.success {
    background: rgba(40, 167, 69, 0.2);
    border: 1px solid var(--success);
    color: var(--success);
    display: block;
}

.form-message.error {
    background: rgba(220, 53, 69, 0.2);
    border: 1px solid var(--error);
    color: var(--error);
    display: block;
}

/* Pricing */
.pricing {
    padding: 100px 0;
    background: var(--secondary);
    text-align: center;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 15px;
    border: 2px solid var(--primary);
    max-width: 500px;
    margin: 0 auto;
}

.price {
    font-size: 3rem;
    color: var(--primary);
    margin: 1rem 0;
}

.bonus-list {
    text-align: left;
    margin: 2rem 0;
}

.bonus-item {
    margin: 1rem 0;
    display: flex;
    align-items: center;
}

.bonus-item::before {
    content: "🎁";
    margin-right: 1rem;
}

/* FAQ */
.faq {
    padding: 100px 0;
    background: var(--dark);
}

.faq-item {
    margin-bottom: 1rem;
}

.faq-question {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.active {
    max-height: 500px;
    padding: 1.5rem;
}

/* Footer */
footer {
    background: var(--dark);
    padding: 3rem 0;
    text-align: center;
    border-top: 2px solid var(--primary);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
    }
    
    .features-grid,
    .curriculum-grid,
    .mechanics-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .feature-card,
    .curriculum-card,
    .mechanic-item {
        padding: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}
/* Mobile Navigation */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--light);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100vh;
    background: var(--dark);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: left 0.3s ease;
    padding: 2rem;
    border-right: 2px solid var(--primary);
    overflow-y: auto;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
}

.mobile-close-btn {
    background: none;
    border: none;
    color: var(--light);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-links a {
    color: var(--light);
    text-decoration: none;
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.mobile-nav-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    border-left-color: var(--primary);
    color: var(--primary);
}

.mobile-nav-links .cta-button {
    margin-top: 1rem;
    text-align: center;
    background: var(--primary);
    color: white;
}

.mobile-nav-links .cta-button:hover {
    background: #e55a2b;
    transform: none;
}

.mobile-user-menu {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-user-email {
    color: var(--light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    padding: 0 1rem;
}

.mobile-logout-btn {
    width: 100%;
    background: var(--error);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.mobile-logout-btn:hover {
    background: #c82333;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 999;
    display: none;
}

.mobile-menu-overlay.active {
    display: block;
}

/* Update existing responsive styles */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .user-menu {
        display: none;
    }
    
    /* Adjust header padding for mobile */
    nav {
        padding: 0.8rem 0;
    }
    
    /* Hero section adjustments */
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    /* Features grid adjustments */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Curriculum grid adjustments */
    .curriculum-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Mechanics grid adjustments */
    .mechanics-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Gallery grid adjustments */
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    /* Pricing card adjustments */
    .pricing-card {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    /* LMS layout adjustments */
    .lms-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .modules-sidebar {
        max-height: 400px;
    }
    
    /* Courses grid adjustments */
    .courses-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .modules-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .feature-card,
    .curriculum-card,
    .mechanic-item {
        padding: 1.2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card {
        padding: 1rem;
    }
    
    /* Mobile menu full width on very small screens */
    .mobile-menu {
        width: 100%;
    }
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}
