/* ==================== CSS RESET & BASE ==================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --purple-400: #a855f7;
    --purple-500: #9333ea;
    --purple-600: #7c3aed;
    --purple-900: #4c1d95;
    --pink-400: #f472b6;
    --pink-500: #ec4899;
    --pink-600: #db2777;
    --pink-900: #831843;
    --yellow-400: #facc15;
    --orange-500: #f97316;
    --blue-400: #60a5fa;
    --cyan-500: #06b6d4;
    --rose-500: #f43f5e;
    --slate-900: #0f172a;
    --white: #ffffff;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-600: #4b5563;

    /* Fonts */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;

    /* Spacing */
    --section-padding: 6rem 1rem;
    --container-max: 1280px;
}

html {
    scroll-behavior: smooth;
}

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

/* ==================== MAIN CONTAINER ==================== */
.main-container {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--slate-900) 0%, var(--purple-900) 50%, var(--slate-900) 100%);
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1rem;
}

/* ==================== UTILITY CLASSES ==================== */
.gradient-text {
    background: linear-gradient(90deg, var(--white) 0%, #c4b5fd 50%, var(--white) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==================== ANIMATIONS ==================== */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse-glow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes blob-move {
    0%, 100% {
        transform: scale(1) translate(0, 0);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2) translate(50px, -30px);
        opacity: 0.5;
    }
}

@keyframes blob-move-reverse {
    0%, 100% {
        transform: scale(1.2) translate(0, 0);
        opacity: 0.3;
    }
    50% {
        transform: scale(1) translate(-50px, 30px);
        opacity: 0.5;
    }
}

@keyframes border-gradient {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in-left {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fade-in-right {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scale-in {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Animation Classes */
.fade-in-up {
    opacity: 0;
    animation: fade-in-up 0.8s ease forwards;
    animation-delay: var(--delay, 0s);
}

.fade-in-left {
    opacity: 0;
    animation: fade-in-left 0.8s ease forwards;
}

.fade-in-right {
    opacity: 0;
    animation: fade-in-right 0.8s ease forwards;
    animation-delay: 0.3s;
}

.scale-in {
    opacity: 0;
    animation: scale-in 0.6s ease forwards;
    animation-delay: 1.5s;
}

.float-animation {
    animation: float 6s ease-in-out infinite;
}

.spin {
    animation: spin-slow 20s linear infinite;
}

/* Scroll Animations */
.fade-in-up.visible {
    animation: fade-in-up 0.8s ease forwards;
}

/* ==================== BACKGROUND BLOBS ==================== */
.bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.blob-1 {
    top: 5rem;
    left: 2rem;
    width: 18rem;
    height: 18rem;
    background: rgba(168, 85, 247, 0.2);
    animation: blob-move 8s ease-in-out infinite;
}

.blob-2 {
    bottom: 5rem;
    right: 2rem;
    width: 24rem;
    height: 24rem;
    background: rgba(236, 72, 153, 0.2);
    animation: blob-move-reverse 8s ease-in-out infinite;
}

.blob-3, .blob-4, .blob-5, .blob-6, .blob-7, .blob-8 {
    width: 50rem;
    height: 50rem;
}

.blob-3 {
    top: 0;
    right: 25%;
    background: rgba(236, 72, 153, 0.1);
    animation: blob-move 12s ease-in-out infinite;
}

.blob-4 {
    bottom: 0;
    left: 25%;
    background: rgba(168, 85, 247, 0.1);
    animation: blob-move-reverse 12s ease-in-out infinite 1s;
}

.blob-5 {
    top: 25%;
    left: -5rem;
    width: 37rem;
    height: 37rem;
    background: linear-gradient(to right, rgba(168, 85, 247, 0.2), rgba(236, 72, 153, 0.2));
    animation: blob-move 15s ease-in-out infinite;
}

.blob-6 {
    bottom: 25%;
    right: -5rem;
    width: 37rem;
    height: 37rem;
    background: linear-gradient(to left, rgba(236, 72, 153, 0.2), rgba(168, 85, 247, 0.2));
    animation: blob-move-reverse 15s ease-in-out infinite;
}

.blob-7 {
    top: 25%;
    left: 0;
    width: 24rem;
    height: 24rem;
    background: rgba(236, 72, 153, 0.1);
    animation: blob-move 20s ease-in-out infinite;
}

.blob-8 {
    bottom: 25%;
    right: 0;
    width: 24rem;
    height: 24rem;
    background: rgba(168, 85, 247, 0.1);
    animation: blob-move-reverse 20s ease-in-out infinite;
}

/* ==================== SECTION HEADER ==================== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.header-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 6rem;
    height: 6rem;
    background: linear-gradient(135deg, var(--purple-500), var(--pink-500));
    border-radius: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(168, 85, 247, 0.5);
    color: var(--white);
    position: relative;
}

.header-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--purple-500), var(--pink-500));
    border-radius: 1.5rem;
    filter: blur(20px);
    opacity: 0.5;
}

.section-badge {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: linear-gradient(90deg, var(--purple-500), var(--pink-500));
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    position: relative;
}

.section-badge.glow::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--purple-500), var(--pink-500));
    border-radius: 9999px;
    filter: blur(20px);
    opacity: 0.5;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #c4b5fd;
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.8;
}

/* ==================== HERO SECTION ==================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 2rem 1rem;
}

.hero-bg-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-content {
    color: var(--white);
    space-y: 1.5rem;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(90deg, var(--purple-500), var(--pink-500));
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #c4b5fd;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--gray-300);
    max-width: 36rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding-top: 1.5rem;
}

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

.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    color: var(--yellow-400);
}

.stat-icon.purple { color: var(--purple-400); }
.stat-icon.pink { color: var(--pink-400); }

.stat-number {
    font-size: 1.875rem;
    font-weight: 700;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-400);
}

/* Hero Image */
.hero-image-wrapper {
    position: relative;
}

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

.hero-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

@media (min-width: 1024px) {
    .hero-image {
        height: 600px;
    }
}

.hero-image-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(76, 29, 149, 0.5), transparent);
    border-radius: 1.5rem;
    z-index: 10;
    pointer-events: none;
}

.hero-floating-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: var(--white);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    text-align: center;
    z-index: 20;
}

.badge-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--purple-600), var(--pink-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.badge-text {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 500;
}

.hero-decor {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
}

.decor-1 {
    top: 2.5rem;
    left: -2.5rem;
    width: 10rem;
    height: 10rem;
    background: rgba(168, 85, 247, 0.3);
}

.decor-2 {
    bottom: 2.5rem;
    right: -2.5rem;
    width: 10rem;
    height: 10rem;
    background: rgba(236, 72, 153, 0.3);
}

/* ==================== VIDEO SECTION ==================== */
.video-section {
    position: relative;
    padding: 8rem 1rem;
    overflow: hidden;
}

.video-bg-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.video-content {
    max-width: 72rem;
    margin: 0 auto;
}

.video-container {
    position: relative;
    margin-top: 4rem;
}

.video-wrapper {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.video-thumbnail {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    object-position: center center;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.2) 100%);
    pointer-events: none; /* Allow clicks to pass through to button */
}

