/* ==========================================
   DESKTOP CSS - PSB AR-RISALAH
   Theme: Futuristic 2030 - Glassmorphism & Neon
   Layout: Next-Gen Technology Design
   ========================================== */

/* ==========================================
   CSS VARIABLES - LIGHT BLUE CLEAN PROFESSIONAL THEME
   Psikologi: Clean, Elegant, Formal, Professional
   ========================================== */
:root {
    /* PRIMARY COLORS - Light Professional Theme */
    --primary: #FFFFFF;        /* Pure White - Clean */
    --secondary: #F3F4F6;      /* Light Grey - Subtle */
    --accent: #1F2937;         /* Dark Text - Formal */
    --bg-light: #EFF6FF;       /* Light Blue Background */

    /* BLUE COLORS - Professional & Trust */
    --blue-light: #DBEAFE;     /* Very Light Blue - Soft */
    --blue-medium: #3B82F6;    /* Primary Blue - Professional */
    --blue-deep: #2563EB;      /* Deep Blue - Formal */
    --blue-dark: #1E40AF;      /* Dark Blue - Elegant */

    /* SKY BLUE - Fresh & Clean */
    --sky-light: #EFF6FF;      /* Sky Blue - Very Light */
    --sky-medium: #BFDBFE;     /* Azure - Soft */
    --sky-deep: #93C5FD;       /* Light Sky - Friendly */

    /* GOLD ACCENT - Subtle Prestige */
    --gold-light: #FEF3C7;     /* Very Light Gold */
    --gold-medium: #FDE68A;    /* Light Gold - Subtle */

    /* GREEN ACCENT - Fresh & Success */
    --green-soft: #D1FAE5;     /* Very Light Green */
    --green-emerald: #10B981;  /* Emerald - Success */

    /* LIGHT GLASSMORPHISM */
    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(59, 130, 246, 0.2);
    --glass-shadow: rgba(0, 0, 0, 0.08);

    /* TEXT COLORS - Light Theme */
    --text-primary: #1F2937;   /* Dark Grey - Main Text */
    --text-secondary: #4B5563; /* Medium Grey - Subtitle */
    --text-muted: #6B7280;     /* Light Grey - Caption */
    --text-dark: #111827;      /* Very Dark - Emphasis */
    --text-blue: #3B82F6;      /* Blue Text - CTA */

    /* GRADIENTS - Clean Professional */
    --gradient-primary: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    --gradient-light: linear-gradient(180deg, #FFFFFF 0%, #EFF6FF 100%);
    --gradient-blue-green: linear-gradient(90deg, #3B82F6 0%, #10B981 100%);
    --gradient-vibrant: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 50%, #FFFFFF 100%);
}

/* ==========================================
   THEME INTEGRATION - Dynamic Color System
   Pastikan kontras warna yang baik untuk semua tema
   ========================================== */

/* Integrate theme variables with desktop variables */
:root {
    /* Desktop colors will be overridden by theme-switcher.css theme variables */
    /* These ensure proper color contrast for all themes */
}

/* Light Mode Specific Overrides - Ensure dark text on light backgrounds */
[data-theme="light"] {
    /* Override desktop.css dark theme colors with light-appropriate colors */
    --primary: var(--theme-primary);
    --secondary: var(--theme-secondary);
    --text-primary: var(--theme-text-primary);
    --text-secondary: var(--theme-text-secondary);
    --text-muted: var(--theme-text-muted);
    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(59, 130, 246, 0.3);
    --gradient-dark: linear-gradient(180deg, #FFFFFF 0%, #F9FAFB 100%);
}

/* Dark Themes - Ensure light text on dark backgrounds */
[data-theme="islamic"],
[data-theme="blue"],
[data-theme="cheerful"],
[data-theme="happy"],
[data-theme="arabic"],
[data-theme="turkish"],
[data-theme="chinese"] {
    --primary: var(--theme-primary);
    --secondary: var(--theme-secondary);
    --blue-medium: var(--theme-accent);
    --blue-deep: var(--theme-accent-hover);
    --text-primary: var(--theme-text-primary);
    --text-secondary: var(--theme-text-secondary);
    --text-muted: var(--theme-text-muted);
    --glass-bg: var(--theme-card-bg);
    --glass-border: var(--theme-border);
}

/* Indonesian Theme - Mixed light/dark */
[data-theme="indonesian"] {
    --primary: #DC2626;
    --secondary: #FFFFFF;
    --text-primary: #1F2937;
    --text-secondary: #4B5563;
    --text-muted: #6B7280;
    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(220, 38, 38, 0.3);
}

/* ==========================================
   RESET & BASE STYLES
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-primary);
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 50%, #FFFFFF 100%);
    background-attachment: fixed;
    line-height: 1.6;
    padding-top: 80px;
    overflow-x: hidden;
    position: relative;
}

/* Subtle Light Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 80% 40%, rgba(147, 197, 253, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(219, 234, 254, 0.06) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

/* Subtle Dot Pattern Overlay - Clean & Professional */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle, rgba(59, 130, 246, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 0;
    pointer-events: none;
}

.highlight {
    color: #F97316;
    font-weight: 900;
    position: relative;
    display: inline-block;
}

/* ==========================================
   DESKTOP HEADER - CLEAN PROFESSIONAL
   ========================================== */
.desktop-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 2px solid rgba(59, 130, 246, 0.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 1.25rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.desktop-header.scrolled {
    padding: 0.75rem 0;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border-bottom: 2px solid rgba(59, 130, 246, 0.2);
}

.desktop-nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.desktop-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.desktop-logo:hover {
    transform: scale(1.02);
}

.desktop-logo i {
    color: var(--blue-medium);
    font-size: 2rem;
    filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.3));
}

.desktop-nav-menu {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    align-items: center;
}

.desktop-nav-menu li a {
    color: #4B5563;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.938rem;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    position: relative;
}

.desktop-nav-menu li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.desktop-nav-menu li a:hover {
    background: rgba(59, 130, 246, 0.08);
    color: #3B82F6;
}

.desktop-nav-menu li a:hover::before {
    width: 70%;
}

.desktop-nav-menu li a.active {
    background: rgba(59, 130, 246, 0.12);
    color: #2563EB;
}

.desktop-nav-cta {
    background: linear-gradient(135deg, #F97316 0%, #EA580C 100%) !important;
    color: #FFFFFF !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
    border: 1px solid rgba(251, 146, 60, 0.4);
}

.desktop-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.5);
    background: linear-gradient(135deg, #EA580C 0%, #C2410C 100%) !important;
}

.desktop-nav-cta::before {
    display: none;
}

/* ==========================================
   DESKTOP HERO SECTION - CLEAN PROFESSIONAL
   ========================================== */
.desktop-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
    padding: 6rem 0 4rem;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Islamic Crescent Moon - Very Subtle */
.desktop-hero::after {
    content: '☪';
    position: absolute;
    top: 10%;
    right: 5%;
    font-size: 25rem;
    opacity: 0.02;
    color: #3B82F6;
    z-index: 0;
    transform: rotate(-15deg);
    pointer-events: none;
}

/* Mosque Decoration - Very Subtle */
.desktop-hero::before {
    content: '🕌';
    position: absolute;
    bottom: 5%;
    left: 3%;
    font-size: 8rem;
    opacity: 0.02;
    z-index: 0;
    pointer-events: none;
}

.desktop-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.desktop-hero-content {
    color: var(--accent);
    position: relative;
    overflow: hidden;
}

/* Subtle Kaaba Background - Ultra Light */
.desktop-hero-content::before {
    content: '🕋';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-5deg);
    font-size: 40rem;
    opacity: 0.008;
    z-index: -1;
    pointer-events: none;
    line-height: 1;
    color: #3B82F6;
    filter: blur(2px);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    backdrop-filter: blur(10px);
    border: none;
    padding: 0.625rem 1.5rem;
    border-radius: 50px;
    font-size: 0.938rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 2rem;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.4);
    position: relative;
    z-index: 1;
    animation: badge-glow 2s ease-in-out infinite;
}

