/**
 * Welcome Page Styles - Enhanced Dark Theme
 * SkoolBeez Landing Page
 */

/* ========================================
   CSS Variables
   ======================================== */
:root {
    --sb-dark-1: #0d1b2a;
    --sb-dark-2: #1b263b;
    --sb-dark-3: #415a77;
    --sb-yellow: #ffed00;
    --sb-yellow-dark: #ffc300;
    --sb-glass: rgba(255, 255, 255, 0.03);
    --sb-glass-border: rgba(255, 255, 255, 0.1);
    --sb-text-muted: rgba(255, 255, 255, 0.6);
}

/* ========================================
   Hero Section
   ======================================== */
.welcome-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--sb-dark-1) 0%, var(--sb-dark-2) 50%, var(--sb-dark-3) 100%);
    position: relative;
    overflow: hidden;
    padding: 140px 0 100px;
    margin-top: -80px;
}

.welcome-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 60%;
    height: 120%;
    background: radial-gradient(ellipse, rgba(255, 237, 0, 0.12) 0%, transparent 60%);
    pointer-events: none;
    animation: glowPulse 8s ease-in-out infinite;
}

.welcome-hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 40%;
    height: 60%;
    background: radial-gradient(ellipse, rgba(79, 172, 254, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

@keyframes glowPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

.welcome-hero-honeycomb {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='56' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M28 66L0 50V16L28 0l28 16v34L28 66zm0-12l20-12V22L28 10 8 22v20l20 12z' fill='%23ffed00' fill-opacity='0.02'/%3E%3C/svg%3E");
    opacity: 0.6;
    animation: honeycombFloat 25s ease-in-out infinite;
}

@keyframes honeycombFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-15px) scale(1.02); }
}

.welcome-hero-content {
    position: relative;
    z-index: 10;
}

.welcome-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(255, 237, 0, 0.12);
    border: 1px solid rgba(255, 237, 0, 0.35);
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--sb-yellow);
    margin-bottom: 2rem;
    animation: badgePulse 2.5s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 237, 0, 0.3); }
    50% { box-shadow: 0 0 0 12px rgba(255, 237, 0, 0); }
}

.welcome-hero-title {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: clamp(2.75rem, 5.5vw, 4.5rem);
    color: #ffffff;
    line-height: 1.08;
    margin-bottom: 1.75rem;
    letter-spacing: -0.02em;
}

.welcome-hero-title .highlight {
    color: var(--sb-yellow);
    position: relative;
    display: inline-block;
}

.welcome-hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 10px;
    background: rgba(255, 237, 0, 0.3);
    z-index: -1;
    border-radius: 5px;
    transform: skewX(-3deg);
}

.welcome-hero-description {
    font-family: 'Nunito', sans-serif;
    font-size: 1.2rem;
    color: var(--sb-text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    max-width: 520px;
}

.welcome-hero-tagline {
    font-family: 'Shadows Into Light', cursive;
    font-size: 1.4rem;
    color: var(--sb-yellow);
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.welcome-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 18px 36px;
    background: linear-gradient(135deg, var(--sb-yellow) 0%, var(--sb-yellow-dark) 100%);
    border: none;
    border-radius: 14px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--sb-dark-2);
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px -8px rgba(255, 237, 0, 0.4);
}

.welcome-hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s ease;
}

.welcome-hero-cta:hover::before {
    left: 100%;
}

.welcome-hero-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px -8px rgba(255, 237, 0, 0.5);
    color: var(--sb-dark-2);
}

.welcome-hero-image {
    position: relative;
    z-index: 10;
}

.welcome-hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.4));
    animation: heroImageFloat 6s ease-in-out infinite;
}

@keyframes heroImageFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(1deg); }
}

/* Flying Bees */
.welcome-bee {
    position: absolute;
    animation: beeFly 10s ease-in-out infinite;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.3));
    z-index: 5;
}