.video-border-animated {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--purple-500), var(--pink-500), var(--purple-500));
    background-size: 200% 100%;
    animation: border-gradient 3s linear infinite;
    padding: 4px;
    border-radius: 1.5rem;
    z-index: -1;
    pointer-events: none; /* Allow clicks to pass through */
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 20;
    -webkit-tap-highlight-color: transparent; /* Remove tap highlight on mobile */
    touch-action: manipulation; /* Improve touch response */
}

.play-btn-inner {
    position: relative;
    width: 7rem;
    height: 7rem;
    background: linear-gradient(135deg, var(--purple-500), var(--pink-500));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 25px 50px -12px rgba(168, 85, 247, 0.5);
    color: var(--white);
    transition: transform 0.3s, box-shadow 0.3s;
}

.play-btn-inner svg {
    margin-left: 4px;
}

.video-play-btn:hover .play-btn-inner {
    transform: scale(1.1);
    box-shadow: 0 25px 50px -12px rgba(168, 85, 247, 0.7);
}

.play-btn-pulse {
    position: absolute;
    width: 12rem;
    height: 12rem;
    top: 50%;
    left: 50%;
    margin-top: -6rem;
    margin-left: -6rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: pulse-glow 2s ease-out infinite;
    pointer-events: none; /* Allow clicks to pass through */
}

.play-btn-pulse.delay {
    animation-delay: 0.5s;
    pointer-events: none; /* Allow clicks to pass through */
}

.video-info-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    z-index: 5; /* Lower than play button z-index */
}

.video-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.video-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.video-desc {
    color: var(--gray-300);
    font-size: 1.125rem;
}

.video-info-right {
    display: none;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@media (min-width: 1024px) {
    .video-info-right {
        display: flex;
    }
}

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

.video-stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
}

.video-stat-label {
    font-size: 0.75rem;
    color: var(--gray-300);
}

.video-stat-divider {
    width: 1px;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.2);
}

.video-decor {
    position: absolute;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    z-index: -1;
    opacity: 0.8;
}

.decor-top-left {
    top: -1.5rem;
    left: -1.5rem;
    width: 6rem;
    height: 6rem;
    background: linear-gradient(135deg, var(--purple-500), var(--purple-600));
}

