@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=DM+Sans:wght@400;500;600;700&display=swap');

:root {
    --primary: #0d9488;
    --primary-dark: #0f766e;
    --primary-light: #ccfbf1;
    --accent: #0d9488;
    --accent-light: #14b8a6;
    --dark: #1e293b;
    --gray: #64748b;
    --gray-light: #94a3b8;
    --light: #f0fdfa;
    --light-teal: #ccfbf1;
    --white: #ffffff;
    --success: #16a34a;
    --warning: #f59e0b;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'DM Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}
.btn-primary { background: var(--accent); color: var(--white); }
.btn-primary:hover { background: var(--accent-light); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(13,148,136,0.3); }
.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: var(--primary-light); }
.btn-outline { background: transparent; border: 2px solid var(--dark); color: var(--dark); }
.btn-outline:hover { background: var(--dark); color: var(--white); }
.btn-outline-primary { background: transparent; border: 2px solid var(--accent); color: var(--accent); }
.btn-outline-primary:hover { background: var(--accent); color: var(--white); }
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-white { background: var(--white); color: var(--dark); }
.btn-white:hover { background: var(--light); }

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.navbar .container { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.navbar .logo { 
    font-size: 1.4rem; 
    font-weight: 700; 
    font-family: var(--font-body);
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.nav-center {
    display: flex;
    gap: 35px;
    align-items: center;
}
.nav-center a { 
    color: var(--dark); 
    font-weight: 500; 
    transition: color 0.3s; 
    font-size: 0.95rem;
    text-decoration: none;
}
.nav-center a:hover { color: var(--accent); }
.nav-auth { 
    display: flex; 
    gap: 10px; 
    align-items: center; 
}

.cart-icon {
    position: relative;
    color: var(--text);
    font-size: 1.2rem;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cart-icon:hover {
    background: var(--light);
    color: var(--accent);
}

.cart-count {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--accent);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
    line-height: 1.2;
}

.cart-count:empty {
    display: none;
}
.nav-auth .btn-masuk {
    background: transparent;
    border: 1px solid var(--gray-light);
    color: var(--dark);
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
}
.nav-auth .btn-daftar {
    background: var(--accent);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    border: none;
}
.nav-auth .btn-daftar:hover {
    background: var(--primary-dark);
}
.mobile-menu { display: none; font-size: 1.5rem; cursor: pointer; color: var(--dark); }

/* Dropdown Navigation */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; }
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}
.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 0.9rem;
    color: var(--dark);
    transition: all 0.2s;
}
.dropdown-menu li a:hover {
    background: var(--light);
    color: var(--accent);
}

/* Hero Section */
.hero {
    padding: 80px 0 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
    min-height: 500px;
}
.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.2;
}
.hero-content p {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 400px;
}
.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.hero-buttons .btn-primary {
    background: var(--accent);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    border: none;
    font-size: 0.95rem;
}
.hero-buttons .btn-outline {
    background: transparent;
    border: 1px solid var(--gray-light);
    color: var(--dark);
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.95rem;
}

/* Hero Image */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-professionals {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}
.professional-avatar {
    width: 120px;
    height: 150px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.hero-main-image {
    max-width: 100%;
    max-height: 400px;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* Hero Image Mobile - hidden by default, shown on mobile */
.hero-image-mobile {
    display: none;
    justify-content: center;
    margin-top: 30px;
}
.hero-image-mobile img {
    max-width: 100%;
    max-height: 350px;
    object-fit: contain;
}

.hero-shape {
    position: absolute;
    z-index: 1;
}
.hero-shape-circle {
    width: 400px;
    height: 400px;
    border: 3px solid var(--light-teal);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.hero-shape-heart {
    width: 350px;
    height: 350px;
    border: 3px solid var(--light-teal);
    border-radius: 50%;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%) rotate(-45deg);
}
.hero-doodle {
    position: absolute;
    z-index: 3;
}
.doodle-star {
    color: var(--accent);
    font-size: 2rem;
    top: 10%;
    left: 40%;
}
.doodle-like {
    top: 15%;
    right: 5%;
    background: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.doodle-like i {
    color: var(--accent);
    font-size: 1.5rem;
}
.doodle-lines {
    top: 25%;
    left: 15%;
    color: var(--accent-light);
    font-size: 1.5rem;
}

/* Stats Bar - moved to enhancement section */
.stats-bar .container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: nowrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.stat-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
}
.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    display: block;
    margin-bottom: 5px;
}
.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 400;
}