.welcome-bee-1 {
    width: 70px;
    height: 70px;
    top: 15%;
    right: 8%;
    animation-delay: 0s;
}

.welcome-bee-2 {
    width: 45px;
    height: 45px;
    bottom: 25%;
    left: 3%;
    animation-delay: -4s;
}

.welcome-bee-3 {
    width: 35px;
    height: 35px;
    top: 60%;
    right: 15%;
    animation-delay: -7s;
}

@keyframes beeFly {
    0%, 100% { transform: translate(0, 0) rotate(-5deg); }
    25% { transform: translate(25px, -20px) rotate(5deg); }
    50% { transform: translate(50px, 8px) rotate(-3deg); }
    75% { transform: translate(20px, 25px) rotate(8deg); }
}

/* ========================================
   Video Teaser Section
   ======================================== */
.welcome-video {
    background: linear-gradient(180deg, var(--sb-dark-2) 0%, var(--sb-dark-1) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.welcome-video::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--sb-glass-border), transparent);
}

.welcome-video .welcome-section-header {
    margin-bottom: 50px;
}

.welcome-video-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.welcome-video-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: var(--sb-glass);
    border: 1px solid var(--sb-glass-border);
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
}

.welcome-video-container:hover {
    border-color: rgba(255, 237, 0, 0.35);
    transform: translateY(-8px);
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.6);
}

.welcome-video-thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    cursor: pointer;
}

.welcome-video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.welcome-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 27, 42, 0.6) 0%, rgba(27, 38, 59, 0.4) 100%);
    transition: all 0.4s ease;
}

.welcome-video-thumbnail:hover .welcome-video-overlay {
    background: linear-gradient(135deg, rgba(13, 27, 42, 0.4) 0%, rgba(27, 38, 59, 0.2) 100%);
}

.welcome-video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--sb-yellow) 0%, var(--sb-yellow-dark) 100%);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 40px -5px rgba(255, 237, 0, 0.4);
    z-index: 10;
}

.welcome-video-play-btn iconify-icon {
    font-size: 2.5rem;
    color: var(--sb-dark-1);
    margin-left: 5px;
}

.welcome-video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.12);
    box-shadow: 0 20px 50px -5px rgba(255, 237, 0, 0.55);
}

.welcome-video-play-btn::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(255, 237, 0, 0.4);
    animation: playPulse 2s ease-out infinite;
}

.welcome-video-play-btn::after {
    content: '';
    position: absolute;
    inset: -16px;
    border-radius: 50%;
    border: 2px solid rgba(255, 237, 0, 0.2);
    animation: playPulse 2s ease-out infinite 0.5s;
}

@keyframes playPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.welcome-video-duration {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: #ffffff;
    z-index: 10;
}

.welcome-video-duration iconify-icon {
    font-size: 1.1rem;
    color: var(--sb-yellow);
}

.welcome-video-player {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}

.welcome-video-player video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.welcome-video-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(255, 237, 0, 0.12) 0%, transparent 60%);
    pointer-events: none;
    z-index: -1;
}

/* ========================================
   Tagline Banner
   ======================================== */
.welcome-tagline-banner {
    background: linear-gradient(90deg, var(--sb-yellow) 0%, var(--sb-yellow-dark) 100%);
    padding: 24px 0;
    position: relative;
    overflow: hidden;
}

.welcome-tagline-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 33L15 25V8l15-8 15 8v17l-15 8z' fill='%23000' fill-opacity='0.05'/%3E%3C/svg%3E");
}

.welcome-tagline-text {
    font-family: 'Shadows Into Light', cursive;
    font-size: 1.6rem;
    color: var(--sb-dark-2);
    margin: 0;
    position: relative;
    z-index: 1;
    text-align: center;
}

/* ========================================
   Features Section
   ======================================== */
.welcome-features {
    background: linear-gradient(180deg, var(--sb-dark-2) 0%, var(--sb-dark-1) 100%);
    padding: 120px 0;
    position: relative;
}

