/* ==========================================================================
   SGG SINGAPORE - CUSTOM PREMIUM DESIGN STYLESHEET
   ========================================================================== */

/* Theme Variables */
:root {
    /* Color Palette */
    --color-bg: #0b0f19;
    --color-surface: #131b2e;
    --color-surface-hover: #1e293b;
    --color-primary: #10b981; /* Emerald Green */
    --color-primary-rgb: 16, 185, 129;
    --color-primary-dark: #059669;
    --color-gold: #f59e0b; /* Warm Gold */
    --color-gold-rgb: 245, 158, 11;
    --color-text-white: #f8fafc;
    --color-text-muted: #94a3b8;
    --color-border: rgba(255, 255, 255, 0.08);
    --color-backdrop: rgba(11, 15, 25, 0.85);

    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Transitions & Shadow */
    --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --card-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    --glass-bg: rgba(19, 27, 46, 0.7);
    --glass-border: rgba(255, 255, 255, 0.05);
}

/* Reset & Global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text-white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography & Badges */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, var(--color-primary), var(--color-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 50px;
    color: var(--color-primary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 50px;
    color: var(--color-gold);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.btn-primary {
    background-color: var(--color-primary);
    color: #fff;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-text-white);
    border: 1px solid var(--color-border);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--color-text-white);
    transform: translateY(-2px);
}

.btn-primary-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
    border-radius: 6px;
    background-color: var(--color-primary);
    color: #fff;
}

.btn-primary-sm:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-1px);
}

.btn-secondary-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
    border-radius: 6px;
    border: 1px solid var(--color-border);
    color: var(--color-text-muted);
}

.btn-secondary-sm:hover {
    border-color: var(--color-text-white);
    color: var(--color-text-white);
}

.btn-block {
    width: 100%;
}

.btn-nav-cta {
    background-color: #1e40af; /* Premium Dark Blue */
    box-shadow: 0 4px 14px rgba(30, 64, 175, 0.4);
}

.btn-nav-cta:hover {
    background-color: #1d4ed8; /* Slightly lighter/vibrant blue on hover */
    box-shadow: 0 6px 20px rgba(29, 78, 216, 0.5);
}

/* Header & Navbar */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    padding: 12px 0;
    background: rgba(11, 15, 25, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    transition: var(--transition-smooth);
}

.logo-area {
    display: flex;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 55px;
    width: auto;
    display: block;
}

.logo-gold {
    color: var(--color-gold);
}

.logo-white {
    color: var(--color-text-white);
}

.nav-menu ul {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-muted);
    position: relative;
    padding: 8px 0;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--color-text-muted);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 6px 12px;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    transition: var(--transition-smooth);
}

.lang-btn:hover {
    color: var(--color-text-white);
    border-color: var(--color-text-white);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 30px;
}

.mobile-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--color-text-white);
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 160px 0 100px;
    overflow: hidden;
}

.hero-bg-gradients {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.gradient-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.15;
}

.sphere-1 {
    top: -10%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: var(--color-primary);
}

.sphere-2 {
    bottom: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: var(--color-gold);
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    max-width: 560px;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

/* Trainer Card */
.trainer-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
}

.trainer-card:hover {
    transform: translateY(-8px);
    border-color: rgba(16, 185, 129, 0.2);
}

.trainer-image-container {
    position: relative;
    width: 100%;
    height: 360px;
    overflow: hidden;
    background-color: #0c111d;
}

.trainer-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.trainer-card:hover .trainer-img {
    transform: scale(1.05);
}

.play-video-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.9);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    animation: pulsePlay 2s infinite;
    transition: var(--transition-smooth);
}

.play-video-btn:hover {
    background: var(--color-primary);
    transform: translate(-50%, -50%) scale(1.1);
}

@keyframes pulsePlay {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(16, 185, 129, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.trainer-info {
    padding: 30px;
}

.trainer-name {
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.trainer-title {
    color: var(--color-gold);
    font-weight: 500;
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.trainer-stats {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--color-border);
    padding-top: 20px;
}

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

.stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-text-white);
}

.stat-lbl {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Sections Global styling */
.about-section, .courses-section, .learning-hub-section, .events-section, .testimonials-section, .faq-section {
    padding: 100px 0;
    border-top: 1px solid var(--color-border);
}

.text-center {
    text-align: center;
}

.section-header {
    margin-bottom: 60px;
}

.section-header.text-center {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

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

/* Pillars Section */
.pillars-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.pillar-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 40px 30px;
    transition: var(--transition-smooth);
}

.pillar-card:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 158, 11, 0.2);
    box-shadow: var(--card-shadow);
}