/* Section Styles */
.section { padding: 100px 0; }
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-header .label {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}
.section-header p {
    color: var(--gray);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}
.bg-light { background: var(--light); }

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    border-color: transparent;
}
.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 1.8rem;
    color: var(--accent);
}
.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--dark);
    font-weight: 600;
}
.feature-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Course Cards */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.course-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.course-card-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}
.course-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.course-card:hover .course-card-image img {
    transform: scale(1.05);
}
.course-card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}
.course-card-body {
    padding: 25px;
}
.course-card-body h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
}
.course-card-body p {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 15px;
    line-height: 1.6;
}
.course-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #e2e8f0;
}
.course-card-footer .lessons {
    font-size: 0.85rem;
    color: var(--gray);
}
.course-card-footer .price {
    font-weight: 700;
    color: var(--accent);
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.pricing-card {
    background: var(--white);
    border-radius: 24px;
    padding: 45px 35px;
    text-align: center;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
}
.pricing-card:hover {
    border-color: var(--accent);
}
.pricing-card.popular {
    border-color: var(--accent);
    box-shadow: 0 20px 60px rgba(13,148,136,0.15);
}
.pricing-card.popular::before {
    content: 'TERPOPULER';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--white);
    padding: 6px 24px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}
.pricing-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 10px;
    font-weight: 600;
}
.pricing-price {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--dark);
    margin: 25px 0;
}
.pricing-price span {
    font-size: 1rem;
    color: var(--gray);
    font-weight: 400;
    font-family: var(--font-body);
}
.pricing-features {
    margin: 30px 0;
    text-align: left;
}
.pricing-features li {
    padding: 12px 0;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}
.pricing-features li::before {
    content: '✓';
    color: var(--success);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Testimonials */
.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.testimonial-card {
    background: var(--white);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
}
.testimonial-card p {
    color: var(--gray);
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 1rem;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}
.testimonial-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
}
.testimonial-info h4 {
    color: var(--dark);
    font-size: 1.05rem;
    font-weight: 600;
}
.testimonial-info span {
    color: var(--gray);
    font-size: 0.9rem;
}
.stars {
    color: #fbbf24;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: var(--white);
    border-radius: 16px;
    margin-bottom: 15px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
}
.faq-question {
    padding: 22px 28px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
    font-size: 1.05rem;
}
.faq-question:hover { background: var(--light); }
.faq-answer {
    padding: 0 28px 22px;
    color: var(--gray);
    display: none;
    line-height: 1.7;
}
.faq-item.active .faq-answer { display: block; }
.faq-item.active .faq-icon { transform: rotate(180deg); }
.faq-icon { transition: transform 0.3s; }

/* CTA */
.cta {
    padding: 100px 40px;
    background: var(--dark);
    text-align: center;
    color: var(--white);
    border-radius: 30px;
    margin: 0 20px 100px;
    position: relative;
    overflow: hidden;
}
.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: rgba(249,115,22,0.1);
    border-radius: 50%;
}
.cta h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
}
.cta p {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 35px;
    position: relative;
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0 30px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}
.footer-brand h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    font-family: var(--font-body);
}
.footer-brand p {
    color: #94a3b8;
    line-height: 1.8;
}
.footer-links h4 {
    margin-bottom: 25px;
    font-size: 1.1rem;
    font-weight: 600;
}
.footer-links a {
    display: block;
    color: #94a3b8;
    padding: 10px 0;
    transition: color 0.3s;
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 30px;
    text-align: center;
    color: #94a3b8;
}

/* Forms */
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark);
}
.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: border-color 0.3s;
}
.form-control:focus {
    outline: none;
    border-color: var(--accent);
}

/* Cards */
.card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    overflow: hidden;
}
.card-header {
    padding: 25px;
    border-bottom: 1px solid #e2e8f0;
}
.card-body { padding: 25px; }

