/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #344767;
    background-color: #f8f9fa;
    direction: rtl;
    text-align: right;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Header Styles */
.top-header {
    background: #ffffff;
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(121, 40, 202, 0.12);
    position: sticky;
    top: 0;
    z-index: 1001;
    border-bottom: 3px solid #cb0c9f;
}

.top-header .navbar {
    padding: 0;
    background: transparent !important;
    box-shadow: none;
}

.logo {
    height: 50px;
    max-width: 150px;
    object-fit: contain;
}

.brand-name {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 20px;
    background: linear-gradient(310deg, #7928CA 0%, #FF0080 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

/* Navigation Styles */
.navbar-nav {
    align-items: center;
    background: rgba(248, 249, 250, 0.95);
    border-radius: 25px;
    padding: 8px 15px;
    box-shadow: 0 4px 15px rgba(203, 12, 159, 0.12);
    backdrop-filter: blur(10px);
}

.nav-link {
    font-weight: 600;
    color: #344767 !important;
    padding: 10px 18px !important;
    margin: 0 5px;
    border-radius: 20px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(310deg, #7928CA 0%, #FF0080 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.nav-link:hover::before {
    left: 0;
}

.nav-link:hover {
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(203, 12, 159, 0.3);
}

.navbar-toggler {
    border: 2px solid #cb0c9f;
    outline: none;
    padding: 8px 12px;
    border-radius: 12px;
    background: linear-gradient(310deg, #7928CA 0%, #FF0080 100%);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(203, 12, 159, 0.25);
}

.navbar-toggler:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(203, 12, 159, 0.4);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(203, 12, 159, 0.2);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='3' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

/* Header / Slider Styles */
.header {
    position: relative;
    height: 60vh;
    min-height: 400px;
    max-height: 600px;
    overflow: hidden;
}

/* Smooth Transition Gradient */
.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(
        to bottom,
        rgba(248, 249, 250, 0) 0%,
        rgba(248, 249, 250, 0.1) 20%,
        rgba(248, 249, 250, 0.2) 40%,
        rgba(248, 249, 250, 0.5) 60%,
        rgba(248, 249, 250, 0.8) 80%,
        rgba(248, 249, 250, 1) 100%
    );
    z-index: 10;
    pointer-events: none;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    touch-action: pan-y;
    user-select: none;
}

.slider-container.dragging {
    cursor: grabbing;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 0.3s ease;
    cursor: grab;
}

.slide:active {
    cursor: grabbing;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background-color: #f8f9fa;
}

.slide-content {
    display: none;
}

.slider-nav {
    display: none;
}

.nav-dot {
    display: none;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
    transition: transform 0.3s ease;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
}

/* Section Transitions */
section {
    position: relative;
    transition: all 0.3s ease;
}

section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.01));
    pointer-events: none;
}

section:first-of-type::before {
    display: none;
}

/* ===========================
   Section heading accent line
   =========================== */
.video-section h2,
.levels-section h2,
.level-test h2,
.registration h2,
.testimonials h2,
.faq h2,
.social-media h2,
.contact h2 {
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
    margin-bottom: 40px;
}

.video-section h2::after,
.levels-section h2::after,
.level-test h2::after,
.registration h2::after,
.testimonials h2::after,
.faq h2::after,
.social-media h2::after,
.contact h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(310deg, #7928CA 0%, #FF0080 100%);
    border-radius: 3px;
}

/* Statistics Section */
.statistics {
    padding: 80px 0;
    background: linear-gradient(310deg, #7928CA 0%, #FF0080 100%);
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.statistics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.07) 0%, transparent 30%),
        radial-gradient(circle at 50% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: gentleGlow 8s ease-in-out infinite alternate;
}

@keyframes gentleGlow {
    0% { opacity: 0.7; }
    100% { opacity: 1; }
}

.statistics::after {
    display: none;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    padding: 30px 20px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    display: block;
    position: relative;
    transition: all 0.3s ease;
}

.stat-number::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-item:hover .stat-number::before {
    opacity: 1;
    animation: shimmer 1.5s ease-in-out infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-weight: 500;
}