.decor-bottom-right {
    bottom: -1.5rem;
    right: -1.5rem;
    width: 8rem;
    height: 8rem;
    background: linear-gradient(135deg, var(--pink-500), var(--pink-600));
}

.video-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
}

.video-tag {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    font-weight: 500;
    transition: background 0.3s;
}

.video-tag:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ==================== ABOUT SECTION ==================== */
.about-section {
    position: relative;
    padding: var(--section-padding);
    overflow: hidden;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

.feature-card:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.15);
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--purple-500), var(--pink-500));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.feature-title {
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-desc {
    color: var(--gray-300);
    line-height: 1.7;
}

.partnership-card {
    background: linear-gradient(135deg, rgba(76, 29, 149, 0.5), rgba(131, 24, 67, 0.5));
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .partnership-card {
        grid-template-columns: 1fr 1fr;
    }
}

.partnership-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.partnership-text {
    font-size: 1.125rem;
    color: var(--gray-200);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.partnership-image {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
}

.partnership-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.partnership-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(76, 29, 149, 0.5), transparent);
}

/* ==================== IMAGE SLIDER SECTION ==================== */
.slider-section {
    position: relative;
    padding: var(--section-padding);
    overflow: hidden;
}

.slider-bg-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.image-slider {
    max-width: 80rem;
    margin: 0 auto;
    overflow: visible;
}

.slider-track {
    position: relative;
    overflow: visible;
}

.slide {
    display: none;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem;
}

@media (min-width: 480px) {
    .slide {
        gap: 2rem;
        padding: 1.5rem;
    }
}

@media (min-width: 768px) {
    .slide {
        gap: 2.5rem;
        padding: 2rem;
    }
}

@media (min-width: 1024px) {
    .slide {
        gap: 3rem;
        padding: 1rem;
    }
}

.slide.active {
    display: grid;
    grid-template-columns: 1fr;
    animation: fade-in-up 0.6s ease;
}

@media (min-width: 1024px) {
    .slide.active {
        grid-template-columns: 1fr 1fr;
    }
}

.slide-image-wrapper {
    position: relative;
    overflow: visible;
    padding: 1.5rem;
    margin: 0.5rem;
}

@media (min-width: 480px) {
    .slide-image-wrapper {
        padding: 1.5rem;
        margin: 0.75rem;
    }
}

@media (min-width: 768px) {
    .slide-image-wrapper {
        padding: 2rem;
        margin: 1rem;
    }
}

@media (min-width: 1024px) {
    .slide-image-wrapper {
        margin: 0;
    }
}

.slide-image-container {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

@media (min-width: 480px) {
    .slide-image-container {
        border-radius: 1.25rem;
    }
}

@media (min-width: 768px) {
    .slide-image-container {
        border-radius: 1.5rem;
    }
}

.slide-image {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.slide-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(76, 29, 149, 0.6), transparent);
}

.slide-floating-icon {
    position: absolute;
    width: 2.5rem;
    height: 2.5rem;
    min-width: 2.5rem;
    min-height: 2.5rem;
    border-radius: 0.625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 30px -8px rgba(0, 0, 0, 0.25);
    color: var(--white);
    z-index: 20;
    flex-shrink: 0;
    overflow: visible;
}

.slide-floating-icon svg {
    width: 16px;
    height: 16px;
    min-width: 16px;
    min-height: 16px;
    flex-shrink: 0;
}

@media (min-width: 480px) {
    .slide-floating-icon {
        width: 3rem;
        height: 3rem;
        min-width: 3rem;
        min-height: 3rem;
        border-radius: 0.75rem;
        box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.25);
    }

    .slide-floating-icon svg {
        width: 20px;
        height: 20px;
        min-width: 20px;
        min-height: 20px;
    }
}

@media (min-width: 768px) {
    .slide-floating-icon {
        width: 3.5rem;
        height: 3.5rem;
        min-width: 3.5rem;
        min-height: 3.5rem;
        border-radius: 0.875rem;
    }

    .slide-floating-icon svg {
        width: 22px;
        height: 22px;
        min-width: 22px;
        min-height: 22px;
    }
}

@media (min-width: 1024px) {
    .slide-floating-icon {
        width: 4rem;
        height: 4rem;
        min-width: 4rem;
        min-height: 4rem;
        border-radius: 1rem;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    }

    .slide-floating-icon svg {
        width: 24px;
        height: 24px;
        min-width: 24px;
        min-height: 24px;
    }
}

.slide-floating-icon.star {
    top: -0.25rem;
    right: -0.25rem;
    background: linear-gradient(135deg, var(--yellow-400), var(--orange-500));
    animation: float 4s ease-in-out infinite;
}