/* Alerts */
.alert {
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
}
.alert-success { background: #dcfce7; color: #166534; }
.alert-error { background: #fee2e2; color: #991b1b; }
.alert-warning { background: #fef3c7; color: #92400e; }

/* Badge */
.badge {
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}
.badge-pending { background: #fef3c7; color: #92400e; }
.badge-approved { background: #dcfce7; color: #166534; }
.badge-rejected { background: #fee2e2; color: #991b1b; }

/* Responsive */
@media (max-width: 1024px) {
    .hero .container { 
        grid-template-columns: 1fr; 
        text-align: center; 
        gap: 40px;
    }
    .hero-content h1 { font-size: 2.5rem; }
    .hero-professionals { 
        flex-wrap: wrap; 
        justify-content: center;
        gap: 15px;
    }
    .professional-avatar {
        width: 100px;
        height: 120px;
    }
    .hero-main-image {
        max-height: 300px;
        width: 100%;
    }
    .nav-center { gap: 25px; }
}

@media (max-width: 768px) {
    .navbar { padding: 12px 0; }
    .navbar .logo { font-size: 1.2rem; }
    .nav-center {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        gap: 0;
    }
    .nav-center.active { display: flex; }
    .nav-center a {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid #f1f5f9;
    }
    .nav-auth { gap: 8px; }
    .nav-auth .btn-masuk, .nav-auth .btn-daftar { 
        padding: 6px 16px; 
        font-size: 0.85rem; 
    }
    .mobile-menu { display: block; }

    .hero { padding: 100px 0 40px; }
    .hero-content h1 { font-size: 2rem; line-height: 1.3; }
    .hero-content p { margin: 0 auto 25px; max-width: 100%; }
    .hero-buttons { justify-content: center; }
    .hero-professionals { 
        gap: 10px;
    }
    .professional-avatar {
        width: 80px;
        height: 100px;
    }
    .hero-main-image {
        max-height: 250px;
        width: 100%;
        border-radius: 10px;
    }

    .stats-bar .container { 
        flex-direction: row; 
        flex-wrap: wrap;
        justify-content: space-around;
    }
    .stat-item { 
        flex: 1; 
        min-width: 120px;
        margin-bottom: 20px;
    }
    .stat-number { font-size: 2rem; }
    .stat-label { font-size: 0.8rem; }

    .container { padding: 0 15px; }
}
/* Mobile App Section */
.mobile-app-section {
    padding: 100px 0;
    background: var(--light);
}

.mobile-app-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mobile-app-text h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.mobile-app-text p {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.mobile-app-image {
    text-align: center;
}

.mobile-app-image img {
    max-width: 300px;
    height: auto;
}

/* Additional Features Section */
.additional-features {
    padding: 80px 0;
    background: var(--accent);
    color: var(--white);
}

.additional-features .container {
    text-align: center;
}

.additional-features h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.additional-features p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.features-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.feature-box {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    color: var(--dark);
}

.feature-box h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-box p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Enhanced responsive design */
@media (max-width: 768px) {
    .mobile-app-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .mobile-app-text h2 {
        font-size: 2rem;
    }
    
    .features-boxes {
        grid-template-columns: 1fr;
    }
    
    .additional-features {
        padding: 60px 0;
    }
    
    .additional-features h2 {
        font-size: 2rem;
    }
}
/* Enhanced branding colors */
.hero-content h1 .accent {
    color: var(--accent);
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Stats bar enhancement */
.stats-bar {
    padding: 40px 0;
    background: var(--accent);
    color: var(--white);
    position: relative;
}

.stats-bar .stat-number {
    color: var(--white);
}

.stats-bar .stat-label {
    color: rgba(255, 255, 255, 0.8);
}

/* Enhanced button hover effects */
.btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: 0 15px 35px rgba(13, 148, 136, 0.4);
}

/* Course card enhancements */
.course-card-badge {
    background: var(--accent);
}

/* Feature icon enhancements */
.feature-icon {
    background: var(--light-teal);
}

/* Testimonial enhancements */
.testimonial-avatar {
    background: var(--accent);
}

/* FAQ enhancements */
.faq-item.active .faq-question {
    background: var(--light-teal);
    color: var(--dark);
}

/* Pricing card popular enhancement */
.pricing-card.popular::before {
    background: var(--accent);
}

/* Mobile responsiveness improvements */
@media (max-width: 768px) {
    .stats-bar .container {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 15px;
        padding: 0 10px;
    }
    
    .stat-item {
        flex: 1;
        min-width: 80px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
}
/* Additional styling for exact match */
.hero-professionals {
    position: relative;
}

.hero-main-image {
    transition: transform 0.3s ease;
}

.hero-main-image:hover {
    transform: scale(1.02);
}

/* Enhanced button styling */
.hero-buttons .btn {
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.hero-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Stats enhancement */
.stat-number {
    font-family: 'Arial', sans-serif;
    font-weight: 700;
}

/* Navbar brand enhancement */
.navbar .logo {
    font-family: 'Arial', sans-serif;
    font-weight: 800;
}
/* Additional CSS for course and tryout pages */
.course-page, .tryout-page {
    padding-top: 100px;
    min-height: 100vh;
    background: var(--light);
}

.course-header, .tryout-header {
    text-align: center;
    margin-bottom: 40px;
}

.course-header h1, .tryout-header h1 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.course-header p, .tryout-header p {
    color: var(--gray);
}

/* Course and Tryout Cards */
.course-grid, .tryout-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.course-card, .tryout-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.course-card:hover, .tryout-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* Dashboard specific styles */
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 1.5rem;
}

/* Form enhancements */
.form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

.form-control.error {
    border-color: #ef4444;
}

/* Toast notifications */
.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--white);
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-left: 4px solid var(--accent);
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
    z-index: 9999;
    max-width: 300px;
}

.toast.show {
    opacity: 1;
    transform: translateX(0);
}

.toast-success {
    border-left-color: var(--success);
}

.toast-error {
    border-left-color: #ef4444;
}

.toast i {
    margin-right: 10px;
}

/* Loading states */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn .fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Enhanced responsive design */
@media (max-width: 768px) {
    .course-grid, .tryout-grid {
        grid-template-columns: 1fr;
    }
    
    .dashboard-stats {
        grid-template-columns: 1fr;
    }
    
    .course-page, .tryout-page {
        padding-top: 80px;
    }
    
    .toast {
        right: 10px;
        left: 10px;
        max-width: none;
    }
}
/* Login required badges */
.badge-login {
    background: #e0f2fe;
    color: #0277bd;
}

/* Enhanced tryout card styling for login states */
.tryout-card.login-required {
    opacity: 0.8;
}

.tryout-card.login-required:hover {
    transform: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

/* Button styling for login required */
.btn-login-required {
    background: #e0f2fe;
    color: #0277bd;
    border: 2px solid #81d4fa;
}

.btn-login-required:hover {
    background: #b3e5fc;
    color: #01579b;
}

/* Course card login states */
.course-card.login-required {
    opacity: 0.8;
}

.course-card.login-required .course-card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Alert styling for login redirect */
.login-alert {
    background: #e0f2fe;
    color: #0277bd;
    border: 1px solid #81d4fa;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.login-alert i {
    font-size: 1.2rem;
}

/* Enhanced form styling */
.form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

/* Access denied styling */
.access-denied {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    margin: 20px 0;
}

.access-denied i {
    font-size: 3rem;
    color: #f59e0b;
    margin-bottom: 15px;
}

.access-denied h3 {
    color: #92400e;
    margin-bottom: 10px;
}

.access-denied p {
    color: #92400e;
    margin-bottom: 15px;
}
/* Articles Styles */
.articles-page {
    padding-top: 100px;
    min-height: 100vh;
    background: var(--light);
}

.articles-header {
    text-align: center;
    margin-bottom: 40px;
}

.articles-header h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 15px;
}(--dark);
    margin-bottom: 15px;
}

.articles-header p {
    color: var(--gray);
    font-size: 1.1rem;
}

/* Articles Preview on Homepage */
.articles-preview {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.article-preview-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.article-preview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.article-preview-image {
    position: relative;
    height: 180px;
    overflow: hidden;
    background: var(--light);
}

.article-preview-image.no-image {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
}

.article-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.article-preview-card:hover .article-preview-image img {
    transform: scale(1.05);
}

.article-date-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--white);
    padding: 8px 12px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    font-weight: 700;
    color: var(--dark);
    font-size: 1.1rem;
    line-height: 1;
}

.article-date-badge span {
    display: block;
    font-size: 0.7rem;
    color: var(--gray);
    font-weight: 500;
    margin-top: 2px;
}

.article-preview-content {
    padding: 20px;
}

.article-preview-category {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    margin-bottom: 12px;
}

.article-preview-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.4;
}

.article-preview-content h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.article-preview-content h3 a:hover {
    color: var(--accent);
}

.article-preview-content p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.read-more-link {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s;
}

.read-more-link:hover {
    color: var(--accent-light);
}

.articles-cta {
    text-align: center;
}

/* Articles Filters */
.articles-filters {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.search-form {
    margin-bottom: 20px;
}

.search-input {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.search-input input {
    width: 100%;
    padding: 12px 50px 12px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 25px;
    font-size: 1rem;
}

.search-input button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--accent);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
}

.category-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 20px;
    border-radius: 20px;
    background: #f1f5f9;
    color: var(--gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--category-color, var(--accent));
    color: white;
}

/* Articles Content Layout */
.articles-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.articles-main {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.article-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.article-card.featured {
    border-color: var(--accent);
}

.article-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--accent);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

.article-content {
    padding: 20px;
}

.article-category {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    margin-bottom: 12px;
    text-decoration: none;
}

.article-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.4;
}

.article-content h3 a {
    color: inherit;
    text-decoration: none;
}

.article-content h3 a:hover {
    color: var(--accent);
}

.article-excerpt {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.article-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.8rem;
    color: var(--gray-light);
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.read-more {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
}

.read-more:hover {
    color: var(--accent-light);
}

/* Articles Sidebar */
.articles-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-widget {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.sidebar-widget h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light);
}

.featured-articles {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.featured-item {
    padding-bottom: 15px;
    border-bottom: 1px solid #e2e8f0;
}

.featured-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.featured-category {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
}

.featured-item h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.4;
}

.featured-item h4 a {
    color: var(--dark);
    text-decoration: none;
}

.featured-item h4 a:hover {
    color: var(--accent);
}

.featured-date {
    font-size: 0.8rem;
    color: var(--gray-light);
}

.category-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.category-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 8px;
    color: var(--dark);
    text-decoration: none;
    transition: background 0.3s;
}