/* Registration Section */
.registration {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.registration::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(121, 40, 202, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 0, 128, 0.03) 0%, transparent 50%);
    animation: gentleGlow 8s ease-in-out infinite alternate;
}

.registration::after {
    display: none;
}

.registration .container {
    position: relative;
    z-index: 2;
}

.registration h2 {
    font-size: 3rem;
    color: #344767;
    text-align: center;
    text-shadow: none;
}

.registration p {
    font-size: 1.3rem;
    margin-bottom: 50px;
    opacity: 0.8;
    color: #67748e;
    text-align: center;
}

.registration-form {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 20px;
    position: relative;
    border: 1px solid rgba(203, 12, 159, 0.15);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.registration-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(310deg, #7928CA, #FF0080);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: exclude;
    opacity: 0.4;
}

.form-error {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    font-size: 0.95rem;
    display: none;
    box-shadow: 0 8px 20px rgba(220, 53, 69, 0.25);
    border-left: 4px solid #ffffff;
}

.form-group {
    margin-bottom: 30px;
    text-align: right;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
    font-size: 1rem;
    color: #344767;
}

.form-group input,
.registration-form select {
    width: 100%;
    padding: 16px 20px;
    border: 1.5px solid rgba(203, 12, 159, 0.25);
    border-radius: 12px;
    font-size: 1rem;
    background: #ffffff;
    color: #344767;
    direction: rtl;
    font-weight: 500;
    transition: all 0.3s ease;
    font-family: 'Open Sans', sans-serif;
}

.form-group input::placeholder {
    color: #adb5bd;
    font-weight: 400;
}

.form-group input:focus,
.registration-form select:focus {
    outline: none;
    border-color: #cb0c9f;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(203, 12, 159, 0.15), 0 4px 15px rgba(203, 12, 159, 0.1);
    transform: translateY(-2px);
}

.form-group input:hover,
.registration-form select:hover {
    border-color: rgba(203, 12, 159, 0.45);
    transform: translateY(-1px);
}

.btn-primary {
    background: linear-gradient(310deg, #7928CA 0%, #FF0080 100%);
    color: #fff;
    border: none;
    padding: 18px 50px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 25px rgba(121, 40, 202, 0.35);
    font-family: 'Open Sans', sans-serif;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(310deg, #6a1fb5 0%, #e0006e 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(121, 40, 202, 0.45);
    color: #fff;
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(121, 40, 202, 0.35);
}

.note {
    font-size: 0.95rem;
    opacity: 0.75;
    font-style: italic;
    color: #67748e;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.note::before {
    content: '\f4ad';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #cb0c9f;
    font-size: 1.1rem;
    font-style: normal;
}

/* Levels Section */
.levels-section {
    padding: 60px 0;
    background: #f8f9fa;
    text-align: center;
    position: relative;
}

.levels-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, transparent, #cb0c9f, transparent);
}

.levels-section::after {
    display: none;
}

.levels-section h2 {
    font-size: 2.5rem;
    color: #344767;
    margin-bottom: 40px;
    font-weight: 700;
}

.levels-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    align-items: stretch;
}

.level-card-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    flex: 1;
    max-width: 300px;
}

.level-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid rgba(203, 12, 159, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.level-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(121, 40, 202, 0.15);
    border-color: #cb0c9f;
}

.level-card h3 {
    font-size: 3rem;
    background: linear-gradient(310deg, #7928CA 0%, #FF0080 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    font-weight: 700;
}

.level-card p {
    color: #67748e;
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
}

/* Level Buttons */
.level-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    width: 100%;
}

.level-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    flex: 1;
    width: 140px;
    text-align: center;
    justify-content: center;
    z-index: 10;
    cursor: pointer;
    pointer-events: auto;
}

.level-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255,255,255,0.25), rgba(255,255,255,0.1));
    transition: left 0.3s ease;
}

.level-btn:hover::before {
    left: 100%;
}