.hero-badge i {
    animation: pulse 2s ease-in-out infinite;
}

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

@keyframes badge-glow {
    0%, 100% {
        box-shadow: 0 4px 16px rgba(59, 130, 246, 0.4);
    }
    50% {
        box-shadow: 0 6px 24px rgba(59, 130, 246, 0.6), 0 0 40px rgba(59, 130, 246, 0.25);
    }
}

@keyframes cta-pulse {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(249, 115, 22, 0.4), 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    50% {
        box-shadow: 0 10px 32px rgba(249, 115, 22, 0.5), 0 6px 16px rgba(0, 0, 0, 0.12);
    }
}

.desktop-hero-content h1 {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: #111827;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 12px rgba(59, 130, 246, 0.15);
    max-width: 100%;
}

/* Pondok Name - Keep on One Line */
.pondok-name {
    display: inline-block;
    white-space: nowrap;
    font-size: 0.95em;
}

.desktop-hero-content p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 3rem;
    max-width: 90%;
    font-weight: 500;
}

.desktop-hero-cta-group {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary-cta,
.btn-secondary-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary-cta {
    background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
    color: #FFFFFF;
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.4), 0 4px 12px rgba(0, 0, 0, 0.1);
    border: none;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    font-size: 1.125rem;
    font-weight: 800;
    animation: cta-pulse 2s ease-in-out infinite;
}

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

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

.btn-primary-cta:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 32px rgba(249, 115, 22, 0.5), 0 6px 16px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #EA580C 0%, #C2410C 100%);
}

.btn-secondary-cta {
    background: #FFFFFF;
    backdrop-filter: blur(10px);
    color: #1E40AF;
    border: none;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.2), 0 2px 8px rgba(0, 0, 0, 0.08);
    font-weight: 700;
}