.category-item:hover {
    background: var(--light);
}

.category-color {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.cta-widget {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: white;
    text-align: center;
}

.cta-widget h3 {
    color: white;
    border-color: rgba(255,255,255,0.2);
}

.cta-widget p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
}

/* Article Detail Page */
.article-detail {
    padding-top: 100px;
    min-height: 100vh;
    background: var(--light);
}

.breadcrumb {
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: var(--gray);
}

.breadcrumb a {
    color: var(--accent);
    text-decoration: none;
}

.breadcrumb span {
    margin: 0 10px;
}

.article-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.article-main {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.article-header {
    margin-bottom: 30px;
}

.article-header h1 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.article-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--gray);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-image {
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
}

.article-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--dark);
}

.article-body h2,
.article-body h3,
.article-body h4 {
    font-family: var(--font-heading);
    color: var(--dark);
    margin: 30px 0 15px;
}

.article-body h2 {
    font-size: 1.8rem;
}

.article-body h3 {
    font-size: 1.5rem;
}

.article-body p {
    margin-bottom: 20px;
}

.article-body ul,
.article-body ol {
    margin: 20px 0;
    padding-left: 30px;
}

.article-body li {
    margin-bottom: 8px;
}

.article-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--light);
}

.share-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.share-buttons span {
    font-weight: 600;
    color: var(--gray);
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: transform 0.3s;
}