.welcome-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--sb-glass-border), transparent);
}

.welcome-section-header {
    margin-bottom: 70px;
}

.welcome-section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--sb-yellow);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 1.25rem;
}

.welcome-section-title {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: clamp(2.25rem, 4.5vw, 3.25rem);
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.welcome-section-subtitle {
    font-family: 'Nunito', sans-serif;
    font-size: 1.15rem;
    color: var(--sb-text-muted);
    max-width: 600px;
    line-height: 1.75;
}

.welcome-feature-card {
    background: var(--sb-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--sb-glass-border);
    border-radius: 24px;
    padding: 2.25rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.welcome-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--sb-yellow), var(--sb-yellow-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.welcome-feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 237, 0, 0.35);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.5);
}

.welcome-feature-icon {
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, rgba(255, 237, 0, 0.2) 0%, rgba(255, 195, 0, 0.1) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
    font-size: 2rem;
    color: var(--sb-yellow);
    transition: transform 0.3s ease;
}

.welcome-feature-card:hover .welcome-feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.welcome-feature-title {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 0.85rem;
}

.welcome-feature-text {
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    color: var(--sb-text-muted);
    line-height: 1.7;
    margin: 0;
}

.welcome-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--sb-yellow);
    text-decoration: none;
    padding-bottom: 5px;
    border-bottom: 2px solid var(--sb-yellow);
    transition: all 0.3s ease;
}

.welcome-contact-link:hover {
    color: var(--sb-yellow-dark);
    gap: 16px;
}

/* ========================================
   Stats Section
   ======================================== */
.welcome-stats {
    background: var(--sb-dark-1);
    padding: 80px 0;
    position: relative;
}

.welcome-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--sb-glass-border), transparent);
}

.welcome-stat-card {
    text-align: center;
    padding: 2rem;
    background: var(--sb-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--sb-glass-border);
    border-radius: 20px;
    transition: all 0.3s ease;
    height: 100%;
}

.welcome-stat-card:hover {
    border-color: rgba(255, 237, 0, 0.25);
    transform: translateY(-5px);
}

.welcome-stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 237, 0, 0.2) 0%, rgba(255, 195, 0, 0.1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.75rem;
    color: var(--sb-yellow);
}

.welcome-stat-value {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 2.75rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.welcome-stat-label {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--sb-text-muted);
    margin: 0;
}

/* ========================================
   Modules Section
   ======================================== */
.welcome-modules {
    background: linear-gradient(180deg, var(--sb-dark-1) 0%, var(--sb-dark-2) 100%);
    padding: 120px 0;
    position: relative;
}

.welcome-modules::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--sb-glass-border), transparent);
}

.welcome-module-tabs {
    display: flex;
    flex-wrap: nowrap;
    gap: 14px;
    margin-bottom: 55px;
    padding: 0;
    list-style: none;
    width: 100%;
}

.welcome-module-tabs .nav-item {
    flex: 1 1 0;
    min-width: 0;
}

.welcome-module-tab {
    width: 100%;
    padding: 22px 26px;
    background: var(--sb-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--sb-glass-border);
    border-radius: 18px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--sb-text-muted);
    cursor: pointer;
    transition: all 0.35s ease;
    display: flex;
    align-items: center;
    gap: 14px;
}

.welcome-module-tab:hover {
    background: rgba(255, 237, 0, 0.06);
    border-color: rgba(255, 237, 0, 0.25);
    color: #ffffff;
}

.welcome-module-tab.active {
    background: linear-gradient(135deg, rgba(255, 237, 0, 0.18) 0%, rgba(255, 195, 0, 0.12) 100%);
    border-color: var(--sb-yellow);
    color: var(--sb-yellow);
}

.welcome-module-tab iconify-icon {
    font-size: 1.6rem;
}

.welcome-module-content {
    background: var(--sb-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--sb-glass-border);
    border-radius: 28px;
    overflow: hidden;
}