.btn-secondary-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-secondary-cta:hover::before {
    width: 300px;
    height: 300px;
}

.btn-secondary-cta:hover {
    background: #EFF6FF;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3), 0 3px 10px rgba(0, 0, 0, 0.1);
    color: #1E3A8A;
}

/* Hero Slider */
.desktop-hero-slider {
    position: relative;
}

.desktop-slider-container {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    background: var(--primary);
}

/* Ka'bah Besar Memenuhi Slider */
.desktop-slider-container::before {
    content: '🕋';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-8deg);
    font-size: 35rem;
    opacity: 0.08;
    z-index: 1;
    pointer-events: none;
    line-height: 1;
}

/* Overlay gradient untuk depth */
.desktop-slider-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 40%, rgba(59, 130, 246, 0.05) 0%, transparent 60%),
        radial-gradient(circle at 70% 60%, rgba(96, 165, 250, 0.04) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

.desktop-slide {
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.desktop-slide.active {
    display: block;
    animation: slideEnter 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* Show image with smooth animation */
.desktop-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background: var(--primary);
    opacity: 0;
    transform: scale(0.95);
}

.desktop-slide.active img {
    display: block;
    animation: imageReveal 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* Smooth Slide Enter Animation */
@keyframes slideEnter {
    0% {
        opacity: 0;
        transform: translateX(30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Image Reveal Animation - Smooth & Professional */
@keyframes imageReveal {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.desktop-slider-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 100;
}

.desktop-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.desktop-slider-dot.active {
    background: var(--blue-medium);
    width: 32px;
    border-radius: 6px;
}

/* ==========================================
   SCHEDULE SECTION - CLEAN PROFESSIONAL
   ========================================== */
.desktop-schedule-section {
    padding: 5rem 0;
    background: #FFFFFF;
    position: relative;
}

/* Subtle Light Pattern */
.desktop-schedule-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 15% 25%, rgba(59, 130, 246, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(147, 197, 253, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

/* Clock Icon Decoration */
.desktop-schedule-section::after {
    content: '⏰';
    position: absolute;
    bottom: 5%;
    right: 3%;
    font-size: 12rem;
    opacity: 0.03;
    pointer-events: none;
}

.desktop-schedule-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    position: relative;
    z-index: 1;
}

.desktop-schedule-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.desktop-schedule-card {
    background: linear-gradient(135deg, #FFF5F0 0%, #FFFFFF 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(249, 115, 22, 0.25);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.15);
    position: relative;
    overflow: hidden;
}

.desktop-schedule-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #F97316 0%, #EA580C 50%, #DC2626 100%);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

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

.desktop-schedule-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 16px 40px rgba(249, 115, 22, 0.25);
    border-color: rgba(249, 115, 22, 0.4);
    background: linear-gradient(135deg, #FFF7ED 0%, #FFFFFF 100%);
}

.desktop-schedule-card i {
    font-size: 3rem;
    color: #F97316;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 2px 8px rgba(249, 115, 22, 0.4));
    animation: urgentPulse 1.5s ease-in-out infinite;
}

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

.desktop-schedule-card h3 {
    color: #1F2937;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.desktop-schedule-card .card-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
}

.desktop-schedule-card .card-title h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1F2937;
}

.desktop-schedule-card .card-title i {
    font-size: 2rem;
    color: #F97316;
    filter: drop-shadow(0 2px 8px rgba(249, 115, 22, 0.5));
}

.desktop-schedule-card .card-title-reverse {
    flex-direction: row;
}

/* Pendaftaran card - text on right */
.desktop-schedule-card:first-child .card-title {
    justify-content: flex-end;
}

/* Tes Masuk card - text on left */
.desktop-schedule-card:last-child .card-title {
    justify-content: flex-start;
}

.desktop-schedule-card .card-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.desktop-schedule-card .info-row {
    display: flex;
    flex-direction: column;
    gap: 0rem;
    padding: 0;
    background: linear-gradient(135deg, rgba(255, 247, 237, 0.8) 0%, rgba(255, 255, 255, 0.6) 100%);
    border-radius: 12px;
    border: 2px solid rgba(249, 115, 22, 0.25);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.08);
    overflow: hidden;
}

.desktop-schedule-card .info-row:hover {
    border-color: rgba(249, 115, 22, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.2);
    background: linear-gradient(135deg, rgba(254, 243, 199, 0.9) 0%, rgba(255, 247, 237, 0.8) 100%);
}

.desktop-schedule-card .label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #6B7280;
    background: transparent;
    padding: 1rem 1.25rem 0.5rem 1.25rem;
    border-radius: 0;
    display: block;
    text-transform: uppercase;
    text-align: center;
}

.desktop-schedule-card .value {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1F2937;
    padding: 0.5rem 1.25rem 1rem 1.25rem;
    text-align: center;
    text-shadow: none;
}

/* Countdown - Islamic Green Cheerful Theme */
.desktop-countdown-wrapper {
    background: linear-gradient(135deg, #F0FDF4 0%, #FFFFFF 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(16, 185, 129, 0.25);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    color: #1F2937;
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.15);
    position: relative;
    overflow: hidden;
}

/* Subtle Islamic Green Glow Pattern */
.desktop-countdown-wrapper::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background:
        radial-gradient(ellipse at 30% 100%, rgba(16, 185, 129, 0.12) 0%, transparent 40%),
        radial-gradient(ellipse at 70% 100%, rgba(52, 211, 153, 0.1) 0%, transparent 50%);
    opacity: 0.9;
    z-index: 0;
    pointer-events: none;
}

.desktop-countdown-wrapper > * {
    position: relative;
    z-index: 1;
}

.desktop-countdown-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: #065F46;
    text-shadow: 0 2px 8px rgba(16, 185, 129, 0.15);
}

.desktop-countdown-title i {
    color: #10B981;
    filter: drop-shadow(0 2px 8px rgba(16, 185, 129, 0.4));
}

.desktop-countdown-timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.desktop-countdown-item {
    text-align: center;
    background: #FFFFFF;
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: 16px;
    min-width: 120px;
    border: 2px solid rgba(16, 185, 129, 0.2);
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.12);
    transition: all 0.3s ease;
}

.desktop-countdown-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(16, 185, 129, 0.2);
    border-color: rgba(16, 185, 129, 0.3);
    background: #F0FDF4;
}

.desktop-countdown-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: #10B981;
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 8px rgba(16, 185, 129, 0.25);
}