.slide-floating-icon.heart {
    bottom: -0.25rem;
    left: -0.25rem;
    background: linear-gradient(135deg, var(--pink-500), var(--rose-500));
    animation: float 4s ease-in-out infinite 1s;
}

@media (min-width: 480px) {
    .slide-floating-icon.star {
        top: -0.5rem;
        right: -0.5rem;
    }

    .slide-floating-icon.heart {
        bottom: -0.5rem;
        left: -0.5rem;
    }
}

@media (min-width: 768px) {
    .slide-floating-icon.star {
        top: -0.75rem;
        right: -0.75rem;
    }

    .slide-floating-icon.heart {
        bottom: -0.75rem;
        left: -0.75rem;
    }
}

@media (min-width: 1024px) {
    .slide-floating-icon.star {
        top: -1.5rem;
        right: -1.5rem;
    }

    .slide-floating-icon.heart {
        bottom: -1.5rem;
        left: -1.5rem;
    }
}

.slide-content {
    padding: 2rem 0;
}

.slide-category {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(90deg, rgba(168, 85, 247, 0.2), rgba(236, 72, 153, 0.2));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #c4b5fd;
    margin-bottom: 2rem;
}

.slide-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.slide-description {
    font-size: 1.25rem;
    color: var(--gray-300);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.slide-stats {
    display: flex;
    gap: 2rem;
    padding-top: 1.5rem;
    margin-bottom: 2rem;
}

.slide-stat-item {
    text-align: left;
}

.slide-stat-num {
    font-family: var(--font-display);
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.slide-stat-label {
    font-size: 0.875rem;
    color: #c4b5fd;
}

.slide-btn {
    display: inline-block;
    text-decoration: none;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--purple-600), var(--pink-600));
    color: var(--white);
    border: none;
    border-radius: 9999px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 25px 50px -12px rgba(168, 85, 247, 0.5);
    transition: transform 0.3s, box-shadow 0.3s;
}

.slide-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(168, 85, 247, 0.7);
}

/* Slider Navigation */
/* Slider Navigation */
.slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

@media (min-width: 480px) {
    .slider-nav {
        gap: 1rem;
        margin-top: 2rem;
    }
}

@media (min-width: 768px) {
    .slider-nav {
        gap: 1.25rem;
        margin-top: 3rem;
    }
}

@media (min-width: 1024px) {
    .slider-nav {
        gap: 1.5rem;
        margin-top: 4rem;
    }
}

.slider-btn {
    width: 2.75rem;
    height: 2.75rem;
    min-width: 2.75rem;
    min-height: 2.75rem;
    background: linear-gradient(135deg, var(--purple-500), var(--pink-500));
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    box-shadow: 0 8px 20px -4px rgba(168, 85, 247, 0.5);
    transition: transform 0.3s, box-shadow 0.3s;
    flex-shrink: 0;
}

.slider-btn svg {
    width: 20px;
    height: 20px;
}

@media (min-width: 480px) {
    .slider-btn {
        width: 3rem;
        height: 3rem;
        min-width: 3rem;
        min-height: 3rem;
    }

    .slider-btn svg {
        width: 24px;
        height: 24px;
    }
}

@media (min-width: 768px) {
    .slider-btn {
        width: 3.5rem;
        height: 3.5rem;
        min-width: 3.5rem;
        min-height: 3.5rem;
        box-shadow: 0 10px 25px -5px rgba(168, 85, 247, 0.5);
    }

    .slider-btn svg {
        width: 28px;
        height: 28px;
    }
}

@media (min-width: 1024px) {
    .slider-btn {
        width: 4rem;
        height: 4rem;
        min-width: 4rem;
        min-height: 4rem;
    }

    .slider-btn svg {
        width: 32px;
        height: 32px;
    }
}

.slider-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px -5px rgba(168, 85, 247, 0.7);
}

.slider-counter {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 1rem;
    font-weight: 700;
    white-space: nowrap;
}

@media (min-width: 480px) {
    .slider-counter {
        padding: 0.5rem 1.25rem;
        font-size: 1.125rem;
    }
}