.welcome-module-image {
    background: linear-gradient(135deg, rgba(255, 237, 0, 0.1) 0%, rgba(255, 195, 0, 0.05) 100%);
    padding: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 380px;
}

.welcome-module-image img {
    max-width: 100%;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 25px 50px -15px rgba(0, 0, 0, 0.45);
    transition: transform 0.4s ease;
}

.welcome-module-image img:hover {
    transform: scale(1.02);
}

.welcome-module-info {
    padding: 2.75rem;
}

.welcome-module-title {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 2.15rem;
    color: #ffffff;
    margin-bottom: 1.75rem;
}

.welcome-module-accordion .accordion-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--sb-glass-border);
}

.welcome-module-accordion .accordion-button {
    background: transparent;
    padding: 1.35rem 0;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: #ffffff;
    box-shadow: none;
}

.welcome-module-accordion .accordion-button::after {
    filter: brightness(0) invert(1);
}

.welcome-module-accordion .accordion-button:not(.collapsed) {
    color: var(--sb-yellow);
    background: transparent;
}

.welcome-module-accordion .accordion-button:not(.collapsed)::after {
    filter: brightness(0) saturate(100%) invert(91%) sepia(69%) saturate(1000%) hue-rotate(359deg) brightness(103%) contrast(106%);
}

.welcome-module-accordion .accordion-body {
    padding: 0 0 1.35rem 0;
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    color: var(--sb-text-muted);
    line-height: 1.75;
}

/* ========================================
   Marquee Section
   ======================================== */
.welcome-marquee {
    background: var(--sb-dark-2);
    padding: 70px 0;
    overflow: hidden;
}

.welcome-marquee-row {
    display: flex;
    gap: 22px;
    animation: marqueeScroll 45s linear infinite;
}

.welcome-marquee-row-reverse {
    animation-direction: reverse;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.welcome-marquee-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 28px;
    background: var(--sb-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--sb-glass-border);
    border-radius: 14px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.welcome-marquee-item:hover {
    border-color: rgba(255, 237, 0, 0.35);
    transform: scale(1.06);
}

.welcome-marquee-item iconify-icon {
    font-size: 1.4rem;
    color: var(--sb-yellow);
}

.welcome-marquee-item span {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
}

/* ========================================
   Card Section
   ======================================== */
.welcome-card-section {
    background: linear-gradient(135deg, var(--sb-dark-2) 0%, var(--sb-dark-1) 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.welcome-card-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(255, 237, 0, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.welcome-card-image {
    max-width: 100%;
    height: auto;
    border-radius: 28px;
    box-shadow: 0 50px 100px -25px rgba(0, 0, 0, 0.55);
    transition: transform 0.6s ease;
    position: relative;
    z-index: 2;
}

.welcome-card-image:hover {
    transform: scale(1.03) rotate(-1deg);
}

.welcome-card-content {
    position: relative;
    z-index: 2;
}

.welcome-card-logo {
    max-width: 220px;
    margin-bottom: 1.75rem;
}

.welcome-card-title {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: clamp(2.25rem, 4.5vw, 3.25rem);
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 1.75rem;
}

.welcome-card-description {
    font-family: 'Nunito', sans-serif;
    font-size: 1.2rem;
    color: var(--sb-text-muted);
    line-height: 1.8;
    margin-bottom: 2.25rem;
}

.welcome-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 14px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.35s ease;
}

.welcome-card-btn:hover {
    background: var(--sb-yellow);
    border-color: var(--sb-yellow);
    color: var(--sb-dark-2);
    transform: translateY(-4px);
}

/* ========================================
   Social Banner
   ======================================== */
.welcome-social-banner {
    background: linear-gradient(90deg, var(--sb-yellow) 0%, var(--sb-yellow-dark) 100%);
    padding: 28px 0;
    position: relative;
}

.welcome-social-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 33L15 25V8l15-8 15 8v17l-15 8z' fill='%23000' fill-opacity='0.05'/%3E%3C/svg%3E");
}

.welcome-social-avatars {
    display: flex;
    margin-right: 24px;
}

.welcome-social-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 3px solid var(--sb-yellow);
    margin-left: -14px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.welcome-social-avatar:first-child {
    margin-left: 0;
}

.welcome-social-avatar:hover {
    transform: scale(1.1);
    z-index: 10;
}

.welcome-social-text {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--sb-dark-2);
    margin: 0;
    position: relative;
    z-index: 1;
}

/* ========================================
   Testimonials Section
   ======================================== */
.welcome-testimonials {
    background: var(--sb-dark-1);
    padding: 120px 0;
    position: relative;
}

.welcome-testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--sb-glass-border), transparent);
}