.desktop-countdown-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    font-weight: 700;
    color: #065F46;
    letter-spacing: 1px;
}

.desktop-countdown-separator {
    font-size: 3rem;
    font-weight: 700;
    color: #10B981;
    align-self: center;
    margin-top: -0.5rem;
    opacity: 0.7;
}

.desktop-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

/* ==========================================
   PROGRAMS SECTION - CLEAN PROFESSIONAL
   ========================================== */
.desktop-programs-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #F3F4F6 0%, #EFF6FF 100%);
    position: relative;
}

/* Subtle Light Pattern */
.desktop-programs-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(147, 197, 253, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

/* Remove decorative emoji */
.desktop-programs-section::after {
    display: none;
}

/* ==========================================
   QUOTA SECTION - CLEAN PROFESSIONAL
   ========================================== */
#quota.desktop-programs-section {
    background: #FFFFFF;
}

/* Program Cards Section - Clean with Light Blue Accent */
#program.desktop-programs-section {
    background: linear-gradient(135deg, #F3F4F6 0%, #EFF6FF 100%);
    position: relative;
}

#program.desktop-programs-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(16, 185, 129, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

/* Program Section Title - Dark Text */
#program.desktop-programs-section .desktop-section-title h2 {
    color: #1F2937;
    text-shadow: 0 2px 8px rgba(59, 130, 246, 0.1);
    font-weight: 800;
}

#program.desktop-programs-section .desktop-section-title p {
    color: #4B5563;
}

.desktop-programs-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    position: relative;
    z-index: 1;
}

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

.desktop-section-title h2 {
    font-size: 2.5rem;
    color: #1F2937;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(59, 130, 246, 0.1);
}

.desktop-section-title p {
    font-size: 1.125rem;
    color: #4B5563;
}

/* Quota section - Clean Theme */
#quota.desktop-programs-section .desktop-section-title h2 {
    color: #1F2937;
    text-shadow: 0 2px 8px rgba(59, 130, 246, 0.1);
    font-weight: 800;
}

#quota.desktop-programs-section .desktop-section-title p {
    color: #4B5563;
}

/* Quota Table - Clean Professional Theme */
.desktop-quota-table-wrapper {
    background: #FFFFFF;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(59, 130, 246, 0.15);
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    position: relative;
}

.desktop-quota-table-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3B82F6 0%, #10B981 50%, #3B82F6 100%);
}

/* Remove decorative pattern */
.desktop-quota-table-wrapper::after {
    display: none;
}

.desktop-quota-table {
    width: 100%;
    border-collapse: collapse;
    position: relative;
    z-index: 1;
}

.desktop-quota-table thead {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    color: #FFFFFF;
    position: relative;
}

.desktop-quota-table thead::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.desktop-quota-table th {
    padding: 1.75rem 1.5rem;
    text-align: left;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #FFFFFF;
    position: relative;
}

.desktop-quota-table tbody tr {
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
    background: transparent;
}

.desktop-quota-table tbody tr:hover {
    background: rgba(59, 130, 246, 0.04);
    transform: translateX(0);
}

.desktop-quota-table tbody tr:last-child {
    border-bottom: none;
}

.desktop-quota-table td {
    padding: 1.75rem 1.5rem;
    font-size: 1rem;
    color: #1F2937;
    position: relative;
}

.quota-value {
    font-weight: 600;
    color: #4B5563;
    font-size: 1.125rem;
}

.quota-remaining {
    font-weight: 700;
    font-size: 1.5rem;
    color: #3B82F6;
}