.share-btn:hover {
    transform: scale(1.1);
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.whatsapp {
    background: #25d366;
}

.share-btn.copy {
    background: var(--gray);
    border: none;
    cursor: pointer;
}

.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.related-articles {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.related-item {
    padding-bottom: 15px;
    border-bottom: 1px solid #e2e8f0;
}

.related-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.related-item h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.4;
}

.related-item h4 a {
    color: var(--dark);
    text-decoration: none;
}

.related-item h4 a:hover {
    color: var(--accent);
}

.related-date {
    font-size: 0.8rem;
    color: var(--gray-light);
}

.no-articles {
    text-align: center;
    padding: 60px 20px;
    color: var(--gray);
}

.no-articles i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--gray-light);
}

.no-articles h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .articles-preview {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .articles-content {
        grid-template-columns: 1fr;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .articles-preview {
        grid-template-columns: 1fr;
    }
    
    .articles-header h1 {
        font-size: 2rem;
    }
    
    .article-header h1 {
        font-size: 1.8rem;
    }
    
    .article-main {
        padding: 25px;
    }
    
    .category-filters {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    
    .filter-btn {
        white-space: nowrap;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .share-buttons {
        flex-wrap: wrap;
    }
}
/* Homepage Sections Dynamic Styling */
.hero {
    position: relative;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}



.section {
    position: relative;
    overflow: hidden;
}

.section-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 1;
}

.section .container {
    position: relative;
    z-index: 2;
}

/* Admin Homepage Management Styles */
.header-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.admin-filters {
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.filter-form {
    display: flex;
    gap: 15px;
    align-items: end;
    flex-wrap: wrap;
}

.filter-group {
    flex: 1;
    min-width: 200px;
}

.filter-group input,
.filter-group select {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.9rem;
}

.admin-table-container {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.admin-table th {
    background: var(--light);
    font-weight: 600;
    color: var(--dark);
}

.admin-table tr:hover {
    background: #f8fafc;
}

.text-center {
    text-align: center;
}

.empty-state {
    padding: 40px;
    text-align: center;
    color: var(--gray);
}

.empty-state i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--gray-light);
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.page-btn {
    padding: 10px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    color: var(--gray);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.page-btn:hover,
.page-btn.active {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

/* Form Enhancements */
.admin-form {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.form-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 0;
}

.form-main,
.form-sidebar {
    padding: 30px;
}

.form-sidebar {
    background: #f8fafc;
    border-left: 1px solid #e2e8f0;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: var(--font-body);
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

.form-control.error {
    border-color: #ef4444;
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: var(--gray);
    font-size: 0.8rem;
}

.form-actions {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.form-actions .btn {
    margin-right: 10px;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-sidebar {
        border-left: none;
        border-top: 1px solid #e2e8f0;
    }
    
    .filter-form {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-group {
        min-width: auto;
    }
    
    .header-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .pagination {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    
    .page-btn {
        white-space: nowrap;
    }
}

/* Featured Tryouts Section */
.tryout-carousel, .video-carousel, .bundling-carousel {
    position: relative;
}



@media (max-width: 480px) {
    .tryout-price, .bundling-price {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }
    
    .btn-sm {
        width: 100%;
        text-align: center;
    }
}
/* Placeholder Images */
.placeholder-image {
    background: linear-gradient(135deg, var(--primary), var(--accent-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.placeholder-image::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"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.video-thumbnail .placeholder-image {
    aspect-ratio: 16/9;
    border-radius: 12px;
}

.bundling-image .placeholder-image {
    aspect-ratio: 3/2;
    border-radius: 8px;
}

/* Video Cards */
.video-card .video-thumbnail {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
}

.video-card .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.video-card:hover .play-button {
    background: var(--primary);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Bundling Section - Single Row Layout */
.bundling-carousel {
    position: relative;
}

.bundling-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.bundling-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    position: relative;
}

.bundling-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.bundling-card .bundling-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary), var(--accent-light));
}

.bundling-card .bundling-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bundling-card .discount-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bundling-info {
    padding: 24px 20px 20px;
}

.bundling-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.3;
    min-height: 2.6rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bundling-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: var(--gray);
}

.bundling-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.bundling-meta i {
    color: var(--primary);
}

.bundling-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
}

.bundling-price .price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
}

.bundling-price .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 8px;
    background: var(--primary);
    color: white;
    border: none;
    transition: all 0.3s ease;
}

.bundling-price .btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Carousel Navigation */
.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
}

.nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background: white;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.nav-btn:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.section-footer {
    text-align: center;
}

.view-all-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    padding: 12px 24px;
    border: 2px solid var(--primary);
    border-radius: 25px;
    transition: all 0.3s ease;
    display: inline-block;
}

.view-all-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .bundling-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .bundling-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .bundling-card .bundling-image {
        height: 180px;
    }
    
    .bundling-info {
        padding: 20px 16px 16px;
    }
    
    .bundling-info h3 {
        font-size: 1.1rem;
    }
    
    .bundling-price {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }
    
    .bundling-price .btn {
        width: 100%;
        text-align: center;
    }
    
    .bundling-meta {
        gap: 15px;
    }
}

/* Responsive placeholder text */
@media (max-width: 768px) {
    .placeholder-image {
        font-size: 0.8rem;
    }
}


@media (max-width: 768px) {
    .tryout-grid,
    .video-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .tryout-card,
    .video-info {
        padding: 20px 16px 16px;
    }
    
    .tryout-header h3,
    .video-info h3 {
        font-size: 1.1rem;
    }
    
    .video-card .video-thumbnail {
        height: 180px;
    }
    
    .tryout-price {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }
    
    .tryout-price .btn {
        width: 100%;
        text-align: center;
    }
}
/* Homepage Sections - Fixed Single Row Layout */

/* Tryout Section */
.tryout-carousel {
    position: relative;
}

.tryout-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 24px;
    margin-bottom: 40px;
}

