/* SuperKonnected Website Styles */

:root {
    /* Brand Colors */
    --primary-blue: #0A2342;
    --primary-orange: #FF6B35;
    --gradient-primary: linear-gradient(135deg, #0A2342 0%, #FF6B35 20%, #FFB366 70%, #FFC599 100%);
    --gradient-orange: linear-gradient(135deg, #FF6B35 0%, #FFB366 50%, #FFC599 80%, #FFD1B3 100%);
    --gradient-blue: linear-gradient(135deg, #0A2342 0%, #FF6B35 30%, #FFB366 100%);
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --black: #000000;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Poppins', sans-serif;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 80px 0;
    --card-padding: 2rem;
    --border-radius: 16px;
    --border-radius-small: 8px;
    
    /* Shadows */
    --shadow-small: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-large: 0 16px 48px rgba(0, 0, 0, 0.15);
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-backdrop: blur(20px);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--gray-700);
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
    width: 100%;
    max-width: 100vw;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Dark Mode Variables */
[data-theme="dark"] {
    /* Brand Colors blijven hetzelfde in dark mode */
    --primary-blue: #0A2342;
    --primary-orange: #FF6B35;
    --gradient-primary: linear-gradient(135deg, #0A2342 0%, #FF6B35 20%, #FFB366 70%, #FFC599 100%);
    --gradient-orange: linear-gradient(135deg, #FF6B35 0%, #FFB366 50%, #FFC599 80%, #FFD1B3 100%);
    --gradient-blue: linear-gradient(135deg, #0A2342 0%, #FF6B35 30%, #FFB366 100%);
    
    /* Alleen grays worden aangepast */
    --gray-50: #111827;
    --gray-100: #1F2937;
    --gray-200: #374151;
    --gray-300: #4B5563;
    --gray-400: #6B7280;
    --gray-500: #9CA3AF;
    --gray-600: #D1D5DB;
    --gray-700: #E5E7EB;
    --gray-800: #F3F4F6;
    --gray-900: #F9FAFB;
    --white: #FFFFFF;
    --black: #000000;
}

[data-theme="dark"] body {
    background-color: var(--gray-50);
    color: var(--gray-700);
}

/* Dark mode specific styles */
[data-theme="dark"] .navbar {
    background-color: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(10px);
}

[data-theme="dark"] .nav-link {
    color: var(--gray-300);
}

[data-theme="dark"] .nav-link:hover {
    color: var(--primary-orange);
}

[data-theme="dark"] .section-title {
    color: var(--gray-100);
}

[data-theme="dark"] .section-subtitle {
    color: var(--gray-400);
}

[data-theme="dark"] .pricing-card {
    background-color: var(--gray-100);
    border-color: var(--gray-200);
}

[data-theme="dark"] .pricing-card:hover {
    background-color: var(--gray-200);
    border-color: var(--primary-orange);
}

[data-theme="dark"] .card-title {
    color: var(--gray-100);
}

[data-theme="dark"] .card-subtitle {
    color: var(--gray-400);
}

[data-theme="dark"] .card-features .feature-item {
    color: var(--gray-300);
}

[data-theme="dark"] .episode-card {
    background-color: var(--gray-100);
    border-color: var(--gray-200);
}

[data-theme="dark"] .episode-card:hover {
    background-color: var(--gray-200);
    border-color: var(--primary-orange);
}

[data-theme="dark"] .episode-title {
    color: var(--gray-100);
}

[data-theme="dark"] .episode-description {
    color: var(--gray-400);
}

[data-theme="dark"] .partner-card {
    background-color: var(--gray-100);
    border-color: var(--gray-200);
}

[data-theme="dark"] .partner-card:hover {
    background-color: var(--gray-200);
    border-color: var(--primary-orange);
}

[data-theme="dark"] .partner-card h4 {
    color: var(--gray-100);
}

[data-theme="dark"] .partner-card p {
    color: var(--gray-400);
}

[data-theme="dark"] .accordion-header {
    background-color: var(--gray-100);
    border-color: var(--gray-200);
}

[data-theme="dark"] .accordion-header:hover {
    background-color: var(--gray-200);
}

[data-theme="dark"] .accordion-header h3 {
    color: var(--gray-100);
}

[data-theme="dark"] .search-container input {
    background-color: var(--gray-100);
    border-color: var(--gray-200);
    color: var(--gray-100);
}

[data-theme="dark"] .search-container input:focus {
    border-color: var(--primary-orange);
    background-color: var(--gray-200);
}

[data-theme="dark"] .search-container input::placeholder {
    color: var(--gray-400);
}

[data-theme="dark"] .footer {
    background-color: var(--gray-50);
    border-top-color: var(--gray-200);
}

[data-theme="dark"] .footer h3,
[data-theme="dark"] .footer h4 {
    color: var(--gray-100);
}

[data-theme="dark"] .footer p,
[data-theme="dark"] .footer a {
    color: var(--gray-400);
}

[data-theme="dark"] .footer a:hover {
    color: var(--primary-orange);
}

/* Dark mode voor sectie achtergronden */
[data-theme="dark"] .about-section {
    background: var(--gray-100);
}

[data-theme="dark"] .doel-section {
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
}

[data-theme="dark"] .sponsoring-section {
    background: var(--gray-100);
}

[data-theme="dark"] .abdul-section {
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
}

[data-theme="dark"] .accordion-section {
    background: var(--gray-100);
}

[data-theme="dark"] .accordion-item {
    background: var(--gray-200);
}

[data-theme="dark"] .search-container {
    background: var(--gray-200);
}

[data-theme="dark"] .partner-card {
    background: var(--gray-200);
}

[data-theme="dark"] .abdul-biography {
    background: rgba(31, 41, 55, 0.95);
    border: 1px solid rgba(75, 85, 99, 0.2);
}

[data-theme="dark"] .pillar-card {
    background: var(--gray-200);
}

[data-theme="dark"] .pillar-icon {
    background: linear-gradient(135deg, var(--gray-300) 0%, var(--gray-400) 100%);
    color: var(--primary-orange);
}

[data-theme="dark"] .feature-icon {
    background: var(--gray-300);
    color: var(--gray-600);
}

[data-theme="dark"] .feature-icon.orange {
    background: var(--gray-300);
    color: var(--primary-orange);
}

[data-theme="dark"] .stat-card {
    background: var(--gray-200);
}

[data-theme="dark"] .why-choose-card {
    background: var(--gray-200);
}

[data-theme="dark"] .testimonial-card {
    background: var(--gray-200);
}

[data-theme="dark"] .signup-card {
    background: var(--gray-200);
}

[data-theme="dark"] .platform-card {
    background: var(--gray-200);
}

[data-theme="dark"] .platform-card:hover {
    background: var(--gray-300);
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    color: #333;
}

.loading-logo {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loading-logo-img {
    width: 120px;
    height: auto;
    animation: pulse 2s ease-in-out infinite;
    display: block;
    margin: 0 auto;
}

.loading-spinner {
    width: 200px;
    height: 8px;
    background: #f0f0f0;
    border-radius: 4px;
    margin: 0 auto 1rem;
    overflow: hidden;
    position: relative;
}

.loading-spinner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #FF6B35 0%, #FF8C42 50%, #FF6B35 100%);
    border-radius: 4px;
    animation: progressBar 3s ease-in-out forwards;
}

.loading-text {
    font-size: 1.125rem;
    font-weight: 500;
    margin: 0;
    color: #333;
}

.loading-tagline {
    font-size: 1rem;
    font-weight: 400;
    margin: 0;
    margin-top: 0.5rem;
    color: #333;
    opacity: 0.8;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes progressBar {
    0% { width: 0%; }
    100% { width: 100%; }
}

html {
    scroll-behavior: smooth;
}

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--gray-900);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    text-align: center;
    margin-bottom: 3rem;
}

.section-header {
    margin-bottom: 4rem;
}

/* Gradient Text */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border: none;
    border-radius: var(--border-radius-small);
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 100%
    );
    transition: left 0.5s ease;
    pointer-events: none;
    z-index: 1;
}

.btn:hover::before {
    left: 100%;
}

.btn > * {
    position: relative;
    z-index: 2;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: var(--white);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: var(--glass-backdrop);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-orange);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.25rem;
    color: var(--gray-700);
    cursor: pointer;
}

.theme-toggle {
    background: none;
    border: none;
    color: var(--gray-700);
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    margin-left: 1rem;
}

.theme-toggle:hover {
    color: var(--primary-orange);
    background-color: var(--gray-100);
    transform: scale(1.1);
}

.theme-toggle:focus {
    outline: 2px solid var(--primary-orange);
    outline-offset: 2px;
}

[data-theme="dark"] .theme-toggle {
    color: var(--gray-300);
}

[data-theme="dark"] .theme-toggle:hover {
    color: var(--primary-orange);
    background-color: var(--gray-200);
}



/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    padding-top: 80px; /* Ruimte voor de fixed navbar */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background Layers */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-layer-1 {
    background-image: url('assets/Layer 1 background static.png');
    z-index: 1;
}

.hero-layer-2 {
    background-image: url('assets/Layer 2 background static.png');
    z-index: 2;
}

/* Parallax Layers */
.hero-parallax {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.hero-layer-3 {
    background-image: url('assets/Layer 3 head static.png');
    z-index: 3;
}

.hero-layer-4 {
    background-image: url('assets/Layer 4 head slowinzoom.png');
    z-index: 4;
}

.hero-layer-5 {
    background-image: url('assets/Layer 5 clouds right top.png');
    z-index: 5;
    animation: cloudBreatheFast 8s ease-in-out infinite alternate;
}

.hero-layer-6 {
    background-image: url('assets/Layer 6 clouds left top.png');
    z-index: 6;
    animation: cloudBreatheFast 8s ease-in-out infinite alternate;
}

.hero-layer-7 {
    background-image: url('assets/layer 7 top layer man walking.png');
    z-index: 7;
    animation: manWalk 8s ease-in-out infinite;
}

/* Content Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.15) 50%,
        rgba(0, 0, 0, 0.1) 100%
    );
}

.hero-content {
    max-width: 650px;
    color: var(--white);
    text-align: center;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Logo */
.hero-logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
}

.main-logo {
    width: 350px;
    height: auto;
    filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.3));
    margin-bottom: 1rem;
}