.book-course-btn {
    background: linear-gradient(310deg, #7928CA 0%, #FF0080 100%);
    color: white;
    border-color: transparent;
}

.book-course-btn:hover {
    background: linear-gradient(310deg, #6a1fb5 0%, #e0006e 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(121, 40, 202, 0.35);
    color: white;
}

.free-lecture-btn {
    background: #ffffff;
    color: #cb0c9f;
    border-color: #cb0c9f;
    z-index: 15;
    cursor: pointer;
    pointer-events: auto;
    -webkit-tap-highlight-color: rgba(203, 12, 159, 0.15);
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    touch-action: manipulation;
}

.free-lecture-btn:hover, .free-lecture-btn:focus, .free-lecture-btn:active {
    background: linear-gradient(310deg, #7928CA 0%, #FF0080 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(203, 12, 159, 0.3);
    color: white;
    border-color: transparent;
    text-decoration: none;
}

.level-btn i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .levels-container {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .level-card-wrapper {
        width: 100%;
        max-width: 320px;
    }

    .level-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .level-btn {
        width: 100%;
        max-width: none;
        justify-content: center;
        padding: 16px 30px;
        font-size: 1rem;
        gap: 12px;
        z-index: 10;
        cursor: pointer;
        pointer-events: auto;
        touch-action: manipulation;
    }

    .level-buttons {
        z-index: 10;
        position: relative;
    }

    .level-card-wrapper {
        z-index: 5;
        position: relative;
    }
}

/* Level Test Section */
.level-test {
    padding: 80px 0;
    background: linear-gradient(310deg, #7928CA 0%, #FF0080 100%);
    color: white;
    text-align: center;
    position: relative;
}

.level-test::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
    opacity: 0.8;
}

.level-test .container {
    position: relative;
    z-index: 1;
}

.level-test h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
    font-weight: 700;
}

.level-test h2::after {
    background: rgba(255, 255, 255, 0.5);
}

.level-test p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.9);
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.btn-secondary {
    background: #ffffff;
    color: #7928CA;
    border: 2px solid transparent;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    font-family: 'Open Sans', sans-serif;
}

.btn-secondary:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

/* Video Section */
.video-section {
    padding: 80px 0;
    background: #ffffff;
    text-align: center;
    position: relative;
}

.video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, transparent, #cb0c9f, transparent);
}

.video-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #344767;
    font-weight: 700;
    text-align: center;
}

/* Benefits List */
.benefits-list {
    max-width: 900px;
    margin: 0 auto 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
    text-align: right;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 22px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(203, 12, 159, 0.12);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #7928CA, #FF0080);
    transition: width 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(121, 40, 202, 0.12);
    border-color: rgba(203, 12, 159, 0.25);
}

.benefit-item:hover::before {
    width: 100%;
    opacity: 0.04;
}

.benefit-item i {
    font-size: 1.4rem;
    color: #cb0c9f;
    margin-top: 5px;
    flex-shrink: 0;
}

.benefit-item.video-intro i {
    color: #7928CA;
    font-size: 1.8rem;
}

.benefit-content h3 {
    font-size: 1.1rem;
    color: #344767;
    margin-bottom: 6px;
    font-weight: 600;
    line-height: 1.4;
}

.benefit-content p {
    color: #67748e;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.benefit-item.video-intro {
    grid-column: 1 / -1;
    background: linear-gradient(145deg, rgba(121, 40, 202, 0.04), rgba(255, 0, 128, 0.02));
    border-color: rgba(121, 40, 202, 0.2);
}

.benefit-item.video-intro::before {
    background: linear-gradient(to bottom, #7928CA, #FF0080);
}

.benefit-item.video-intro h3 {
    color: #7928CA;
    font-size: 1.2rem;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, transparent, #cb0c9f, transparent);
}

.testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #344767;
    font-weight: 700;
}

.testimonials-subtitle {
    font-size: 1.1rem;
    color: #67748e;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.video-testimonial {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(203, 12, 159, 0.2);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.video-description {
    text-align: right;
    padding: 30px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(203, 12, 159, 0.12);
}