.pillar-icon {
    width: 60px;
    height: 60px;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--color-gold);
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.pillar-card:hover .pillar-icon {
    background: var(--color-gold);
    color: var(--color-bg);
}

.pillar-title {
    font-size: 1.3rem;
    margin-bottom: 14px;
}

.pillar-desc {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.pillar-card.img-only {
    padding: 0;
    overflow: hidden;
    display: block;
    background: var(--color-surface);
}

.pillar-full-image {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-smooth);
}

.pillar-card.img-only:hover .pillar-full-image {
    transform: scale(1.04);
}

/* Course Catalog Section */
.courses-section .section-header {
    display: flex;
    justify-content: center;
    align-items: center;
}

.course-filters {
    display: flex;
    gap: 12px;
    background: var(--color-surface);
    padding: 6px;
    border-radius: 50px;
    border: 1px solid var(--color-border);
}

.filter-btn {
    padding: 8px 20px;
    border-radius: 50px;
    color: var(--color-text-muted);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.filter-btn:hover {
    color: var(--color-text-white);
}

.filter-btn.active {
    background-color: var(--color-primary);
    color: #fff;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.courses-grid:has(> :only-child) {
    grid-template-columns: 1fr;
    max-width: 580px;
    margin: 0 auto;
}

.course-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

.course-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-primary);
    box-shadow: var(--card-shadow);
}

.course-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.course-duration {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.course-tag {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
}

.tag-leadership {
    background: rgba(16, 185, 129, 0.1);
    color: var(--color-primary);
}

.tag-digital {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.tag-management {
    background: rgba(168, 85, 247, 0.1);
    color: #a855f7;
}

.course-name {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.course-desc {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 30px;
    flex-grow: 1;
}

/* Course Card Detail Extensions */
.course-details-wrapper {
    margin-top: 24px;
    margin-bottom: 28px;
    font-size: 0.95rem;
    color: var(--color-text-white);
    text-align: left;
}

.course-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.course-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.45;
}

.course-highlights li i {
    color: var(--color-primary);
    margin-top: 3px;
    font-size: 1rem;
    flex-shrink: 0;
}

.course-divider {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, var(--color-border), rgba(255, 255, 255, 0.02));
    margin: 20px 0;
}

.syllabus-title, .audience-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-gold);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.syllabus-days {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 576px) {
    .syllabus-days {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.syllabus-day .day-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-white);
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 4px;
}

.syllabus-day ul, .course-audience ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.syllabus-day ul li, .course-audience ul li {
    position: relative;
    padding-left: 14px;
    line-height: 1.4;
    color: var(--color-text-muted);
}

.syllabus-day ul li::before, .course-audience ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-primary);
}

.course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--color-border);
    padding-top: 24px;
}

/* Learning Hub Section */
.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.video-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--color-border);
}

.video-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    background-color: #0c111d;
    background-size: cover;
    background-position: center;
    /* Placeholder fallback color sweep */
    background-image: linear-gradient(135deg, #1e293b, #0f172a);
}

.video-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.7));
}

.video-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--color-gold);
    color: var(--color-bg);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
}

.video-card-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition-smooth);
}

.video-card:hover .video-card-play-btn {
    background: var(--color-primary);
    color: #fff;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.video-info-overlay h4 {
    font-size: 1.15rem;
    font-weight: 600;
    max-width: 80%;
}

.video-duration-tag {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 4px;
}

/* Events Timeline */
.events-timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.event-row {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 24px 30px;
    display: flex;
    align-items: center;
    gap: 30px;
    transition: var(--transition-smooth);
}

.event-row:hover {
    transform: translateX(6px);
    border-color: rgba(16, 185, 129, 0.3);
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 70px;
    height: 70px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: 8px;
    color: var(--color-primary);
}

.event-date .day {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
}

.event-date .month {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
}

.event-details {
    flex-grow: 1;
}

.event-type-badge {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 4px;
    margin-bottom: 8px;
    display: inline-block;
}

.type-seminar {
    background: rgba(245, 158, 11, 0.1);
    color: var(--color-gold);
}

.type-workshop {
    background: rgba(16, 185, 129, 0.1);
    color: var(--color-primary);
}