.hero-tagline {
    font-size: 1.4rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    font-weight: 600;
    letter-spacing: 0.5px;
    margin: 0;
    text-align: center;
}

/* Hero Description - Deprecated, replaced by hero-tagline under logo */
/* .hero-description {
    font-size: 1.4rem;
    line-height: 1.5;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    font-weight: 400;
    letter-spacing: 0.5px;
} */

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.btn-spotify {
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    padding: 0.875rem 1.75rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.btn-spotify:hover {
    background: #ff7a47;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.9);
    color: var(--gray-700);
    border: 2px solid rgba(255, 255, 255, 0.9);
    padding: 0.875rem 1.75rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-ghost:hover {
    background: var(--white);
    color: var(--gray-800);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Hero Testimonial */
.hero-testimonial {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 auto 1.5rem;
    padding: 0.6rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    max-width: fit-content;
}

.testimonial-icon {
    font-size: 1rem;
    color: #FFD700;
}

.testimonial-text {
    font-style: normal;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    font-size: 0.9rem;
    line-height: 1.4;
    white-space: nowrap;
}

/* Hero Scroll Indicator */
.hero-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-weight: 400;
}

.scroll-indicator {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 15px;
    position: relative;
    background: transparent;
    animation: scrollPulse 3s ease-in-out infinite;
}

.scroll-indicator::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: scrollDot 3s ease-in-out infinite;
}

@keyframes scrollDot {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateX(-50%) translateY(20px);
        opacity: 0.3;
    }
}

/* Animations */
@keyframes slowZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.05);
    }
}

@keyframes cloudFloat {
    0% {
        transform: translateX(0) translateY(0);
    }
    100% {
        transform: translateX(20px) translateY(-10px);
    }
}

@keyframes cloudBreathe {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.03);
    }
}

@keyframes cloudBreatheFast {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.06);
    }
}

@keyframes manWalk {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(10px);
    }
}

@keyframes scrollPulse {
    0%, 100% {
        opacity: 0.4;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateY(10px);
    }
}

/* Parallax Effect on Scroll */
.hero-layer-5 {
    will-change: transform;
}

.hero-layer-6 {
    will-change: transform;
}

.hero-layer-7 {
    will-change: transform;
}

/* Promo Section */
.promo-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.promo-content {
    max-width: 1000px;
    margin: 0 auto;
}

.promo-text {
    text-align: center;
    margin-bottom: 3rem;
}

.promo-text p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--gray-700);
    max-width: 900px;
    margin: 0 auto;
}

.promo-video {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-large);
    background: var(--black);
}

.promo-video-player {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius);
}

/* Responsive styling for promo section */
@media (max-width: 768px) {
    .promo-text p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .promo-section {
        padding: 60px 0;
    }
    
    .promo-content {
        padding: 0 1rem;
    }
    
    .promo-video {
        margin: 0;
        width: 100%;
        max-width: 100%;
    }
    
    .promo-video iframe {
        width: 100%;
        height: auto;
        min-height: 200px;
    }
    
    .promo-cta {
        padding: 0 1rem;
    }
    
    .promo-cta .btn {
        width: 100%;
        max-width: 100%;
        font-size: 1rem;
        padding: 1rem;
        text-align: center;
        justify-content: center;
    }
}