.tryout-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    position: relative;
}

.tryout-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.tryout-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.tryout-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--accent-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.tryout-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
    flex: 1;
}

.tryout-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: var(--gray);
}

.tryout-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.tryout-meta i {
    color: var(--primary);
}

.tryout-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
}

.tryout-price .price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
}

/* Video Section */
.video-carousel {
    position: relative;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 24px;
    margin-bottom: 40px;
}

.video-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.video-card .video-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary), var(--accent-light));
}

.video-card .video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-card .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.video-card:hover .play-button {
    background: var(--primary);
    transform: translate(-50%, -50%) scale(1.15);
}

.video-info {
    padding: 24px 20px 20px;
}

.video-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.3;
    min-height: 2.6rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-info p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Bundling Section */
.bundling-carousel {
    position: relative;
}

.bundling-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 24px;
    margin-bottom: 40px;
}

.bundling-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    position: relative;
}

.bundling-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.bundling-card .bundling-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary), var(--accent-light));
}

.bundling-card .bundling-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bundling-card .discount-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bundling-info {
    padding: 24px 20px 20px;
}

.bundling-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.3;
    min-height: 2.6rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bundling-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: var(--gray);
}

.bundling-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.bundling-meta i {
    color: var(--primary);
}

.bundling-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
}