@media (min-width: 768px) {
    .slider-counter {
        padding: 0.625rem 1.375rem;
        font-size: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .slider-counter {
        padding: 0.75rem 1.5rem;
        font-size: 1.5rem;
    }
}

/* Slider Thumbnails */
.slider-thumbnails {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-start;
    margin-top: 1.5rem;
    overflow-x: auto;
    padding: 0.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.slider-thumbnails::-webkit-scrollbar {
    display: none;
}

@media (min-width: 480px) {
    .slider-thumbnails {
        gap: 0.625rem;
        margin-top: 2rem;
        justify-content: center;
        padding: 0.5rem 0;
    }
}

@media (min-width: 768px) {
    .slider-thumbnails {
        gap: 0.75rem;
        margin-top: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .slider-thumbnails {
        gap: 1rem;
        margin-top: 3rem;
        padding-bottom: 1rem;
    }
}

.slider-thumbnail {
    flex-shrink: 0;
    width: 3.5rem;
    height: 3.5rem;
    min-width: 3.5rem;
    min-height: 3.5rem;
    border-radius: 0.625rem;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.6;
    transition: opacity 0.3s, transform 0.3s, border-color 0.3s;
}

@media (min-width: 480px) {
    .slider-thumbnail {
        width: 4rem;
        height: 4rem;
        min-width: 4rem;
        min-height: 4rem;
        border-radius: 0.75rem;
        border-width: 3px;
    }
}

@media (min-width: 768px) {
    .slider-thumbnail {
        width: 4.5rem;
        height: 4.5rem;
        min-width: 4.5rem;
        min-height: 4.5rem;
        border-radius: 0.875rem;
    }
}

@media (min-width: 1024px) {
    .slider-thumbnail {
        width: 5rem;
        height: 5rem;
        min-width: 5rem;
        min-height: 5rem;
        border-radius: 1rem;
        border-width: 4px;
        opacity: 0.5;
    }
}

.slider-thumbnail:hover {
    opacity: 1;
    transform: scale(1.1);
}

.slider-thumbnail.active {
    opacity: 1;
    border-color: var(--purple-500);
    box-shadow: 0 8px 20px -4px rgba(168, 85, 247, 0.5);
}

@media (min-width: 768px) {
    .slider-thumbnail.active {
        box-shadow: 0 10px 25px -5px rgba(168, 85, 247, 0.5);
    }
}

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

/* ==================== GALLERY SECTION ==================== */
.gallery-section {
    position: relative;
    padding: var(--section-padding);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 1rem;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(76, 29, 149, 0.8) 0%, rgba(76, 29, 149, 0.4) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay h4 {
    font-weight: 600;
    font-size: 1.125rem;
}

.gallery-item-border {
    position: absolute;
    inset: 0;
    border: 4px solid var(--purple-500);
    border-radius: 1rem;
    opacity: 0;
    transition: opacity 0.3s;
    animation: pulse-glow 2s ease-in-out infinite;
}

.gallery-item:hover .gallery-item-border {
    opacity: 1;
}

/* ==================== VIDEO GALLERY SECTION ==================== */
.video-gallery-section {
    position: relative;
    padding: var(--section-padding);
    overflow: hidden;
}

.video-gallery-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.video-gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .video-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .video-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.video-card {
    cursor: default;
}

.video-card-thumbnail {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.video-card-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s;
}

.video-card:hover .video-card-thumbnail img {
    transform: scale(1.1);
}

.video-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    pointer-events: none; /* Allow clicks to pass through */
}

.video-card-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    width: 5rem;
    height: 5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple-600);
    cursor: pointer;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s, background 0.3s, color 0.3s;
    opacity: 1;
    z-index: 10;
    -webkit-tap-highlight-color: transparent; /* Remove tap highlight on mobile */
    touch-action: manipulation; /* Improve touch response */
}

.video-card-play svg {
    margin-left: 4px;
}

.video-card:hover .video-card-play,
.video-card:active .video-card-play,
.video-card-play:hover,
.video-card-play:active {
    transform: translate(-50%, -50%) scale(1.1);
    background: linear-gradient(135deg, var(--purple-500), var(--pink-500));
    color: var(--white);
    opacity: 1;
}

.video-duration {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.video-card-content {
    padding: 1.5rem 0.5rem;
}

.video-card-content h4 {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.video-card:hover .video-card-content h4 {
    color: #c4b5fd;
}

.video-card-content p {
    color: var(--gray-300);
    font-size: 0.875rem;
}

/* Video Stats Card */
.video-stats-card {
    margin-top: 2.5rem;
    background: linear-gradient(90deg, rgba(76, 29, 149, 0.3), rgba(131, 24, 67, 0.3), rgba(76, 29, 149, 0.3));
    backdrop-filter: blur(20px);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@media (min-width: 480px) {
    .video-stats-card {
        margin-top: 3rem;
        border-radius: 1.25rem;
        padding: 2rem;
    }
}

@media (min-width: 768px) {
    .video-stats-card {
        margin-top: 4rem;
        border-radius: 1.5rem;
        padding: 3rem;
    }
}

@media (min-width: 1024px) {
    .video-stats-card {
        margin-top: 5rem;
    }
}

.video-stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    text-align: center;
}

@media (min-width: 480px) {
    .video-stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

@media (min-width: 768px) {
    .video-stats-grid {
        gap: 2rem;
    }
}

.video-stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 480px) {
    .video-stat-item {
        padding: 0.5rem;
        background: transparent;
        border-radius: 0;
        border: none;
    }
}

.video-stat-number {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

@media (min-width: 480px) {
    .video-stat-number {
        font-size: 2rem;
        margin-bottom: 0.375rem;
    }
}

@media (min-width: 768px) {
    .video-stat-number {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }
}

@media (min-width: 1024px) {
    .video-stat-number {
        font-size: 3rem;
    }
}

.video-stat-text {
    color: #c4b5fd;
    font-size: 0.75rem;
}

@media (min-width: 480px) {
    .video-stat-text {
        font-size: 0.8125rem;
    }
}

@media (min-width: 768px) {
    .video-stat-text {
        font-size: 0.875rem;
    }
}

@media (min-width: 1024px) {
    .video-stat-text {
        font-size: 1rem;
    }
}

/* ==================== ACHIEVEMENTS SECTION ==================== */
.achievements-section {
    position: relative;
    padding: var(--section-padding);
}

.achievements-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 5rem;
}

@media (min-width: 480px) {
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 768px) {
    .achievements-grid {
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .achievements-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.achievement-card {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1.25rem;
    padding: 1.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s;
}

@media (min-width: 480px) {
    .achievement-card {
        border-radius: 1.5rem;
        padding: 2rem;
    }
}

.achievement-card:hover {
    transform: scale(1.05) translateY(-10px);
    border-color: rgba(255, 255, 255, 0.4);
}

.achievement-bg {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s;
}

.achievement-card:hover .achievement-bg {
    opacity: 0.2;
}

.achievement-bg.yellow { background: linear-gradient(135deg, var(--yellow-400), var(--orange-500)); }
.achievement-bg.purple { background: linear-gradient(135deg, var(--purple-400), var(--pink-500)); }
.achievement-bg.blue { background: linear-gradient(135deg, var(--blue-400), var(--cyan-500)); }
.achievement-bg.pink { background: linear-gradient(135deg, var(--pink-400), var(--rose-500)); }

.achievement-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.achievement-icon svg {
    width: 24px;
    height: 24px;
}

@media (min-width: 480px) {
    .achievement-icon {
        width: 4rem;
        height: 4rem;
        border-radius: 1rem;
        margin: 0 auto 1.25rem;
    }

    .achievement-icon svg {
        width: 32px;
        height: 32px;
    }
}

@media (min-width: 768px) {
    .achievement-icon {
        width: 5rem;
        height: 5rem;
        margin: 0 auto 1.5rem;
    }

    .achievement-icon svg {
        width: 40px;
        height: 40px;
    }
}

.achievement-icon.yellow { background: linear-gradient(135deg, var(--yellow-400), var(--orange-500)); }
.achievement-icon.purple { background: linear-gradient(135deg, var(--purple-400), var(--pink-500)); }
.achievement-icon.blue { background: linear-gradient(135deg, var(--blue-400), var(--cyan-500)); }
.achievement-icon.pink { background: linear-gradient(135deg, var(--pink-400), var(--rose-500)); }

.achievement-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 480px) {
    .achievement-number {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }
}

@media (min-width: 768px) {
    .achievement-number {
        font-size: 3rem;
    }
}

.achievement-label {
    color: var(--gray-300);
    position: relative;
    z-index: 1;
    font-size: 0.875rem;
}

@media (min-width: 480px) {
    .achievement-label {
        font-size: 1rem;
    }
}

/* Excellence Card */
.excellence-card {
    position: relative;
    background: linear-gradient(90deg, rgba(147, 51, 234, 0.2), rgba(236, 72, 153, 0.2), rgba(147, 51, 234, 0.2));
    backdrop-filter: blur(20px);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

@media (min-width: 480px) {
    .excellence-card {
        border-radius: 1.25rem;
        padding: 2rem;
    }
}

@media (min-width: 768px) {
    .excellence-card {
        border-radius: 1.5rem;
        padding: 3rem;
    }
}

.excellence-bg-left,
.excellence-bg-right {
    position: absolute;
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    filter: blur(60px);
}

@media (min-width: 480px) {
    .excellence-bg-left,
    .excellence-bg-right {
        width: 12rem;
        height: 12rem;
        filter: blur(70px);
    }
}

@media (min-width: 768px) {
    .excellence-bg-left,
    .excellence-bg-right {
        width: 16rem;
        height: 16rem;
        filter: blur(80px);
    }
}

.excellence-bg-left {
    top: 0;
    right: 0;
    background: rgba(168, 85, 247, 0.2);
}

.excellence-bg-right {
    bottom: 0;
    left: 0;
    background: rgba(236, 72, 153, 0.2);
}

.excellence-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 56rem;
    margin: 0 auto;
}

.excellence-icon {
    display: inline-flex;
    width: 4.5rem;
    height: 4.5rem;
    min-width: 4.5rem;
    min-height: 4.5rem;
    background: linear-gradient(135deg, var(--yellow-400), var(--orange-500));
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--white);
    flex-shrink: 0;
    overflow: visible;
}

.excellence-icon svg {
    width: 28px;
    height: 28px;
    min-width: 28px;
    min-height: 28px;
    flex-shrink: 0;
}

@media (min-width: 480px) {
    .excellence-icon {
        width: 5rem;
        height: 5rem;
        min-width: 5rem;
        min-height: 5rem;
        margin-bottom: 1.25rem;
    }

    .excellence-icon svg {
        width: 36px;
        height: 36px;
        min-width: 36px;
        min-height: 36px;
    }
}

@media (min-width: 768px) {
    .excellence-icon {
        width: 6rem;
        height: 6rem;
        min-width: 6rem;
        min-height: 6rem;
        margin-bottom: 1.5rem;
    }

    .excellence-icon svg {
        width: 48px;
        height: 48px;
        min-width: 48px;
        min-height: 48px;
    }
}

.excellence-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

@media (min-width: 480px) {
    .excellence-title {
        font-size: 1.875rem;
        margin-bottom: 1.25rem;
    }
}

@media (min-width: 768px) {
    .excellence-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
}

.excellence-text {
    font-size: 1rem;
    color: var(--gray-200);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .excellence-text {
        font-size: 1.25rem;
        margin-bottom: 2rem;
        line-height: 1.8;
    }
}

.excellence-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

@media (min-width: 480px) {
    .excellence-tags {
        gap: 0.75rem;
    }
}

@media (min-width: 768px) {
    .excellence-tags {
        gap: 1rem;
    }
}

.excellence-tag {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    font-size: 0.75rem;
}

@media (min-width: 480px) {
    .excellence-tag {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }
}

@media (min-width: 768px) {
    .excellence-tag {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

/* ==================== TESTIMONIAL SECTION ==================== */
.testimonial-section {
    position: relative;
    padding: var(--section-padding);
    overflow: hidden;
}

.testimonial-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(76, 29, 149, 0.2), transparent);
}

.testimonial-slider {
    max-width: 56rem;
    margin: 0 auto;
    padding-bottom: 4rem;
}

.testimonial-track {
    position: relative;
    overflow: hidden;
}

.testimonial-slide {
    display: none;
    padding: 1rem;
}

.testimonial-slide.active {
    display: block;
    animation: fade-in-up 0.6s ease;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 1.5rem;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.testimonial-icon {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, var(--purple-500), var(--pink-500));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--white);
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 2rem;
}

.testimonial-stars svg {
    width: 2rem;
    height: 2rem;
    color: var(--yellow-400);
    fill: currentColor;
}

.testimonial-quote {
    font-size: 1.5rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.testimonial-role {
    color: #c4b5fd;
}

/* Testimonial Dots */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.testimonial-dot {
    width: 0.75rem;
    height: 0.75rem;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.testimonial-dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

.testimonial-dot.active {
    background: var(--white);
    transform: scale(1.2);
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding-top: 4rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.125rem;
    color: #c4b5fd;
    max-width: 36rem;
    margin: 0 auto 2rem;
}

.cta-button {
    display: inline-block;
    text-decoration: none;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--purple-600), var(--pink-600));
    color: var(--white);
    border: none;
    border-radius: 9999px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 25px 50px -12px rgba(168, 85, 247, 0.5);
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(168, 85, 247, 0.7);
}

/* ==================== FLOATING NEXT AMBASSADOR BUTTON ==================== */
.floating-next-btn {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--purple-600), var(--pink-600));
    color: var(--white);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 9999px 0 0 9999px;
    z-index: 900;
    overflow: hidden;
    box-shadow: -4px 0 20px rgba(168, 85, 247, 0.4);
    transition: padding-right 0.3s, box-shadow 0.3s;
    writing-mode: horizontal-tb;
}