/* About Section */
.about-section {
    padding: var(--section-padding);
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.title-underline {
    width: 60px;
    height: 4px;
    background: var(--primary-orange);
    margin: 0 auto;
    border-radius: 2px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Left Column */
.about-main-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 2.5rem;
    line-height: 1.4;
}

.podcast-features {
    margin-bottom: 2.5rem;
}

.podcast-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.podcast-feature:last-child {
    margin-bottom: 0;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: #e8f4f8;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
    color: var(--gray-700);
    flex-shrink: 0;
}

.feature-icon.orange {
    background: #fff3e6;
    color: var(--primary-orange);
}

.feature-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.feature-content p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.5;
    margin: 0;
}

.podcast-stats {
    display: flex;
    gap: 1rem;
}

.stat-card {
    padding: 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-icon {
    width: 36px;
    height: 36px;
    background: #fff3e6;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    color: var(--primary-orange);
    flex-shrink: 0;
}

.stat-info h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-900);
    margin: 0 0 0.125rem 0;
}

.stat-info p {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin: 0;
}

/* Right Column */
.why-choose-card {
    background: linear-gradient(135deg, #0A2342 0%, #FF6B35 25%, #FFB366 60%, #FFC599 100%);
    padding: 2rem;
    border-radius: 16px;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.why-choose-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.benefit-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
    color: var(--white);
    flex-shrink: 0;
    margin-top: 2px;
}

.benefit-content h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
    color: var(--white);
}

.benefit-content p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    margin: 0;
}

.testimonial-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary-orange);
}

.quote-icon {
    font-size: 1.5rem;
    color: var(--primary-orange);
    margin-bottom: 0.75rem;
}

.testimonial-card blockquote {
    font-size: 1rem;
    font-style: italic;
    color: var(--gray-800);
    margin: 0 0 1rem 0;
    line-height: 1.5;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: #fff3e6;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    color: var(--primary-orange);
}

.author-info h5 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-900);
    margin: 0 0 0.125rem 0;
}

.author-info p {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin: 0;
}

/* Doel Section */
.doel-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #FFFCF9 0%, #FFF5EE 100%);
}

.doel-content {
    max-width: 1000px;
    margin: 0 auto;
}

.doel-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.doel-description {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--gray-700);
    max-width: 800px;
    margin: 0 auto;
}

.doel-description strong {
    color: var(--primary-orange);
    font-weight: 600;
}

.doel-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    align-items: start;
}

.pillar-card {
    padding: 2rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-orange);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

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

.pillar-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FFF3E6 0%, #FFE8D1 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--primary-orange);
    position: relative;
}

.pillar-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    background: var(--gradient-orange);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pillar-card:hover .pillar-icon::after {
    opacity: 0.2;
}

.pillar-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.pillar-card p {
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

.doel-outcome {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 3rem;
    background: linear-gradient(135deg, #0A2342 0%, #FF6B35 20%, #FFB366 70%, #FFC599 100%);
    border-radius: 20px;
    color: var(--white);
}

.outcome-content h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.outcome-content p {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.outcome-content strong {
    color: var(--white);
    font-weight: 600;
}

.outcome-cta .btn {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-weight: 500;
}

.outcome-cta .btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.network-animation {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto;
}

.network-node {
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: networkPulse 3s ease-in-out infinite;
}

.network-node:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.network-node:nth-child(2) {
    top: 20%;
    right: 20%;
    animation-delay: 0.5s;
}

.network-node:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 1s;
}

.network-node:nth-child(4) {
    bottom: 20%;
    right: 20%;
    animation-delay: 1.5s;
}

.network-lines {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: networkRotate 8s linear infinite;
}

.network-lines::before,
.network-lines::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.network-lines::before {
    width: 80px;
    height: 80px;
    animation: networkRotate 6s linear infinite reverse;
}

.network-lines::after {
    width: 40px;
    height: 40px;
    animation: networkRotate 4s linear infinite;
}

@keyframes networkPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.3);
        opacity: 1;
    }
}

@keyframes networkRotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Community Section */
.community-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #0A2342 0%, #FF6B35 25%, #FFB366 60%, #FFC599 100%);
    color: var(--white);
}

.community-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.community-section .section-title {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.community-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.community-main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: stretch;
}

/* Left Column - Onze Community */
.community-left h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--white);
}

.community-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-circle {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    color: var(--white);
    flex-shrink: 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.feature-text p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin: 0;
}

/* Right Column - Community Verzameling */
.signup-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.signup-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.signup-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    flex: 1;
}

.signup-feature h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.signup-feature p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.4;
}