.type-networking {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.event-title {
    font-size: 1.25rem;
    margin-bottom: 6px;
}

.event-meta {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* Testimonials Section */
.testimonials-slider-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slide {
    min-width: 100%;
    padding: 40px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    text-align: center;
    position: relative;
}

.quote-icon {
    font-size: 2.5rem;
    color: rgba(16, 185, 129, 0.15);
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 30px;
    font-style: italic;
    color: var(--color-text-white);
}

.client-name {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.client-role {
    font-size: 0.85rem;
    color: var(--color-gold);
    font-weight: 500;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 30px;
}

.control-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.control-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: rgba(16, 185, 129, 0.05);
}

/* Video Testimonial */
.video-testimonial-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 700px;
    margin: 0 auto;
}

/* Testimonial List Styles */
.testimonial-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.testimonial-list li {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

.testimonial-list li:hover {
    border-color: var(--color-primary);
    background: var(--color-surface-hover);
    transform: translateY(-2px);
    box-shadow: var(--card-shadow);
}

.testimonial-list .testimonial-link-content {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.testimonial-list .testimonial-icon {
    color: #ff0050; /* TikTok brand color */
    font-size: 1.25rem;
    min-width: 24px;
}

.testimonial-list .testimonial-title-link {
    color: var(--color-text-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.testimonial-list .testimonial-title-link:hover {
    color: var(--color-primary);
}

.testimonial-list .testimonial-date {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
}

.video-thumbnail-link {
    display: block;
    width: 280px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--color-border);
    box-shadow: var(--card-shadow);
    transition: var(--transition-bounce);
}

.video-thumbnail-link:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--color-primary);
    box-shadow: 0 20px 40px -10px rgba(16, 185, 129, 0.3);
}

.video-thumbnail-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    background: var(--color-bg);
}

.video-thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
    opacity: 0.9;
}

.video-thumbnail-link:hover .video-thumbnail-img {
    transform: scale(1.05);
    opacity: 0.95;
}

/* TikTok badge styles */
.pinned-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #ff0050;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    z-index: 2;
    text-transform: none;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.tiktok-views {
    position: absolute;
    bottom: 12px;
    left: 12px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 4px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 15, 25, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px;
    text-align: center;
    transition: var(--transition-smooth);
    z-index: 1;
}

.video-thumbnail-link:hover .video-overlay {
    background: rgba(11, 15, 25, 0.65);
}

.play-button {
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6);
    transition: var(--transition-bounce);
    padding-left: 4px;
}

.video-thumbnail-link:hover .play-button {
    transform: scale(1.1);
    background: var(--color-gold);
    box-shadow: 0 0 0 15px rgba(245, 158, 11, 0);
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(245, 158, 11, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
    }
}

.video-play-label {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-white);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
    transition: var(--transition-smooth);
}

.video-thumbnail-link:hover .video-play-label {
    color: var(--color-gold);
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-question {
    width: 100%;
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-white);
    background: none;
}

.faq-icon {
    font-size: 1rem;
    color: var(--color-text-muted);
    transition: var(--transition-smooth);
}