.bundling-price .price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
}

.bundling-price .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 8px;
    background: var(--primary);
    color: white;
    border: none;
    transition: all 0.3s ease;
}

.bundling-price .btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Carousel Navigation */
.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
}

.nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background: white;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.nav-btn:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.section-footer {
    text-align: center;
}

.view-all-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    padding: 12px 24px;
    border: 2px solid var(--primary);
    border-radius: 25px;
    transition: all 0.3s ease;
    display: inline-block;
}

.view-all-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* Remove duplicate responsive sections and fix errors */

/* Responsive Design - CONSOLIDATED */
@media (max-width: 1200px) {
    .tryout-grid,
    .video-grid,
    .bundling-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 20px;
    }
}

@media (max-width: 1024px) {
    .hero .container { 
        grid-template-columns: 1fr; 
        text-align: center; 
        gap: 40px;
    }
    .hero-content h1 { font-size: 2.5rem; }
    .hero-professionals { 
        flex-wrap: wrap; 
        justify-content: center;
        gap: 15px;
    }
    .professional-avatar {
        width: 100px;
        height: 120px;
    }
    .hero-main-image {
        max-height: 300px;
        width: 100%;
    }
    .nav-center { gap: 25px; }
    
    .tryout-grid,
    .video-grid,
    .bundling-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px;
    }
    
    .bundling-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .articles-preview {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .articles-content {
        grid-template-columns: 1fr;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .navbar { padding: 12px 0; }
    .navbar .logo { font-size: 1.2rem; }
    .nav-center {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        gap: 0;
    }
    .nav-center.active { display: flex; }
    .nav-center a {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid #f1f5f9;
    }
    .nav-auth { gap: 8px; }
    .nav-auth .btn-masuk, .nav-auth .btn-daftar { 
        padding: 6px 16px; 
        font-size: 0.85rem; 
    }
    .mobile-menu { display: block; }

    .hero { padding: 100px 0 40px; }
    .hero-content h1 { font-size: 2rem; line-height: 1.3; }
    .hero-content p { margin: 0 auto 25px; max-width: 100%; }
    .hero-buttons { justify-content: center; }
    .hero-professionals { 
        gap: 10px;
    }
    .professional-avatar {
        width: 80px;
        height: 100px;
    }
    .hero-main-image {
        max-height: 250px;
        width: 100%;
        border-radius: 10px;
    }

    .stats-bar .container { 
        flex-direction: row; 
        flex-wrap: wrap;
        justify-content: space-around;
    }
    .stat-item { 
        flex: 1; 
        min-width: 120px;
        margin-bottom: 20px;
    }
    .stat-number { font-size: 2rem; }
    .stat-label { font-size: 0.8rem; }

    .container { padding: 0 15px; }
    
    .mobile-app-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .mobile-app-text h2 {
        font-size: 2rem;
    }
    
    .features-boxes {
        grid-template-columns: 1fr;
    }
    
    .additional-features {
        padding: 60px 0;
    }
    
    .additional-features h2 {
        font-size: 2rem;
    }
    
    .tryout-grid,
    .video-grid,
    .bundling-grid {
        grid-template-columns: 1fr !important;
        gap: 16px;
    }
    
    .tryout-card,
    .video-info,
    .bundling-info {
        padding: 20px 16px 16px;
    }
    
    .tryout-header h3,
    .video-info h3,
    .bundling-info h3 {
        font-size: 1.1rem;
    }
    
    .video-card .video-thumbnail,
    .bundling-card .bundling-image {
        height: 180px;
    }
    
    .tryout-price,
    .bundling-price {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }
    
    .tryout-price .btn,
    .bundling-price .btn {
        width: 100%;
        text-align: center;
    }
    
    .articles-preview {
        grid-template-columns: 1fr;
    }
    
    .articles-header h1 {
        font-size: 2rem;
    }
    
    .article-header h1 {
        font-size: 1.8rem;
    }
    
    .article-main {
        padding: 25px;
    }
    
    .category-filters {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    
    .filter-btn {
        white-space: nowrap;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .share-buttons {
        flex-wrap: wrap;
    }
}

/* END OF CSS FILE */

/* About Us Section */
.about-us-section {
    padding: 80px 0;
}

.about-us-container {
    background-color: #e0f2f1;
    border-radius: 20px;
    padding: 60px 40px;
    margin: 0 20px;
}

.about-us-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-us-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.about-us-image {
    position: relative;
}

.main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-us-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: inherit;
    text-align: center;
}

.about-us-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: inherit;
    opacity: 0.8;
}

.about-us-gallery {
    margin-top: 40px;
}

.gallery-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.gallery-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
    padding: 10px 0;
}