.dna-statement {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

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

.dna-statement:hover::before {
    left: 100%;
}

.dna-statement h3 {
    font-size: 1.2rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    font-family: var(--font-primary);
}

.dna-statement h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    font-family: var(--font-heading);
    background: linear-gradient(135deg, var(--white) 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.signup-note {
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Statistics Section */
.community-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.community-stats .stat-item {
    color: var(--white);
}

.community-stats .stat-number {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
    color: var(--white);
}

.community-stats .stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

/* Sponsormogelijkheden Section */
.sponsoring-section {
    padding: var(--section-padding);
    background: #f8f9fa;
}

.sponsoring-header {
    text-align: center;
    margin-bottom: 4rem;
}

.sponsoring-header .section-title {
    color: var(--primary-blue);
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.title-underline {
    width: 60px;
    height: 4px;
    background: var(--primary-orange);
    margin: 0 auto 2rem;
    border-radius: 2px;
}

.sponsoring-header .section-subtitle {
    color: var(--gray-600);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    align-items: start;
}

.pricing-card {
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    min-height: 560px;
    display: flex;
    flex-direction: column;
    overflow: visible;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* Premium Card Special Styling */
.premium-card {
    background: linear-gradient(135deg, #0A2342 0%, #FF6B35 30%, #FFB366 100%);
    color: var(--white);
    transform: scale(1.05);
    border: 2px solid var(--primary-orange);
    overflow: visible;
}

.premium-card:hover {
    transform: scale(1.05) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-orange);
    color: var(--gray-900);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    z-index: 10;
    white-space: nowrap;
}

.card-icon {
    width: 80px;
    height: 80px;
    background: #f1f3f4;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #6c757d;
}

.premium-card .card-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--primary-orange);
}

.events-icon {
    background: #fff5f2 !important;
    color: var(--primary-orange) !important;
}

.card-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.premium-card .card-title {
    color: var(--primary-orange);
}

.card-subtitle {
    font-size: 1rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.premium-card .card-subtitle {
    color: var(--primary-orange);
}

.card-price {
    margin-bottom: 2rem;
}

.card-price .price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
    font-family: var(--font-heading);
}

.premium-card .card-price .price {
    color: var(--primary-orange);
}

.card-price .period {
    font-size: 1.1rem;
    color: var(--gray-600);
    font-weight: 500;
}

.premium-card .card-price .period {
    color: var(--primary-orange);
}

.card-features {
    text-align: left;
    margin-bottom: 2.5rem;
    flex-grow: 1;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.card-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--gray-700);
}

.premium-card .card-features .feature-item {
    color: var(--primary-orange);
}

.card-features .feature-item i {
    color: var(--primary-orange);
    font-size: 0.9rem;
}

.premium-card .card-features .feature-item i {
    color: var(--primary-orange);
}

.pricing-btn {
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: auto;
}

.pricing-btn-basic:hover {
    background: #1e3a5f;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 58, 95, 0.3);
}

.pricing-btn-premium {
    background: var(--white);
    color: var(--gray-900);
    font-weight: 700;
}

.pricing-btn-premium:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.pricing-btn-events {
    background: var(--primary-orange);
    color: var(--white);
}

.pricing-btn-events:hover {
    background: #ff7a47;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.sponsor-cta {
    text-align: center;
    margin-top: 2rem;
}

.btn-sponsor {
    background: var(--primary-orange);
    color: var(--white);
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.25);
}

.btn-sponsor:hover {
    background: #ff7a47;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    text-decoration: none;
}



/* Follow Us Section */
.follow-section {
    padding: var(--section-padding);
    background: var(--white);
}

.social-platforms {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: start;
}

.platform-card {
    padding: 2rem 1.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 380px;
}

.platform-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.platform-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FFF3E6 0%, #FFE8D1 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.platform-card:nth-child(1) .platform-icon {
    color: #0077b5;
    background: linear-gradient(135deg, #FFF3E6 0%, #FFE8D1 100%);
}

.platform-card:nth-child(2) .platform-icon {
    color: #1DB954;
    background: linear-gradient(135deg, #FFF3E6 0%, #FFE8D1 100%);
}

.platform-card:nth-child(3) .platform-icon {
    color: #FF0000;
    background: linear-gradient(135deg, #FFF3E6 0%, #FFE8D1 100%);
}

.platform-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.platform-card p {
    color: var(--gray-600);
    line-height: 1.5;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 60px;
}

.platform-btn {
    background: var(--primary-blue);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: block;
    text-align: center;
    margin: 0 auto;
    margin-top: auto;
    width: fit-content;
    align-self: center;
}

.platform-btn:hover {
    background: #1e3a5f;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

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

.follow-cta .btn {
    background: var(--primary-orange);
    color: var(--white);
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    border: none;
}

.follow-cta .btn:hover {
    background: #ff7a47;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    text-decoration: none;
}

/* Episodes Section */
.episodes-section {
    padding: var(--section-padding);
    background: var(--white);
}

.episodes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: start;
}

.episode-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.episode-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.episode-image {
    height: 200px;
    background: var(--gradient-primary);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.play-button {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--primary-blue);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

.episode-duration {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.episode-content {
    padding: 1.5rem;
}

.episode-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--gray-900);
}

.episode-description {
    color: var(--gray-600);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.episode-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: var(--gray-500);
}

.episode-guest {
    font-weight: 500;
    color: var(--primary-orange);
}

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





/* Partners Section */
.partners-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #FFFCF9 0%, #FFF8F2 100%);
    overflow: hidden;
}

.partners-carousel-container {
    width: 100%;
    overflow: hidden;
    margin-top: 3rem;
    position: relative;
}

.partners-carousel {
    display: flex;
    align-items: center;
    gap: 2rem;
    animation: scroll-right 30s linear infinite;
    width: fit-content;
}

.partner-logo {
    flex: 0 0 auto;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-small);
    padding: 1.5rem 2.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--white);
    background: linear-gradient(135deg, #0A2342 0%, #FF6B35 30%, #FFB366 100%);
    white-space: nowrap;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 160px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.partner-logo::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.2) 50%,
        transparent 100%
    );
    animation: partner-shine 3s infinite linear;
    pointer-events: none;
    z-index: 1;
}

@keyframes partner-shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.partner-logo:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-large);
    animation-play-state: paused;
}

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

/* Pause animation on section hover */
.partners-section:hover .partners-carousel {
    animation-play-state: paused;
}

/* Abdul Section */
.abdul-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #FFFCF9 0%, #FFF8F2 100%);
}

.abdul-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.abdul-section .section-title {
    font-size: 2.5rem;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.abdul-tagline {
    font-size: 1.25rem;
    color: var(--primary-orange);
    font-weight: 600;
    font-style: italic;
}

.abdul-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 5rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.abdul-profile {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.profile-image {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow-large);
    border: 6px solid var(--white);
    position: relative;
}

.profile-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    border: 3px solid transparent;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-orange)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: exclude;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.abdul-biography {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 
        0 20px 25px -5px rgba(0, 0, 0, 0.1), 
        0 10px 10px -5px rgba(0, 0, 0, 0.04),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: visible;
    margin-bottom: 2rem;
}

.abdul-biography::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 248, 242, 0.8), transparent);
}

.bio-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.bio-title {
    font-size: 1.75rem;
    color: var(--gray-900);
    font-weight: 700;
    position: relative;
    padding-bottom: 0.5rem;
    margin: 0;
}

.bio-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #0A2342, #FF6B35, #FFB366);
    border-radius: 2px;
}

.bio-stats {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.stat-item {
    text-align: center;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.stat-number {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.25rem;
}

.bio-content {
    position: relative;
}

.bio-preview p, .bio-full p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
    text-align: justify;
}

.bio-full {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.bio-full.expanded {
    max-height: 2000px;
}

.bio-preview p:last-child {
    margin-bottom: 2rem;
    position: relative;
}

.bio-preview p:last-child::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(transparent, rgba(255, 248, 242, 0.95));
    pointer-events: none;
}

.read-more-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #0A2342, #FF6B35, #FFB366);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(10, 35, 66, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 10;
    user-select: none;
    -webkit-user-select: none;
    margin-top: 1.5rem;
    min-width: 140px;
    justify-content: center;
}

.read-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 248, 242, 0.3), transparent);
    transition: left 0.6s;
}

.read-more-btn:hover::before {
    left: 100%;
}

.read-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(10, 35, 66, 0.3);
}

.read-more-btn:active {
    transform: translateY(0);
    transition: transform 0.1s;
}

.read-more-btn.expanded .btn-text {
    opacity: 1;
    transform: translateX(0);
}