.floating-next-btn:hover {
    padding-right: 1.75rem;
    box-shadow: -4px 0 30px rgba(168, 85, 247, 0.7);
}

.floating-btn-text {
    position: relative;
    z-index: 2;
    white-space: nowrap;
}

.floating-next-btn svg {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.floating-wave {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: rgba(255, 255, 255, 0.15);
    animation: floating-wave-anim 2s ease-in-out infinite;
}

.floating-wave.wave-2 {
    animation-delay: 0.5s;
    background: rgba(255, 255, 255, 0.1);
}

.floating-wave.wave-3 {
    animation-delay: 1s;
    background: rgba(255, 255, 255, 0.08);
}

@keyframes floating-wave-anim {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.15);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

@media (max-width: 640px) {
    .floating-next-btn {
        padding: 0.6rem 0.75rem;
        font-size: 0;
        border-radius: 50% 0 0 50%;
        width: 3rem;
        height: 3rem;
        justify-content: center;
    }

    .floating-btn-text {
        display: none;
    }

    .floating-next-btn svg {
        width: 22px;
        height: 22px;
    }

    .floating-next-btn:hover {
        padding-right: 0.75rem;
    }
}

/* ==================== FOOTER ==================== */
.site-footer {
    padding: 3rem 1rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--purple-400), var(--pink-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-role {
    color: #a78bfa;
    font-size: 0.95rem;
    margin-top: 0.25rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    color: #c4b5fd;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.3s, color 0.3s, transform 0.3s;
}

.footer-social-link:hover {
    background: rgba(168, 85, 247, 0.2);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #6b7280;
    font-size: 0.85rem;
}

@media (max-width: 640px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-social {
        flex-direction: column;
        width: 100%;
    }

    .footer-social-link {
        justify-content: center;
    }
}

/* ==================== LIGHTBOX ==================== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    transition: color 0.3s;
}

.lightbox-close:hover {
    color: var(--purple-400);
}

.lightbox img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 1rem;
    transform: scale(0.8);
    transition: transform 0.3s;
}

.lightbox.active img {
    transform: scale(1);
}

.lightbox-caption {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
}

/* ==================== VIDEO MODAL ==================== */
.video-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 3rem;
    height: 3rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    z-index: 10;
}

.video-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1) rotate(90deg);
}