.welcome-testimonial-card {
    background: var(--sb-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--sb-glass-border);
    border-radius: 28px;
    padding: 2.75rem;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.welcome-testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--sb-yellow), var(--sb-yellow-dark));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.welcome-testimonial-card:hover::before {
    opacity: 1;
}

.welcome-testimonial-card:hover {
    border-color: rgba(255, 237, 0, 0.25);
    transform: translateY(-8px);
}

.welcome-testimonial-quote {
    font-family: 'Nunito', sans-serif;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.85;
    margin-bottom: 2.25rem;
    font-style: italic;
}

.welcome-testimonial-author {
    display: flex;
    align-items: center;
    gap: 18px;
}

.welcome-testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--sb-yellow);
}

.welcome-testimonial-info h4 {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #ffffff;
    margin: 0 0 5px;
}

.welcome-testimonial-info p {
    font-family: 'Nunito', sans-serif;
    font-size: 0.9rem;
    color: var(--sb-text-muted);
    margin: 0;
}

.welcome-testimonial-icon {
    width: 52px;
    height: 52px;
    background: var(--sb-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
}

.welcome-testimonial-icon img {
    width: 26px;
    height: 26px;
}

/* ========================================
   FAQ Section
   ======================================== */
.welcome-faq {
    background: linear-gradient(180deg, var(--sb-dark-1) 0%, var(--sb-dark-2) 100%);
    padding: 120px 0;
    position: relative;
}

.welcome-faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--sb-glass-border), transparent);
}