.btn-icon {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.read-more-btn.expanded .btn-icon {
    transform: rotate(180deg);
}

/* Ensure button text is visible in both states */
.read-more-btn .btn-text {
    transition: all 0.3s ease;
    position: relative;
}

.bio-full p:last-child {
    margin-bottom: 0;
    font-weight: 600;
    color: var(--gray-900);
    padding: 1.5rem;
    background: rgba(10, 35, 66, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--primary-orange);
    font-style: italic;
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.footer-brand p {
    color: var(--gray-400);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-section h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-section a {
    display: block;
    color: var(--gray-400);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-orange);
}

.footer-bottom {
    border-top: 1px solid var(--gray-700);
    padding-top: 1rem;
    text-align: center;
    color: var(--gray-400);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .section-title {
        font-size: 2rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    /* Hero Mobile */
    .hero-content {
        padding-left: 1rem;
        padding-right: 1rem;
        text-align: center;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-spotify,
    .btn-ghost {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 280px;
        text-align: center;
    }
    
    .hero-scroll {
        align-items: center;
    }
    
    .scroll-indicator {
        width: 25px;
        height: 40px;
        border-radius: 12px;
    }
    
    /* Hero Logo Mobile */
    .main-logo {
        width: 250px;
        margin-bottom: 0.75rem;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
        letter-spacing: 0.3px;
    }
    
    /* Hero Content Mobile */
    .hero-content {
        max-width: 90%;
        padding: 0 1rem;
    }
    
    .hero-logo {
        margin-bottom: 2.5rem;
    }
    
    .hero-buttons {
        gap: 1rem;
        flex-direction: row;
    }
    
    .btn {
        font-size: 0.9rem;
        padding: 0.75rem 1.5rem;
    }
    
    /* About Section Mobile */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .about-main-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .podcast-stats {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .why-choose-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .why-choose-card h3 {
        font-size: 1.1rem;
    }
    
    .testimonial-card {
        padding: 1.25rem;
    }
    
    /* Doel Section Mobile */
    .doel-pillars {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .doel-outcome {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1.5rem;
        text-align: center;
    }
    
    .outcome-content h3 {
        font-size: 1.5rem;
    }
    
    .outcome-content p {
        font-size: 1rem;
    }
    
    .network-animation {
        width: 150px;
        height: 150px;
    }
    
    /* Community Section Mobile */
    .community-main-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 3rem;
    }
    
    .community-left h3 {
        font-size: 1.5rem;
    }
    
    .signup-card {
        padding: 1.5rem;
    }
    
    .community-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding-top: 2rem;
    }
    
    .community-stats .stat-number {
        font-size: 2.5rem;
    }
    
    /* Follow Section Mobile */
    .social-platforms {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .platform-card {
        padding: 1.5rem;
        min-height: 320px;
    }
    
    .platform-card p {
        min-height: 50px;
        margin-bottom: 1.5rem;
    }
    
    .platform-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        margin: 0 auto;
        margin-top: auto;
        width: fit-content;
        align-self: center;
    }
    
    .follow-cta .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    /* Sponsoring Section Mobile */
    .sponsoring-header {
        margin-bottom: 3rem;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .sponsoring-header .section-title {
        font-size: 2.25rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .title-underline {
        width: 50px;
        height: 3px;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
        min-height: auto;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    .premium-card {
        transform: none;
        order: -1;
    }
    
    .premium-card:hover {
        transform: translateY(-8px);
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .card-title {
        font-size: 1.5rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .card-price .price {
        font-size: 2rem;
    }
    
    .pricing-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .btn-sponsor {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .abdul-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .profile-image {
        width: 280px;
        height: 280px;
        margin: 0 auto;
    }
    
    .abdul-biography {
        padding: 2rem;
        border-radius: 16px;
    }
    
    .bio-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }
    
    .bio-stats {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .stat-item {
        padding: 0.75rem 1rem;
        min-width: 80px;
    }
    
    .stat-number {
        font-size: 1.1rem;
    }
    
    .bio-title {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .bio-content p {
        text-align: left;
        font-size: 0.95rem;
    }
    
    .read-more-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
        margin: 0 auto;
        display: flex;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    

    
    .stats-section {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .partners-carousel {
        animation: scroll-right 20s linear infinite;
        gap: 1.5rem;
    }
    
    .partner-logo {
        min-width: 140px;
        padding: 1.2rem 2rem;
        font-size: 1rem;
    }
    
    .partner-logo:hover {
        transform: translateY(-3px) scale(1.02);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .episode-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-section {
        grid-template-columns: 1fr;
    }
    
    .profile-image {
        width: 220px;
        height: 220px;
        max-width: 100%;
    }
    
    .abdul-biography {
        padding: 1.5rem;
        border-radius: 12px;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .bio-header {
        gap: 1rem;
        margin-bottom: 1.5rem;
        max-width: 100%;
    }
    
    .bio-stats {
        gap: 0.75rem;
        max-width: 100%;
    }
    
    .stat-item {
        padding: 0.5rem 0.75rem;
        min-width: 70px;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .stat-number {
        font-size: 1rem;
    }
    
    .stat-label {
        font-size: 0.65rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .bio-title {
        font-size: 1.25rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .read-more-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
        max-width: 100%;
        box-sizing: border-box;
    }
}

/* ==============================================
   FROSTED GLASS UTILITY CLASSES
   ============================================== */

/* Base Frosted Glass Layer */
.glass-layer {
    position: relative;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 8px 32px 0 rgba(31, 38, 135, 0.37),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    overflow: hidden;
}

/* Glass shine effect on top */
.glass-layer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.8) 20%, 
        rgba(255, 255, 255, 0.9) 50%, 
        rgba(255, 255, 255, 0.8) 80%, 
        transparent 100%);
    z-index: 1;
}

/* Glass reflection gradient */
.glass-layer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.3) 0%, 
        rgba(255, 255, 255, 0.1) 50%, 
        transparent 100%);
    pointer-events: none;
    z-index: 1;
}

/* Content wrapper for proper z-index */
.glass-layer-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Glass Layer Variants */
.glass-layer-orange {
    background: rgba(255, 107, 53, 0.15);
    border: 1px solid rgba(255, 179, 102, 0.3);
    box-shadow: 
        0 8px 32px 0 rgba(255, 107, 53, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.glass-layer-blue {
    background: rgba(10, 35, 66, 0.15);
    border: 1px solid rgba(10, 35, 66, 0.3);
    box-shadow: 
        0 8px 32px 0 rgba(10, 35, 66, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.glass-layer-premium {
    background: linear-gradient(135deg, 
        rgba(10, 35, 66, 0.2) 0%, 
        rgba(255, 107, 53, 0.2) 100%);
    border: 1px solid rgba(255, 179, 102, 0.4);
    box-shadow: 
        0 8px 32px 0 rgba(255, 107, 53, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.glass-layer-dark {
    background: rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 32px 0 rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* ==============================================
   GLANZEND SHIMMER EFFECT UTILITIES
   ============================================== */

/* Base Shine Effect */
.shine-effect {
    position: relative;
    overflow: hidden;
}

.shine-effect::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 40%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0.1) 60%,
        transparent 70%
    );
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 3;
}

.shine-effect:hover::before {
    transform: translateX(100%) translateY(100%) rotate(45deg);
}

/* Shimmer Animation (continuous) */
.shimmer-effect {
    position: relative;
    overflow: hidden;
}

.shimmer-effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 20%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0.1) 80%,
        transparent 100%
    );
    animation: shimmer 3s infinite;
    pointer-events: none;
    z-index: 3;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Gloss Effect */
.gloss-effect {
    position: relative;
    overflow: hidden;
}

.gloss-effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.2) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 3;
}

/* Premium Metallic Shine */
.metallic-shine {
    position: relative;
    overflow: hidden;
}

.metallic-shine::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 30%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0.1) 70%,
        transparent 100%
    );
    animation: metallic-sweep 4s infinite;
    pointer-events: none;
    z-index: 3;
}

@keyframes metallic-sweep {
    0% {
        left: -100%;
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

/* Intense Sparkle Effect */
.sparkle-effect {
    position: relative;
    overflow: hidden;
}

.sparkle-effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        transparent 0%,
        rgba(255, 255, 255, 0.05) 25%,
        rgba(255, 255, 255, 0.3) 45%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0.3) 55%,
        rgba(255, 255, 255, 0.05) 75%,
        transparent 100%
    );
    animation: sparkle 2.5s infinite;
    pointer-events: none;
    z-index: 3;
}

@keyframes sparkle {
    0% {
        left: -100%;
        transform: rotate(45deg);
    }
    100% {
        left: 100%;
        transform: rotate(45deg);
    }
}

/* Accordion Component Styles */
.accordion-section {
    padding: 7rem 0 4rem 0;
    background: white;
}

.accordion-section .section-header {
    margin-top: 2rem;
}

.accordion-container {
    margin-top: 3rem;
}

.accordion-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.accordion-header {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: inherit;
    font-size: inherit;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    transform: translateY(-1px);
}

.accordion-header:focus {
    outline: 2px solid var(--primary-orange);
    outline-offset: 2px;
}

.accordion-content {
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-content.open {
    max-height: none;
}

.accordion-icon {
    transition: transform 0.3s ease;
}

.partner-card {
    background: white;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px -8px rgba(0, 0, 0, 0.15);
}

/* Search functionality styles */
.search-container {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.search-container input {
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-container input:focus {
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.search-stats {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Entrepreneur grid improvements */
.entrepreneur-grid {
    transition: all 0.3s ease;
}

.entrepreneur-item {
    transition: all 0.3s ease;
    opacity: 1;
}

.entrepreneur-item.hidden {
    opacity: 0;
    transform: scale(0.95);
}

/* Enhanced partner card styling */
.partner-card {
    position: relative;
    overflow: hidden;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-blue));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

/* Responsive adjustments for accordion */
@media (max-width: 768px) {
    .accordion-section {
        padding: 2rem 0;
    }
    
    .accordion-container {
        margin-top: 2rem;
    }
    
    .accordion-header {
        padding: 1rem 1.5rem;
    }
    
    .accordion-content .px-6 {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .partner-card {
        padding: 1rem;
    }
    
    .search-container {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .accordion-section {
        padding: 1.5rem 0;
    }
    
    .accordion-header h3 {
        font-size: 1rem;
    }
    
    .partner-card h4 {
        font-size: 0.9rem;
    }
    
    .partner-card p {
        font-size: 0.8rem;
    }
    
    .search-container input {
        font-size: 0.9rem;
    }
}

/* Request Modal Styles */
.request-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.request-modal.active {
    display: flex;
    opacity: 1;
}

.request-modal .modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.request-modal .modal-container {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.request-modal.active .modal-container {
    transform: scale(1);
}

.request-modal .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.request-modal .modal-title-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.request-modal .modal-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-orange) 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.5rem;
}

.request-modal .modal-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 0;
    font-family: var(--font-heading);
}

.request-modal .modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.2s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.request-modal .modal-close:hover {
    background: #f0f0f0;
    color: #333;
}

.request-modal .modal-description {
    color: var(--gray-600);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid var(--primary-orange);
}

.request-modal .request-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.request-modal .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.request-modal .form-group label {
    font-weight: 600;
    color: var(--gray-800);
    font-size: 0.95rem;
}

.request-modal .form-group input,
.request-modal .form-group textarea {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.request-modal .form-group input:focus,
.request-modal .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(10, 35, 66, 0.1);
}

.request-modal .form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.request-modal .checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.request-modal .checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
    margin-top: 0.25rem;
}

.request-modal .checkbox-group label {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.4;
}

.request-modal .text-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
}

.request-modal .text-link:hover {
    text-decoration: underline;
}

.request-modal .submit-btn {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-orange) 100%);
    color: white;
    border: none;
    padding: 1.25rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.request-modal .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(10, 35, 66, 0.3);
}

.request-modal .submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.request-modal .success-message {
    text-align: center;
    padding: 2rem;
}

.request-modal .success-icon {
    width: 80px;
    height: 80px;
    background: #28a745;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.request-modal .success-message h4 {
    color: #28a745;
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.request-modal .success-message p {
    color: var(--gray-600);
    margin: 0 0 2rem 0;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Error Message Styles */
.request-modal .error-message {
    text-align: center;
    padding: 2rem;
}

.request-modal .error-icon {
    width: 80px;
    height: 80px;
    background: #dc3545;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.request-modal .error-message h4 {
    color: #dc3545;
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.request-modal .error-message p {
    color: var(--gray-600);
    margin: 0 0 2rem 0;
    line-height: 1.6;
    font-size: 1.1rem;
}

.request-modal .close-btn {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.request-modal .close-btn:hover {
    background: #1e3a5f;
    transform: translateY(-2px);
}

/* Request Card Component Styles */
.request-card {
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    overflow: visible;
}

.request-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.request-card .card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-orange) 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.request-card .card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.request-card .card-description {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.request-card .request-btn {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-orange) 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

.request-card .request-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(10, 35, 66, 0.3);
}

/* Responsive Design for Request Modal */
@media (max-width: 768px) {
    .request-modal .modal-container {
        padding: 2rem 1.5rem;
        width: 95%;
        margin: 1rem;
    }
    
    .request-modal .modal-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .request-modal .modal-title-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .request-modal .modal-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .request-modal .modal-title {
        font-size: 1.5rem;
    }
    
    .request-modal .modal-close {
        position: absolute;
        top: 1rem;
        right: 1rem;
    }
    
    .request-modal .form-group input,
    .request-modal .form-group textarea {
        padding: 0.875rem;
        font-size: 0.95rem;
    }
    
    .request-modal .submit-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .request-card {
        padding: 2rem 1.5rem;
        min-height: 350px;
    }
    
    .request-card .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .request-card .card-title {
        font-size: 1.25rem;
    }
}

/* ... existing code ... */

/* Community Modal Styles */
.community-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.community-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.community-modal .modal-content {
    background: var(--white);
    border-radius: var(--border-radius);
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-large);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.community-modal .modal-header {
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.community-modal .modal-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-800);
    margin: 0;
}

.community-modal .modal-header .close-btn {
    background: none;
    border: none;
    font-size: 1.25rem;
    color: var(--gray-500);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.community-modal .modal-header .close-btn:hover {
    background: var(--gray-100);
    color: var(--gray-700);
}

.community-modal .modal-body {
    padding: 1rem 1.5rem 1.5rem;
}

.community-modal .modal-description {
    font-size: 1rem;
    color: var(--gray-600);
    margin-bottom: 1rem;
    text-align: center;
}

.community-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
}

.community-option {
    display: flex;
    align-items: center;
    padding: 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius-small);
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--white);
}

.community-option:hover {
    border-color: var(--primary-orange);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 179, 102, 0.05) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.community-option .option-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.5rem;
    color: var(--white);
    flex-shrink: 0;
}

.community-option:nth-child(1) .option-icon {
    background: linear-gradient(135deg, #0077B5 0%, #00A0DC 100%);
}

.community-option:nth-child(2) .option-icon {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.community-option:nth-child(3) .option-icon {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #FFB366 100%);
}

.community-option:nth-child(4) .option-icon {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
}

.community-option .option-content {
    flex: 1;
}

.community-option .option-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.25rem;
}

.community-option .option-content p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.4;
}

.community-option i.fa-arrow-right {
    color: var(--gray-400);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.community-option:hover i.fa-arrow-right {
    color: var(--primary-orange);
    transform: translateX(4px);
}

.modal-note {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 179, 102, 0.1) 100%);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: var(--border-radius-small);
    padding: 1rem;
    margin-top: 1.5rem;
    text-align: center;
}

.modal-note p {
    margin: 0;
    color: var(--gray-700);
    font-weight: 500;
}

.modal-note strong {
    color: var(--primary-orange);
}

/* Dark mode support for community modal */
[data-theme="dark"] .community-modal .modal-content {
    background: var(--gray-100);
}

[data-theme="dark"] .community-modal .modal-header {
    border-bottom-color: var(--gray-300);
}

[data-theme="dark"] .community-modal .modal-header h3 {
    color: var(--gray-100);
}

[data-theme="dark"] .community-modal .modal-description {
    color: var(--gray-400);
}

[data-theme="dark"] .community-option {
    background: var(--gray-100);
    border-color: var(--gray-300);
}

[data-theme="dark"] .community-option:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 179, 102, 0.1) 100%);
    border-color: var(--primary-orange);
}

[data-theme="dark"] .community-option .option-content h4 {
    color: var(--gray-100);
}

[data-theme="dark"] .community-option .option-content p {
    color: var(--gray-400);
}

[data-theme="dark"] .modal-note {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(255, 179, 102, 0.15) 100%);
    border-color: rgba(255, 107, 53, 0.3);
}