.quota-available {
    color: #10B981;
}

.quota-full {
    color: #EF4444;
}

/* Program Cards - Clean & Simple Layout */
.desktop-program-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.desktop-program-card {
    background: #FFFFFF;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(59, 130, 246, 0.15);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.desktop-program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3B82F6 0%, #10B981 50%, #3B82F6 100%);
}

.desktop-program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
}

.desktop-program-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.desktop-program-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 14, 39, 0.4) 100%);
    z-index: 1;
}

.desktop-program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.desktop-program-card:hover .desktop-program-image img {
    transform: scale(1.05);
}

.desktop-program-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    z-index: 2;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.desktop-program-badge i {
    font-size: 1rem;
}

.desktop-program-badge.sd {
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
    color: #FFFFFF;
}

.desktop-program-badge.smp {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: #FFFFFF;
}

.desktop-program-badge.sma {
    background: linear-gradient(135deg, #1D4ED8 0%, #1E40AF 100%);
    color: #FFFFFF;
}

.desktop-program-badge.s1 {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    color: #FFFFFF;
}

.desktop-program-badge.s2 {
    background: linear-gradient(135deg, #7C3AED 0%, #6D28D9 100%);
    color: #FFFFFF;
}

.desktop-program-badge.s3 {
    background: linear-gradient(135deg, #4B5563 0%, #374151 100%);
    color: #FFFFFF;
}

.desktop-program-badge.tahfidz {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: #FFFFFF;
}

.desktop-program-badge.it {
    background: linear-gradient(135deg, #06B6D4 0%, #0891B2 100%);
    color: #FFFFFF;
}

.desktop-program-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    text-align: center;
    align-items: center;
}

.desktop-program-content h3 {
    font-size: 1.75rem;
    color: #1F2937;
    font-weight: 700;
    margin-bottom: 1rem;
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    display: block;
    transition: all 0.3s ease;
}

.desktop-program-content h3:hover {
    transform: none;
    box-shadow: none;
    background: transparent;
}

.desktop-program-description {
    color: #6B7280;
    margin-bottom: auto;
    line-height: 1.7;
    font-size: 0.938rem;
    max-width: 90%;
}

.desktop-program-info-grid {
    background: rgba(253, 253, 253, 0);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 1rem;
}

.desktop-info-item {
    text-align: center;
    flex: 0 0 auto;
    background: rgba(253, 253, 253, 0);
    border-radius: 16px;
    border: 2px solid rgba(100, 101, 102, 0.027);
    padding: 1rem 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0);
    position: relative;
    overflow: hidden;
}

.desktop-info-item:hover {
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
}

.desktop-info-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3B82F6 0%, #10B981 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.desktop-info-item:hover::before {
    transform: scaleX(1);
}

.desktop-info-item i {
    font-size: 2rem;
    color: #3B82F6;
    margin-bottom: 0.75rem;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(59, 130, 246, 0.5));
    transition: all 0.3s ease;
}

.desktop-info-item:hover i {
    transform: scale(1.1);
    color: #10B981;
}

.desktop-info-item .label {
    font-size: 0.75rem;
    color: #6B7280;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 0.5rem;
}

.desktop-info-item .value {
    font-size: 0.875rem;
    font-weight: 800;
    color: #1F2937;
    display: block;
    text-shadow: none;
    letter-spacing: 0.5px;
}

.desktop-info-item.quota-highlight .value {
    font-size: 0.875rem;
    color: #10B981;
    text-shadow: none;
}

.desktop-info-item.quota-full .value {
    color: #EF4444;
    text-shadow: none;
}

.desktop-program-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    margin-top: 1.5rem;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 0.875rem 1.75rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 0.875rem;
}

.btn-primary {
    background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.4);
    border: 2px solid rgba(251, 146, 60, 0.4);
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.5);
    border-color: rgba(253, 186, 116, 0.6);
    background: linear-gradient(135deg, #EA580C 0%, #C2410C 100%);
}

.btn-outline-blue {
    background: #FFFFFF;
    backdrop-filter: blur(10px);
    color: #3B82F6;
    border: 2px solid #3B82F6;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.15);
    transition: all 0.3s ease;
}

.btn-outline-blue:hover {
    background: #EFF6FF;
    color: #2563EB;
    border-color: #2563EB;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
}

.btn-disabled {
    background: rgba(31, 41, 55, 0.5);
    color: #6B7280;
    cursor: not-allowed;
    border: 2px solid rgba(107, 114, 128, 0.3);
}

/* Button Info - "Terjawab Pertanyaanku" Style */
.btn-table-info {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.35);
    border: 2px solid rgba(147, 197, 253, 0.4);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

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

.btn-table-info:hover::before {
    left: 100%;
}

.btn-table-info::after {
    content: '📋';
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%) scale(0);
    font-size: 1.125rem;
    transition: all 0.3s ease;
    opacity: 0;
}