.welcome-faq-accordion .accordion-item {
    background: var(--sb-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--sb-glass-border);
    border-radius: 18px;
    margin-bottom: 18px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.welcome-faq-accordion .accordion-item:hover {
    border-color: rgba(255, 237, 0, 0.2);
}

.welcome-faq-accordion .accordion-button {
    background: transparent;
    padding: 1.6rem 2.25rem;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: #ffffff;
    box-shadow: none;
}

.welcome-faq-accordion .accordion-button::after {
    filter: brightness(0) invert(1);
}

.welcome-faq-accordion .accordion-button:not(.collapsed) {
    color: var(--sb-yellow);
    background: rgba(255, 237, 0, 0.06);
}

.welcome-faq-accordion .accordion-button:not(.collapsed)::after {
    filter: brightness(0) saturate(100%) invert(91%) sepia(69%) saturate(1000%) hue-rotate(359deg) brightness(103%) contrast(106%);
}

.welcome-faq-accordion .accordion-body {
    padding: 0 2.25rem 1.6rem;
    font-family: 'Nunito', sans-serif;
    font-size: 1.05rem;
    color: var(--sb-text-muted);
    line-height: 1.85;
}

/* ========================================
   CTA Section
   ======================================== */
.welcome-cta {
    background: linear-gradient(135deg, var(--sb-yellow) 0%, var(--sb-yellow-dark) 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.welcome-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 33L15 25V8l15-8 15 8v17l-15 8z' fill='%23000' fill-opacity='0.05'/%3E%3C/svg%3E");
}

.welcome-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.welcome-cta-logo {
    width: 110px;
    margin-bottom: 2.25rem;
    animation: ctaBounce 2.5s ease-in-out infinite;
}

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

.welcome-cta-title {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: clamp(2.25rem, 4.5vw, 3.25rem);
    color: var(--sb-dark-2);
    line-height: 1.15;
    margin-bottom: 1.75rem;
}

.welcome-cta-description {
    font-family: 'Nunito', sans-serif;
    font-size: 1.2rem;
    color: var(--sb-dark-3);
    max-width: 750px;
    margin: 0 auto 2.5rem;
    line-height: 1.75;
}

.welcome-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 18px 38px;
    background: var(--sb-dark-1);
    border: none;
    border-radius: 14px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.welcome-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.welcome-cta-btn:hover::before {
    left: 100%;
}

.welcome-cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px -8px rgba(0, 0, 0, 0.35);
    color: #ffffff;
}

/* ========================================
   Responsive Adjustments
   ======================================== */
@media (max-width: 1200px) {
    .welcome-module-tabs {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .welcome-module-tabs .nav-item {
        flex: 1 1 calc(50% - 6px);
        min-width: 180px;
    }
}

@media (max-width: 992px) {
    .welcome-hero {
        padding: 120px 0 80px;
        text-align: center;
    }

    .welcome-hero-description {
        max-width: 100%;
        margin: 0 auto 1.5rem;
    }

    .welcome-hero-tagline {
        margin: 0 auto 2.5rem;
    }

    .welcome-hero-image {
        margin-top: 4rem;
    }

    .welcome-bee-1, .welcome-bee-2, .welcome-bee-3 {
        display: none;
    }

    .welcome-module-tabs {
        flex-wrap: wrap;
    }

    .welcome-module-tabs .nav-item {
        flex: 1 1 calc(50% - 6px);
        min-width: 160px;
    }

    .welcome-card-image {
        margin-bottom: 3rem;
    }
}

@media (max-width: 768px) {
    .welcome-hero-title {
        font-size: 2.25rem;
    }

    .welcome-section-title {
        font-size: 1.85rem;
    }

    .welcome-video {
        padding: 80px 0;
    }

    .welcome-video-container {
        border-radius: 18px;
    }

    .welcome-video-play-btn {
        width: 80px;
        height: 80px;
    }

    .welcome-video-play-btn iconify-icon {
        font-size: 2rem;
    }

    .welcome-feature-card {
        padding: 1.75rem;
    }

    .welcome-module-tabs .nav-item {
        flex: 1 1 100%;
    }

    .welcome-module-tab {
        justify-content: center;
    }

    .welcome-module-content {
        border-radius: 20px;
    }

    .welcome-module-info {
        padding: 2rem;
    }

    .welcome-testimonial-card {
        padding: 2rem;
    }

    .welcome-faq-accordion .accordion-button {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }

    .welcome-faq-accordion .accordion-body {
        padding: 0 1.5rem 1.25rem;
    }
}

@media (max-width: 576px) {
    .welcome-hero {
        padding: 100px 0 60px;
    }

    .welcome-hero-badge {
        padding: 8px 18px;
        font-size: 0.8rem;
    }

    .welcome-hero-cta {
        padding: 14px 28px;
        font-size: 0.95rem;
    }

    .welcome-video {
        padding: 60px 0;
    }

    .welcome-video-container {
        border-radius: 14px;
    }

    .welcome-video-play-btn {
        width: 65px;
        height: 65px;
    }

    .welcome-video-play-btn iconify-icon {
        font-size: 1.6rem;
    }

    .welcome-video-duration {
        bottom: 12px;
        right: 12px;
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .welcome-stat-card {
        padding: 1.5rem;
    }

    .welcome-stat-value {
        font-size: 2.25rem;
    }

    .welcome-social-avatar {
        width: 44px;
        height: 44px;
    }

    .welcome-social-text {
        font-size: 1rem;
    }
}