[data-theme="dark"] .modal-note p {
    color: var(--gray-300);
}

/* Responsive design for community modal */
@media (max-width: 768px) {
    .community-option {
        padding: 0.75rem;
    }
    
    .community-option .option-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
        margin-right: 0.75rem;
    }
    
    .community-option .option-content h4 {
        font-size: 1rem;
    }
    
    .community-option .option-content p {
        font-size: 0.85rem;
    }
    
    .community-option i.fa-arrow-right {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .community-option {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .community-option .option-icon {
        margin-right: 0;
        margin-bottom: 0.75rem;
    }
    
    .community-option .option-content {
        margin-bottom: 0.75rem;
    }
    
    .community-option i.fa-arrow-right {
        display: none;
    }
    
    .dna-statement {
        padding: 1.5rem;
    }
    
    .dna-statement h3 {
        font-size: 1rem;
    }
    
    .dna-statement h2 {
        font-size: 1.5rem;
    }
}

/* ==============================================
   PRIVACY POLICY PAGE STYLES
   ============================================== */

.privacy-policy-page {
    padding: 120px 0 80px;
    background: var(--white);
    min-height: 100vh;
}

.privacy-header {
    text-align: center;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--gray-200);
}

.privacy-header h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.last-updated {
    color: var(--gray-500);
    font-size: 1rem;
    font-style: italic;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-small);
    border: 1px solid var(--gray-200);
}