.btn-table-info:hover::after {
    transform: translateY(-50%) scale(1);
    opacity: 1;
}

.btn-table-info i {
    font-size: 1rem;
    transition: all 0.3s ease;
    animation: infoIconPulse 2.5s ease-in-out infinite;
}

@keyframes infoIconPulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: scale(1.2) rotate(15deg);
        opacity: 0.8;
    }
}

.btn-table-info:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 28px rgba(59, 130, 246, 0.5),
                0 0 0 4px rgba(59, 130, 246, 0.1);
    background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
    border-color: rgba(191, 219, 254, 0.6);
    padding-left: 2.25rem;
}

.btn-table-info:hover i {
    transform: translateX(4px) scale(1.1);
    animation: none;
}

.btn-table-info:active {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.4);
}

/* Button Success - "Daftar" Style - CTA Orange/Amber */
.btn-table-success {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.45),
                0 0 0 0 rgba(245, 158, 11, 0.4);
    border: 2px solid rgba(251, 191, 36, 0.5);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    margin-left: 0.5rem;
    animation: ctaPulse 2s ease-in-out infinite;
}

@keyframes ctaPulse {
    0%, 100% {
        box-shadow: 0 4px 16px rgba(245, 158, 11, 0.45),
                    0 0 0 0 rgba(245, 158, 11, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(245, 158, 11, 0.6),
                    0 0 0 6px rgba(245, 158, 11, 0.2);
    }
}

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

.btn-table-success:hover::before {
    left: 100%;
}

.btn-table-success::after {
    content: '✍️';
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%) scale(0);
    font-size: 1.125rem;
    transition: all 0.3s ease;
    opacity: 0;
}

.btn-table-success:hover::after {
    transform: translateY(-50%) scale(1);
    opacity: 1;
}

.btn-table-success i {
    font-size: 1rem;
    transition: all 0.3s ease;
    animation: successIconPulse 2s ease-in-out infinite;
}

@keyframes successIconPulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: scale(1.3) rotate(-20deg);
        opacity: 0.9;
    }
}

.btn-table-success:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 10px 32px rgba(245, 158, 11, 0.65),
                0 0 0 6px rgba(245, 158, 11, 0.15);
    background: linear-gradient(135deg, #D97706 0%, #B45309 100%);
    border-color: rgba(251, 191, 36, 0.7);
    padding-left: 2.25rem;
    animation: none;
}

.btn-table-success:hover i {
    transform: translateX(4px) scale(1.2) rotate(5deg);
    animation: none;
}

.btn-table-success:active {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
}

/* ==========================================
   FLOATING QUOTA SIDEBAR - DESKTOP
   ========================================== */
.desktop-floating-quota-sidebar {
    position: fixed;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9998;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.desktop-floating-quota-title {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 0.75rem 2.5rem 0.75rem 1rem;
    border-radius: 12px 12px 0 0;
    text-align: center;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.desktop-floating-quota-title i {
    animation: pulse 2s ease-in-out infinite;
}

.desktop-floating-quota-toggle {
    position: absolute;
    right: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.75rem;
    transition: all 0.3s ease;
}

.desktop-floating-quota-toggle:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1) rotate(90deg);
}

.desktop-floating-quota-card {
    background: #FFFFFF;
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 14px;
    padding: 1rem 1.25rem;
    min-width: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.625rem;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.15);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
}

.desktop-floating-quota-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10B981 0%, #059669 100%);
    transition: all 0.3s ease;
}

.desktop-floating-quota-card:hover {
    transform: translateX(-8px) scale(1.05);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.25);
    border-color: rgba(16, 185, 129, 0.5);
}

.desktop-floating-quota-card:hover::before {
    height: 6px;
}

.desktop-floating-quota-card.quota-zero-card {
    background: #FFFFFF;
    border: 2px solid rgba(239, 68, 68, 0.3);
    box-shadow: 0 4px 16px rgba(239, 68, 68, 0.12);
}

.desktop-floating-quota-card.quota-zero-card::before {
    background: linear-gradient(90deg, #EF4444 0%, #DC2626 100%);
}

.desktop-floating-quota-card.quota-zero-card:hover {
    box-shadow: 0 8px 24px rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.5);
}

/* Disabled State - Tidak bisa diklik */
.desktop-floating-quota-card.disabled {
    cursor: not-allowed;
    opacity: 0.65;
    pointer-events: none;
}

.desktop-floating-quota-card.disabled:hover {
    transform: none;
    box-shadow: 0 4px 16px rgba(239, 68, 68, 0.12);
    border-color: rgba(239, 68, 68, 0.3);
}