.video-modal-content {
    width: 100%;
    max-width: 72rem;
    transform: scale(0.8);
    transition: transform 0.3s;
}

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

.video-modal-player {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, var(--purple-900), var(--pink-900));
    aspect-ratio: 16/9;
}

.video-modal-player iframe,
.video-modal-player video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

.video-modal-info {
    margin-top: 1.5rem;
    text-align: center;
}

.video-modal-info h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.video-modal-info p {
    color: #c4b5fd;
    font-size: 1.125rem;
}

/* ==================== SCROLLBAR ==================== */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--slate-900);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--purple-500), var(--pink-500));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--purple-400), var(--pink-400));
}

/* ==================== RESPONSIVE ADJUSTMENTS ==================== */
@media (max-width: 768px) {
    .hero-floating-badge {
        bottom: -1rem;
        right: -0.5rem;
        padding: 1rem;
    }

    .badge-number {
        font-size: 2rem;
    }

    .video-info-bar {
        padding: 1rem;
        pointer-events: none; /* Allow clicks to pass through on mobile */
    }

    .video-info-bar * {
        pointer-events: auto; /* Re-enable for child elements that need it */
    }

    .partnership-card {
        padding: 1.5rem;
        gap: 2rem;
    }

    .partnership-title {
        font-size: 1.75rem;
    }

    .partnership-text {
        font-size: 1rem;
    }

    .partnership-image {
        order: -1; /* Show image first on mobile */
    }

    .partnership-image img {
        aspect-ratio: 3/4;
        object-position: center top;
    }

    .testimonial-card {
        padding: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    /* Mobile Video Play Button Fixes */
    .video-play-btn {
        z-index: 30;
    }

    .play-btn-inner {
        width: 5rem;
        height: 5rem;
    }

    .play-btn-inner svg {
        width: 36px;
        height: 36px;
    }

    .play-btn-pulse {
        width: 8rem;
        height: 8rem;
        margin-top: -4rem;
        margin-left: -4rem;
    }

    /* Video Card Mobile Fixes */
    .video-card-play {
        width: 4rem;
        height: 4rem;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
        z-index: 15;
    }

    .video-card-play svg {
        width: 28px;
        height: 28px;
    }

    .video-card-thumbnail {
        position: relative;
    }

    /* Ensure overlays don't block mobile taps */
    .video-card-overlay,
    .video-overlay,
    .video-border-animated {
        pointer-events: none !important;
    }

    /* Video modal mobile close button */
    .video-modal-close {
        top: 1rem;
        right: 1rem;
        width: 2.5rem;
        height: 2.5rem;
        z-index: 1001;
    }

    .lightbox-close {
        top: 1rem;
        right: 1rem;
        z-index: 1001;
    }
}