.privacy-section h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-orange);
}

.privacy-section h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-800);
    margin: 1.5rem 0 1rem;
}

.privacy-section p {
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.privacy-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.privacy-section li {
    color: var(--gray-700);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.privacy-section strong {
    color: var(--primary-blue);
    font-weight: 600;
}

.contact-info {
    background: var(--gray-50);
    padding: 1.5rem;
    border-radius: var(--border-radius-small);
    border-left: 4px solid var(--primary-orange);
    margin: 1.5rem 0;
}

.contact-info p {
    margin: 0;
    color: var(--gray-800);
}

/* Privacy Policy Page Logo Styling */
.privacy-policy-page .navbar .container {
    justify-content: center;
}

.privacy-policy-page .brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.privacy-policy-page .privacy-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 0;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.privacy-policy-page .nav-menu {
    position: absolute;
    right: 0;
}

/* Dark mode support */
[data-theme="dark"] .privacy-policy-page {
    background: var(--gray-50);
}

[data-theme="dark"] .privacy-section {
    background: var(--gray-100);
    border-color: var(--gray-300);
}

[data-theme="dark"] .privacy-section h2 {
    color: var(--gray-100);
}

[data-theme="dark"] .privacy-section h3 {
    color: var(--gray-200);
}

[data-theme="dark"] .privacy-section p,
[data-theme="dark"] .privacy-section li {
    color: var(--gray-300);
}

[data-theme="dark"] .contact-info {
    background: var(--gray-200);
}

[data-theme="dark"] .contact-info p {
    color: var(--gray-100);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .privacy-policy-page {
        padding: 100px 0 60px;
    }
    
    .privacy-header h1 {
        font-size: 2.25rem;
    }
    
    .privacy-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .privacy-section h2 {
        font-size: 1.5rem;
    }
    
    .privacy-section h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .privacy-header h1 {
        font-size: 1.875rem;
    }
    
    .privacy-section {
        padding: 1rem;
    }
    
    .privacy-section h2 {
        font-size: 1.25rem;
=======
   MOBILE RESPONSIVENESS IMPROVEMENTS
   ============================================== */

/* Mobile Navigation Improvements */
@media (max-width: 768px) {
    /* Mobile Menu Toggle */
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 1000;
    }
    
    .mobile-menu-toggle span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--gray-800);
        position: relative;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-toggle span::before,
    .mobile-menu-toggle span::after {
        content: '';
        position: absolute;
        width: 24px;
        height: 2px;
        background: var(--gray-800);
        transition: all 0.3s ease;
    }
    
    .mobile-menu-toggle span::before {
        top: -8px;
    }
    
    .mobile-menu-toggle span::after {
        bottom: -8px;
    }
    
    /* Mobile Menu Active State */
    .mobile-menu-toggle.active span {
        background: transparent;
    }
    
    .mobile-menu-toggle.active span::before {
        transform: rotate(45deg);
        top: 0;
    }
    
    .mobile-menu-toggle.active span::after {
        transform: rotate(-45deg);
        bottom: 0;
    }
    
    /* Mobile Navigation Menu */
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: left 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu .nav-link {
        font-size: 1.5rem;
        margin: 1rem 0;
        padding: 1rem 2rem;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .nav-menu .nav-link:hover {
        background: var(--primary-orange);
        color: white;
        transform: translateX(10px);
    }
    
    /* Mobile Hero Improvements */
    .hero {
        min-height: 100vh;
        padding: 2rem 1rem;
    }
    
    .hero-content {
        padding: 2rem 1rem;
        text-align: center;
        max-width: 100%;
        margin-top: 80px; /* Account for fixed navbar */
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .btn-spotify,
    .btn-ghost {
        width: 100%;
        max-width: 300px;
        padding: 1rem 2rem;
        font-size: 1rem;
        border-radius: 12px;
        touch-action: manipulation;
    }
    
    /* Mobile Touch Improvements */
    .btn {
        min-height: 44px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Mobile Section Spacing */
    .section {
        padding: 3rem 1rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    /* Mobile Card Improvements */
    .pricing-card,
    .platform-card,
    .episode-card,
    .partner-card {
        margin-bottom: 1.5rem;
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
    
    /* Mobile Form Improvements */
    .request-modal .form-group input,
    .request-modal .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 1rem;
        border-radius: 12px;
    }
    
    /* Mobile Search Improvements */
    .search-container input {
        font-size: 16px;
        padding: 1rem;
        border-radius: 12px;
    }
    
    /* Mobile Accordion Improvements */
    .accordion-header {
        padding: 1.5rem;
        min-height: 60px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .accordion-header h3 {
        font-size: 1.1rem;
        margin: 0;
    }
    
    /* Mobile Footer Improvements */
    .footer {
        padding: 2rem 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    /* Mobile Stats Improvements */
    .community-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .community-stats .stat-item {
        padding: 1rem;
        text-align: center;
    }
    
    .community-stats .stat-number {
        font-size: 2rem;
    }
    
    /* Mobile DNA Statement */
    .dna-statement {
        padding: 1.5rem;
        margin: 1rem 0;
    }
    
    .dna-statement h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .dna-statement h2 {
        font-size: 1.5rem;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    /* Body and HTML fixes for centering */
    body, html {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
        margin: 0;
        padding: 0;
    }
    
    .container {
        width: 100%;
        max-width: 100%;
        padding: 0 1rem;
        margin: 0 auto;
        overflow-x: hidden;
    }
    
    /* Promo Section Mobile Fixes */
    .promo-section {
        padding: 40px 0;
        width: 100%;
        overflow: hidden;
    }
    
    .promo-content {
        width: 100%;
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .promo-text p {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    .promo-video {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .promo-cta .btn {
        width: 100%;
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .btn-spotify,
    .btn-ghost {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .community-stats {
        grid-template-columns: 1fr;
    }
    
    .community-stats .stat-number {
        font-size: 1.75rem;
    }
    
    .pricing-card,
    .platform-card {
        padding: 1.5rem;
    }
    
    .card-title {
        font-size: 1.25rem;
    }
    
    .card-price .price {
        font-size: 1.75rem;
    }
    
    /* Mobile Profile Image */
    .profile-image {
        width: 200px;
        height: 200px;
    }
    
    /* Mobile Biography */
    .abdul-biography {
        padding: 1.5rem;
        overflow: visible;
        margin-bottom: 2rem;
    }
    
    .bio-title {
        font-size: 1.25rem;
    }
    
    .bio-content p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    /* Mobile Buttons */
    .read-more-btn,
    .pricing-btn,
    .platform-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
        min-height: 44px;
    }
    
    /* Mobile Modal Improvements */
    .request-modal .modal-container {
        margin: 1rem;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .community-modal .modal-content {
        margin: 1rem;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    /* Mobile Search Results */
    .entrepreneur-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .partner-card {
        padding: 1rem;
    }
    
    .partner-card h4 {
        font-size: 1rem;
    }
    
    .partner-card p {
        font-size: 0.85rem;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 1rem;
    }
    
    .hero-content {
        margin-top: 60px;
        padding: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        gap: 1rem;
        justify-content: center;
    }
    
    .btn-spotify,
    .btn-ghost {
        width: auto;
        min-width: 200px;
    }
}

/* High DPI Mobile Devices */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-background {
        background-size: cover;
    }
    
    .profile-image img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Mobile Performance Optimizations */
@media (max-width: 768px) {
    /* Force brand colors on mobile */
    :root {
        --primary-blue: #0A2342 !important;
        --primary-orange: #FF6B35 !important;
        --gradient-primary: linear-gradient(135deg, #0A2342 0%, #FF6B35 20%, #FFB366 70%, #FFC599 100%) !important;
        --gradient-orange: linear-gradient(135deg, #FF6B35 0%, #FFB366 50%, #FFC599 80%, #FFD1B3 100%) !important;
        --gradient-blue: linear-gradient(135deg, #0A2342 0%, #FF6B35 30%, #FFB366 100%) !important;
    }
    
    /* Reduce animations on mobile for better performance */
    .hero-layer {
        animation-duration: 3s;
    }
    
    .network-animation {
        animation-duration: 4s;
    }
    
    .partners-carousel {
        animation-duration: 25s;
    }
    
    /* Optimize for touch */
    * {
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Improve scrolling */
    html {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Better focus states for accessibility */
    .btn:focus,
    .nav-link:focus,
    .accordion-header:focus {
        outline: 2px solid var(--primary-orange);
        outline-offset: 2px;
    }
}