.desktop-floating-quota-card.disabled::before {
    background: linear-gradient(90deg, #9CA3AF 0%, #6B7280 100%);
}

.desktop-floating-quota-card.disabled .desktop-floating-quota-program-name {
    color: #9CA3AF;
}

.desktop-floating-quota-card.disabled .desktop-floating-quota-number {
    color: #9CA3AF;
    text-shadow: none;
}

.desktop-floating-quota-card.disabled .desktop-floating-quota-sublabel {
    color: #9CA3AF;
}

.desktop-floating-quota-program-name {
    color: #1F2937;
    font-size: 0.75rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
    text-transform: capitalize;
    letter-spacing: 0.3px;
    min-height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.desktop-floating-quota-number {
    color: #10B981;
    font-size: 2.25rem;
    font-weight: 900;
    line-height: 1;
    text-shadow: 0 2px 8px rgba(16, 185, 129, 0.2);
    transition: all 0.3s ease;
}

.desktop-floating-quota-card:hover .desktop-floating-quota-number {
    transform: scale(1.1);
}

.desktop-floating-quota-card.quota-zero-card .desktop-floating-quota-number {
    color: #EF4444;
    text-shadow: 0 2px 8px rgba(239, 68, 68, 0.2);
}

.desktop-floating-quota-number.zero {
    opacity: 0.7;
}

.desktop-floating-quota-sublabel {
    color: #6B7280;
    font-size: 0.6875rem;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

/* Hidden State */
.desktop-floating-quota-sidebar.hidden {
    transform: translateY(-50%) translateX(calc(100% + 2rem));
    opacity: 0;
    pointer-events: none;
}

/* Show Button when sidebar is hidden */
.desktop-floating-quota-show-btn {
    position: fixed;
    right: -60px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: center;
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    color: #FFFFFF;
    border: 2px solid rgba(251, 191, 36, 0.4);
    padding: 0.75rem 1.5rem;
    border-radius: 12px 12px 0 0;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    z-index: 9997;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
    transition: all 0.3s ease;
    display: none;
    gap: 0.5rem;
    align-items: center;
}

.desktop-floating-quota-show-btn.visible {
    display: flex;
}

.desktop-floating-quota-show-btn:hover {
    right: -55px;
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
}

.desktop-floating-quota-show-btn i {
    font-size: 0.875rem;
}

/* Hide on tablet and mobile */
@media (max-width: 1024px) {
    .desktop-floating-quota-sidebar,
    .desktop-floating-quota-show-btn {
        display: none !important;
    }
}

/* ==========================================
   SCROLL TO TOP BUTTON - FLOATING
   ========================================== */
.scroll-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    color: #FFFFFF;
    border: 2px solid rgba(96, 165, 250, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px) scale(0.8);
}

.scroll-to-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.scroll-to-top-btn:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 28px rgba(59, 130, 246, 0.5);
    border-color: rgba(96, 165, 250, 0.8);
}

.scroll-to-top-btn:active {
    transform: translateY(-2px) scale(1.05);
}

.scroll-to-top-btn i {
    animation: bounceUp 2s ease-in-out infinite;
}

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

/* Responsive - Mobile positioning */
@media (max-width: 768px) {
    .scroll-to-top-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.125rem;
    }
}

/* ==========================================
   FOOTER - CLEAN PROFESSIONAL
   ========================================== */
.desktop-footer {
    background: linear-gradient(180deg, #1F2937 0%, #111827 100%);
    color: #F3F4F6;
    padding: 5rem 0 2rem;
    position: relative;
    overflow: hidden;
}

/* Subtle Footer Pattern */
.desktop-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 85% 80%, rgba(16, 185, 129, 0.06) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

/* Decorative Mosque Icon */
.desktop-footer::after {
    content: '🕌';
    position: absolute;
    bottom: 5%;
    right: 3%;
    font-size: 12rem;
    opacity: 0.04;
    z-index: 0;
    pointer-events: none;
}

.desktop-footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    position: relative;
    z-index: 1;
}

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

.desktop-footer-about h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
}

.desktop-footer-about h3 i {
    color: #10B981;
    filter: drop-shadow(0 2px 8px rgba(16, 185, 129, 0.4));
}

.desktop-footer-about p {
    color: #D1D5DB;
    opacity: 0.95;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.desktop-footer-contact h4,
.desktop-footer-links h4 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.75rem;
}

.desktop-footer-contact h4::after,
.desktop-footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #3B82F6 0%, #10B981 100%);
    border-radius: 2px;
}

.desktop-footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #D1D5DB;
}

.desktop-footer-contact p i {
    width: 20px;
    text-align: center;
    font-size: 1.125rem;
    flex-shrink: 0;
    color: #3B82F6;
}

.desktop-footer-contact a {
    color: #D1D5DB;
    text-decoration: none;
    transition: all 0.3s ease;
    line-height: 1.5;
}

.desktop-footer-contact a:hover {
    color: #3B82F6;
    transform: translateX(3px);
}

.desktop-footer-links ul {
    list-style: none;
}

.desktop-footer-links ul li {
    margin-bottom: 0.875rem;
}

.desktop-footer-links ul li a {
    color: #D1D5DB;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.desktop-footer-links ul li a::before {
    content: '→';
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.desktop-footer-links ul li a:hover {
    color: #10B981;
    padding-left: 0.5rem;
}

.desktop-footer-links ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Maps */
.desktop-footer-maps {
    margin-bottom: 4rem;
}

.desktop-footer-maps h4 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.75rem;
}