.video-description h3 {
    font-size: 1.8rem;
    background: linear-gradient(310deg, #7928CA 0%, #FF0080 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    font-weight: 700;
}

.video-description > p {
    font-size: 1.05rem;
    color: #67748e;
    line-height: 1.8;
    margin-bottom: 30px;
}

.testimonial-highlights {
    display: grid;
    gap: 12px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: rgba(121, 40, 202, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(203, 12, 159, 0.12);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(121, 40, 202, 0.09);
    transform: translateX(-5px);
}

.highlight-item i {
    color: #cb0c9f;
    font-size: 1.2rem;
    min-width: 20px;
}

.highlight-item span {
    color: #344767;
    font-weight: 600;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .video-testimonial {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }

    .video-description {
        text-align: center;
        padding: 20px;
    }

    .video-description h3 {
        font-size: 1.4rem;
    }

    .testimonial-highlights {
        grid-template-columns: 1fr;
    }

    .highlight-item {
        justify-content: center;
        text-align: center;
    }

    .testimonials h2 {
        font-size: 2rem;
    }

    .testimonials-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #ffffff;
}

.faq h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    color: #344767;
    font-weight: 700;
}

.faq-item {
    background: #ffffff;
    margin-bottom: 16px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(203, 12, 159, 0.12);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(121, 40, 202, 0.1);
    border-color: rgba(203, 12, 159, 0.3);
}

.faq-question {
    padding: 80px 25px 25px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    background: transparent;
    transition: background 0.3s ease;
    position: relative;
    text-align: center;
}

.faq-question::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 25px;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(310deg, #7928CA 0%, #FF0080 100%);
    border-radius: 50%;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-family: 'Font Awesome 6 Free', 'Font Awesome 6 Pro', 'FontAwesome' !important;
    font-weight: 900 !important;
    color: #ffffff !important;
    font-size: 1.4rem !important;
    box-shadow: 0 6px 20px rgba(121, 40, 202, 0.3);
    transition: all 0.3s ease;
    z-index: 2;
    text-align: center !important;
    line-height: 50px !important;
}

.faq-question:hover {
    background: rgba(121, 40, 202, 0.03);
}

.faq-question:hover::before {
    transform: translateX(-50%) scale(1.15);
    box-shadow: 0 8px 25px rgba(203, 12, 159, 0.4);
    background: linear-gradient(310deg, #FF0080 0%, #7928CA 100%);
}

.faq-question h3 {
    font-size: 1.1rem;
    color: #344767;
    font-weight: 600;
    text-align: center;
    width: 100%;
    margin: 0;
    padding-right: 40px;
}

.faq-question i {
    color: #cb0c9f;
    transition: transform 0.3s ease;
    font-size: 1.1rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-question::before {
    background: linear-gradient(310deg, #FF0080 0%, #7928CA 100%);
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 10px 25px rgba(203, 12, 159, 0.35);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(121, 40, 202, 0.02);
}

.faq-item.active .faq-answer {
    padding: 25px;
    max-height: 200px;
}

.faq-answer p {
    color: #67748e;
    line-height: 1.7;
    text-align: center;
    margin: 0;
}

.faq-answer ul {
    color: #67748e;
    line-height: 1.8;
    padding-right: 20px;
}

/* FAQ Icons per question */
.faq-item:nth-child(1) .faq-question::before {
    content: '\f0a3';
    font-family: 'Font Awesome 6 Free', 'Font Awesome 6 Pro', 'FontAwesome' !important;
    font-weight: 900 !important;
}

.faq-item:nth-child(2) .faq-question::before {
    content: '\f201';
    font-family: 'Font Awesome 6 Free', 'Font Awesome 6 Pro', 'FontAwesome' !important;
    font-weight: 900 !important;
}

.faq-item:nth-child(3) .faq-question::before {
    content: '\f017';
    font-family: 'Font Awesome 6 Free', 'Font Awesome 6 Pro', 'FontAwesome' !important;
    font-weight: 900 !important;
}

.faq-item:nth-child(4) .faq-question::before {
    content: '\f059';
    font-family: 'Font Awesome 6 Free', 'Font Awesome 6 Pro', 'FontAwesome' !important;
    font-weight: 900 !important;
}

.faq-item:nth-child(5) .faq-question::before {
    content: '\f0c0';
    font-family: 'Font Awesome 6 Free', 'Font Awesome 6 Pro', 'FontAwesome' !important;
    font-weight: 900 !important;
}

.faq-item:nth-child(6) .faq-question::before {
    content: '\f09d';
    font-family: 'Font Awesome 6 Free', 'Font Awesome 6 Pro', 'FontAwesome' !important;
    font-weight: 900 !important;
}

.faq-item:nth-child(7) .faq-question::before {
    content: '\f086';
    font-family: 'Font Awesome 6 Free', 'Font Awesome 6 Pro', 'FontAwesome' !important;
    font-weight: 900 !important;
}

.faq-item:nth-child(8) .faq-question::before {
    content: '\f555';
    font-family: 'Font Awesome 6 Free', 'Font Awesome 6 Pro', 'FontAwesome' !important;
    font-weight: 900 !important;
}

.faq-item:nth-child(9) .faq-question::before {
    content: '\f3fd';
    font-family: 'Font Awesome 6 Free', 'Font Awesome 6 Pro', 'FontAwesome' !important;
    font-weight: 900 !important;
}

.faq-item:nth-child(10) .faq-question::before {
    content: '\f3ed';
    font-family: 'Font Awesome 6 Free', 'Font Awesome 6 Pro', 'FontAwesome' !important;
    font-weight: 900 !important;
}

.faq-item:nth-child(11) .faq-question::before {
    content: '\f02d';
    font-family: 'Font Awesome 6 Free', 'Font Awesome 6 Pro', 'FontAwesome' !important;
    font-weight: 900 !important;
}

.faq-item:nth-child(12) .faq-question::before {
    content: '\f1fd';
    font-family: 'Font Awesome 6 Free', 'Font Awesome 6 Pro', 'FontAwesome' !important;
    font-weight: 900 !important;
}

.faq-item:nth-child(13) .faq-question::before {
    content: '\f3cd';
    font-family: 'Font Awesome 6 Free', 'Font Awesome 6 Pro', 'FontAwesome' !important;
    font-weight: 900 !important;
}

.faq-item:nth-child(14) .faq-question::before {
    content: '\f19d';
    font-family: 'Font Awesome 6 Free', 'Font Awesome 6 Pro', 'FontAwesome' !important;
    font-weight: 900 !important;
}

.faq-item:nth-child(15) .faq-question::before {
    content: '\f140';
    font-family: 'Font Awesome 6 Free', 'Font Awesome 6 Pro', 'FontAwesome' !important;
    font-weight: 900 !important;
}

/* Social Media Section */
.social-media {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.social-media::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, transparent, #cb0c9f, transparent);
}

.social-media h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #344767;
    font-weight: 700;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 999px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    min-width: 150px;
    justify-content: center;
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    color: white;
    text-decoration: none;
}

.social-link.facebook {
    background: #1877f2;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link.tiktok {
    background: #000;
}

.social-link i {
    font-size: 1.4rem;
}

.social-link span {
    font-weight: 600;
}

/* Contact / Footer */
.contact {
    padding: 80px 0;
    background: #3A416F;
    color: white;
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 700;
    color: #fff;
}

.contact h2::after {
    background: rgba(255, 255, 255, 0.4);
}

.whatsapp-contact {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #25d366;
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.whatsapp-contact:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
    color: white;
    text-decoration: none;
}

.whatsapp-contact i {
    font-size: 1.5rem;
}

.contact p {
    opacity: 0.8;
    margin-top: 20px;
    color: rgba(255,255,255,0.85);
}

.copyright {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.copyright a {
    color: #FF8ED4;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.copyright a:hover {
    color: #ffffff;
}

/* Website navigation button */
.website-nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(310deg, #7928CA 0%, #FF0080 100%);
    color: white !important;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(121, 40, 202, 0.3);
}

.website-nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(121, 40, 202, 0.4);
    color: white !important;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        height: 55vh;
        min-height: 350px;
        max-height: 500px;
    }

    .slide img {
        object-fit: cover;
        object-position: center;
        height: 100%;
        width: 100%;
    }

    .statistics {
        padding: 60px 0;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-item {
        padding: 20px 15px;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .stat-label {
        font-size: 1rem;
    }

    .top-header {
        padding: 10px 0;
    }

    .logo {
        height: 35px;
        max-width: 100px;
    }

    .brand-name {
        font-size: 1.4rem;
        margin: 0 10px;
    }

    .navbar-nav {
        text-align: center;
        margin-top: 15px;
        background: #ffffff;
        border-radius: 15px;
        padding: 15px;
        box-shadow: 0 8px 30px rgba(121, 40, 202, 0.15);
        position: relative;
        z-index: 9999;
        border: 2px solid rgba(203, 12, 159, 0.2);
    }

    .nav-link {
        padding: 12px 20px !important;
        margin: 6px 0;
        font-size: 0.95rem;
        color: #344767 !important;
        background: rgba(121, 40, 202, 0.06);
        border-radius: 10px;
        display: block;
        text-decoration: none;
        border: 1px solid rgba(203, 12, 159, 0.15);
        cursor: pointer;
        font-weight: 600;
    }

    .nav-link:hover,
    .nav-link:focus,
    .nav-link:active {
        background: linear-gradient(310deg, #7928CA 0%, #FF0080 100%);
        color: white !important;
        transform: translateX(-5px);
        text-decoration: none;
        border-color: transparent;
    }

    .registration h2,
    .level-test h2,
    .video-section h2,
    .testimonials h2,
    .faq h2,
    .social-media h2,
    .contact h2 {
        font-size: 1.8rem;
    }

    .registration {
        padding: 60px 0;
    }

    .registration-form {
        padding: 30px 20px;
        max-width: 92%;
        margin: 0 auto;
    }

    .registration h2 {
        font-size: 2rem;
    }

    .registration p {
        font-size: 1.05rem;
        margin-bottom: 30px;
    }

    .form-group input {
        padding: 14px 16px;
        font-size: 1rem;
    }

    .btn-primary {
        padding: 16px 40px;
        font-size: 1.1rem;
        width: 100%;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
    }

    .social-link {
        width: 220px;
    }

    .whatsapp-float {
        bottom: 20px;
        left: 20px;
    }

    .whatsapp-float a {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .levels-container {
        flex-direction: column;
        align-items: center;
    }

    .level-card-wrapper {
        width: 100%;
        max-width: 300px;
        margin-bottom: 20px;
    }

    .level-card {
        width: 100%;
    }

    .benefits-list {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 40px;
    }

    .benefit-item {
        padding: 18px;
        text-align: right;
    }

    .benefit-content h3 {
        font-size: 1rem;
    }

    .benefit-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .header {
        height: 50vh;
        min-height: 300px;
        max-height: 400px;
    }

    .slide img {
        object-fit: cover;
        object-position: center;
        height: 100%;
        width: 100%;
    }

    .statistics {
        padding: 50px 0;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stat-item {
        padding: 22px 18px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 1rem;
    }

    .logo {
        height: 30px;
        max-width: 80px;
    }

    .brand-name {
        font-size: 1.2rem;
        margin: 0 8px;
    }

    .price {
        font-size: 2.2rem;
    }

    .nav-link {
        font-size: 0.9rem;
        padding: 10px 14px !important;
    }

    .registration {
        padding: 50px 0;
    }

    .registration-form {
        padding: 20px 14px;
    }

    .registration h2 {
        font-size: 1.7rem;
    }

    .registration p {
        font-size: 0.95rem;
    }

    .form-group label {
        font-size: 0.95rem;
    }

    .form-group input {
        padding: 13px 15px;
        font-size: 0.95rem;
    }

    .btn-primary {
        padding: 14px 30px;
        font-size: 1rem;
    }

    .benefits-list {
        gap: 12px;
        margin-bottom: 25px;
    }

    .benefit-item {
        padding: 15px;
        gap: 10px;
    }

    .benefit-item i {
        font-size: 1.2rem;
    }

    .benefit-content h3 {
        font-size: 0.95rem;
    }

    .benefit-content p {
        font-size: 0.88rem;
    }

    /* FAQ Mobile */
    .faq-question {
        padding: 70px 18px 18px 18px;
    }

    .faq-question::before {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        top: 18px;
        font-family: 'Font Awesome 6 Free' !important;
        font-weight: 900 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .faq-question h3 {
        font-size: 1rem;
        padding-right: 25px;
    }

    .faq-answer p {
        font-size: 0.93rem;
    }
}