.gallery-item {
    flex: 0 0 280px;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.gallery-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-size: 1.2rem;
}

.gallery-nav-btn:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.gallery-nav-btn:active {
    transform: scale(0.95);
}

/* Auto-scroll animation */
@keyframes galleryAutoScroll {
    0% { transform: translateX(0); }
    20% { transform: translateX(0); }
    25% { transform: translateX(-300px); }
    45% { transform: translateX(-300px); }
    50% { transform: translateX(-600px); }
    70% { transform: translateX(-600px); }
    75% { transform: translateX(-900px); }
    95% { transform: translateX(-900px); }
    100% { transform: translateX(0); }
}

.gallery-track.auto-scroll {
    animation: galleryAutoScroll 12s infinite;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-us-main {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .about-us-container {
        padding: 40px 30px;
        margin: 0 15px;
    }
    
    .main-image {
        height: 300px;
    }
    
    .gallery-item {
        flex: 0 0 250px;
        height: 180px;
    }
}

@media (max-width: 768px) {
    .about-us-section {
        padding: 60px 0;
    }
    
    .about-us-container {
        padding: 30px 20px;
        margin: 0 10px;
        border-radius: 15px;
    }
    
    .about-us-text h2 {
        font-size: 2rem;
    }
    
    .about-us-text p {
        font-size: 1rem;
    }
    
    .main-image {
        height: 250px;
    }
    
    .gallery-item {
        flex: 0 0 220px;
        height: 160px;
    }
    
    .gallery-nav {
        padding: 0 10px;
    }
    
    .gallery-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .about-us-container {
        padding: 25px 15px;
        margin: 0 5px;
    }
    
    .about-us-text h2 {
        font-size: 1.8rem;
    }
    
    .gallery-item {
        flex: 0 0 200px;
        height: 140px;
    }
    
    .gallery-track {
        gap: 15px;
    }
}

/* Image Upload Widget */
.image-upload-widget {
    border: 2px dashed #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    background: #fafafa;
    transition: all 0.3s ease;
}

.image-upload-widget:hover {
    border-color: var(--accent);
    background: #f0f9ff;
}

.image-preview {
    position: relative;
    margin-bottom: 15px;
}

.current-image {
    max-width: 100%;
    max-height: 200px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 10px;
}

.upload-placeholder {
    padding: 40px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.upload-placeholder.has-image {
    padding: 20px;
    opacity: 0.7;
}

.upload-placeholder.drag-over {
    border-color: var(--accent);
    background: var(--light);
    transform: scale(1.02);
}

.upload-placeholder i {
    font-size: 2rem;
    color: var(--gray);
    margin-bottom: 10px;
    display: block;
}

.upload-placeholder p {
    margin: 10px 0 5px;
    color: var(--text);
    font-weight: 500;
}

.upload-placeholder small {
    color: var(--gray);
    font-size: 0.85rem;
}

.upload-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.upload-progress {
    margin: 15px 0;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: #eee;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-fill {
    height: 100%;
    background: var(--accent);
    width: 0%;
    transition: width 0.3s ease;
    animation: progress-animation 1.5s infinite;
}

@keyframes progress-animation {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

.progress-text {
    font-size: 0.9rem;
    color: var(--gray);
}

.upload-result .alert {
    padding: 10px 15px;
    border-radius: 6px;
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.upload-result .alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.upload-result .alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Admin Form Enhancements */
.form-group.image-field {
    margin-bottom: 25px;
}

.form-group.image-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .upload-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .upload-actions .btn {
        width: 100%;
        max-width: 200px;
    }
    
    .upload-placeholder {
        padding: 30px 15px;
    }
    
    .current-image {
        max-height: 150px;
    }
}