.desktop-footer-maps h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #3B82F6 0%, #10B981 100%);
    border-radius: 2px;
}

.desktop-footer-maps h4 i {
    color: #EF4444;
    filter: drop-shadow(0 2px 8px rgba(239, 68, 68, 0.4));
}

.desktop-maps-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 450px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    background: var(--bg-light);
}

/* Maps Loading Placeholder */
.maps-loading {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    z-index: 5;
}

.maps-loading i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.maps-loading p {
    font-size: 1.125rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.maps-loading small {
    font-size: 0.875rem;
    color: var(--text-light);
}

.desktop-maps-canvas {
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: none !important;
}

/* Complete overlay to block ALL interactions - zoom, scroll, drag */
.desktop-maps-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 100;
    cursor: default;
    pointer-events: auto;
}

/* Static Maps Placeholder */
.maps-static-placeholder {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, #2563EB 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.maps-static-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.maps-static-placeholder:hover {
    transform: scale(1.01);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.maps-static-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 2rem;
}

.maps-static-content > i {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.maps-static-content h4 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.maps-static-content p {
    font-size: 1.25rem;
    font-weight: 500;
    opacity: 0.95;
    margin-bottom: 2rem;
}

.maps-static-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15rem;
    opacity: 0.08;
    pointer-events: none;
}

.maps-static-marker i {
    display: block;
}

.desktop-maps-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.desktop-maps-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: var(--error);
    animation: markerPulse 2s ease-in-out infinite;
}

@keyframes markerPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.2); }
}

.desktop-maps-label {
    position: absolute;
    top: calc(50% - 70px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--accent);
    padding: 0.625rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    white-space: nowrap;
    animation: labelBlink 6s ease-in-out infinite;
}

@keyframes labelBlink {
    0%, 33% { background: var(--primary); color: var(--accent); }
    34%, 66% { background: var(--blue-light); color: var(--primary); }
    67%, 100% { background: var(--primary); color: var(--accent); }
}

.desktop-maps-button {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%) !important;
    pointer-events: auto !important;
    z-index: 101;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.4);
    transition: box-shadow 0.3s ease, opacity 0.3s ease;
}

.desktop-maps-button:hover {
    transform: translateX(-50%) !important;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
    opacity: 0.95;
}

.desktop-maps-button:active {
    transform: translateX(-50%) !important;
}

/* Footer Bottom */
.desktop-footer-bottom {
    border-top: 2px solid rgba(59, 130, 246, 0.2);
    padding-top: 2rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    margin: 0 -3rem -2rem -3rem;
    padding: 2rem 3rem;
}

.desktop-footer-copyright {
    color: #D1D5DB;
    opacity: 0.9;
    margin-bottom: 1rem;
    font-size: 0.9375rem;
}

.desktop-footer-elfath {
    color: #3B82F6;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.desktop-footer-elfath:hover {
    color: #10B981;
    transform: translateY(-2px);
}

.desktop-footer-elfath::after {
    content: '→';
    transition: transform 0.3s ease;
}

.desktop-footer-elfath:hover::after {
    transform: translateX(5px);
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1200px) {
    .desktop-program-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .desktop-hero-container {
        gap: 3rem;
    }

    .desktop-hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .desktop-hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .desktop-slider-container {
        height: 500px;
    }

    .desktop-footer-top {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .desktop-nav-menu {
        display: none;
    }
}

@media (max-width: 768px) {
    .desktop-program-cards-grid {
        grid-template-columns: 1fr;
    }

    .desktop-schedule-grid {
        grid-template-columns: 1fr;
    }

    .desktop-countdown-timer {
        gap: 0.75rem;
        flex-wrap: wrap;
    }

    .desktop-countdown-item {
        padding: 1rem 1.25rem;
        min-width: 90px;
    }

    .desktop-countdown-number {
        font-size: 2.25rem;
    }

    .desktop-countdown-label {
        font-size: 0.75rem;
    }

    .desktop-countdown-separator {
        font-size: 2rem;
        display: none;
    }

    .desktop-countdown-title {
        font-size: 1.25rem;
    }

    .desktop-hero-content h1 {
        font-size: 2.5rem;
    }

    .pondok-name {
        font-size: 0.9em;
    }
}

/* Additional responsive for smaller tablets and large phones */
@media (max-width: 1024px) {
    .desktop-hero-content h1 {
        font-size: 2.75rem;
    }

    .pondok-name {
        font-size: 0.92em;
    }
}

/* Fine-tune for medium screens */
@media (min-width: 1025px) and (max-width: 1366px) {
    .desktop-hero-content h1 {
        font-size: 2.85rem;
    }
}

/* ==========================================
   SMOOTH SCROLLING
   ========================================== */
html {
    scroll-behavior: smooth;
}

section {
    scroll-margin-top: 100px;
}