.faq-item.active {
    border-color: rgba(245, 158, 11, 0.3);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--color-gold);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
    padding: 0 30px 24px 30px;
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* Main Footer */
.main-footer {
    background: #070a12;
    padding: 80px 0 30px;
    border-top: 1px solid var(--color-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-logo {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.footer-desc {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 14px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.social-links a:hover {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--color-gold);
}

.links-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.links-col a {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.links-col a:hover {
    color: var(--color-text-white);
    padding-left: 4px;
}

.contact-col p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 16px;
    display: flex;
    gap: 12px;
}

.contact-col p i {
    color: var(--color-primary);
    font-size: 1rem;
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding-top: 30px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
}

/* ==========================================================================
   WIDGETS & PLAYERS
   ========================================================================== */

/* Floating WhatsApp Button */
.whatsapp-float-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 998;
    transition: var(--transition-bounce);
}

.whatsapp-float-widget:hover {
    transform: scale(1.1) rotate(8deg);
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background: #fff;
    color: #333;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    pointer-events: none;
    transition: var(--transition-smooth);
}

.whatsapp-float-widget:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* Ambient Music Widget */
.music-widget {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 998;
}

.music-toggle-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(19, 27, 46, 0.8);
    border: 1px solid var(--color-border);
    color: var(--color-text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: var(--card-shadow);
    transition: var(--transition-bounce);
}

.music-toggle-btn:hover {
    transform: scale(1.08);
    border-color: var(--color-gold);
}

.music-icon-container {
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.music-wave {
    position: absolute;
    bottom: 12px;
    display: none;
    align-items: flex-end;
    gap: 2px;
    height: 12px;
}

.music-wave span {
    display: block;
    width: 2px;
    background-color: var(--color-gold);
    animation: bounceWave 0.8s ease infinite alternate;
}

.music-wave span:nth-child(2) {
    animation-delay: 0.2s;
}

.music-wave span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes bounceWave {
    from {
        height: 3px;
    }
    to {
        height: 12px;
    }
}

.music-widget.playing .music-icon-container {
    opacity: 0;
}

.music-widget.playing .music-wave {
    display: flex;
}

/* Modals Backdrop (Standard & Video) */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-backdrop);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.modal-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

/* Consultation Modal Content */
.modal-content {
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    width: 90%;
    max-width: 500px;
    border-radius: 16px;
    padding: 40px;
    position: relative;
    box-shadow: var(--card-shadow);
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-backdrop.active .modal-content {
    transform: translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.8rem;
    color: var(--color-text-muted);
    transition: var(--transition-smooth);
}

.modal-close-btn:hover {
    color: var(--color-text-white);
}

.modal-header-desc {
    margin-bottom: 28px;
}

.modal-header-desc h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.modal-header-desc p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-white);
}

.form-group input, .form-group select {
    padding: 12px 16px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    color: var(--color-text-white);
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-smooth);
}

.form-group input:focus, .form-group select:focus {
    border-color: var(--color-primary);
    background-color: rgba(255, 255, 255, 0.05);
}

/* Success Message inside modal */
.success-message {
    text-align: center;
    padding: 20px 0;
}

.success-icon {
    font-size: 3.5rem;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.success-message h4 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.success-message p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.hidden {
    display: none !important;
}

/* Video Modal Specifics */
.video-modal-content {
    width: 90%;
    max-width: 900px;
    position: relative;
    box-shadow: var(--card-shadow);
}

.iframe-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.modal-close-btn.video-close {
    top: -40px;
    right: 0;
    color: #fff;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .hero-text-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-media-content {
        max-width: 500px;
        width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .header-container {
        height: 70px;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--color-bg);
        padding: 40px;
        border-top: 1px solid var(--color-border);
        transform: translateX(-100%);
        transition: transform 0.4s ease-in-out;
    }

    .nav-menu.open {
        transform: translateX(0);
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 24px;
    }

    .nav-link {
        font-size: 1.2rem;
    }

    .mobile-toggle {
        display: flex;
    }

    .main-header.menu-open .mobile-toggle span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .main-header.menu-open .mobile-toggle span:nth-child(2) {
        opacity: 0;
    }

    .main-header.menu-open .mobile-toggle span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .btn-nav-cta {
        display: none; /* Hide nav CTA on small screens */
    }

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

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

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

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

    .event-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .event-date {
        flex-direction: row;
        gap: 10px;
        min-width: unset;
        height: unset;
        padding: 6px 14px;
    }

    .event-date .day {
        font-size: 1.1rem;
    }

    .event-action {
        width: 100%;
    }

    .event-action .btn {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .music-widget {
        left: unset;
        right: 30px;
        bottom: 100px;
    }
}

/* Shake animation for incorrect password */
.shake {
    animation: shake 0.4s ease-in-out !important;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-6px); }
    20%, 40%, 60%, 80% { transform: translateX(6px); }
}

/* Janet Slide Slider */
.janet-slider-card {
    position: relative;
    overflow: hidden;
}

.janet-slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    overflow: hidden;
}

.janet-slide {
    width: 100%;
    height: auto;
    display: none;
    transition: opacity 0.5s ease-in-out;
}

.janet-slide.active {
    display: block;
}

.janet-slider-controls {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    z-index: 10;
}

.slider-arrow {
    background: rgba(11, 15, 25, 0.75);
    border: 1px solid var(--color-border);
    color: var(--color-text-white);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    font-size: 0.85rem;
}

.slider-arrow:hover {
    background: var(--color-gold);
    color: var(--color-bg);
    border-color: var(--color-gold);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-dot.active {
    background: var(--color-gold);
    transform: scale(1.2);
}
