/* ==========================================
   PSB AR-RISALAH - MOBILE FRIENDLY DESIGN
   Website Penerimaan Santri Baru
   ========================================== */

/* ==================== CSS VARIABLES ==================== */
:root {
    /* Original Colors (kept for compatibility) */
    --primary-green: #10B981;
    --secondary-green: #059669;
    --light-green: #34D399;
    --gold: #F59E0B;
    --gold-dark: #D97706;
    --cream: #FEF3C7;
    --white: #FFFFFF;
    --dark: #1F2937;
    --gray: #6B7280;
    --light-gray: #F3F4F6;

    /* New Colorful Palette */
    --primary-blue: #2563EB;
    --primary-purple: #8B5CF6;
    --primary-orange: #F59E0B;
    --primary-red: #EF4444;
    --primary-pink: #EC4899;
    --primary-teal: #14B8A6;
    --primary-yellow: #FBBF24;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);

    /* Colorful Gradients */
    --gradient-blue: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    --gradient-green: linear-gradient(135deg, #34D399 0%, #10B981 100%);
    --gradient-purple: linear-gradient(135deg, #A78BFA 0%, #8B5CF6 100%);
    --gradient-orange: linear-gradient(135deg, #FBBF24 0%, #F59E0B 100%);
    --gradient-red: linear-gradient(135deg, #F87171 0%, #EF4444 100%);
    --gradient-pink: linear-gradient(135deg, #F472B6 0%, #EC4899 100%);
    --gradient-teal: linear-gradient(135deg, #2DD4BF 0%, #14B8A6 100%);
    --gradient-yellow: linear-gradient(135deg, #FDE047 0%, #FBBF24 100%);

    /* Fonts */
    --font-main: 'Poppins', sans-serif;
    --font-arabic: 'Amiri', serif;

    /* Transitions */
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

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

/* ==================== CONTAINER ==================== */
.container {
    width: 100%;
    max-width: 1400px; /* Sama dengan slider */
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

/* ==================== HERO SLIDER (Full Width, No Overlay) ==================== */
.hero-slider {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    background: #ffffff;
}

.slider-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    height: 650px; /* Height tetap sama untuk semua device */
    margin: 0 auto;
    padding: 0; /* No padding - full width */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Slides - ABATA Style dengan Fixed Dimensions */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%; /* Full width - no padding */
    height: 100%; /* Ikuti height container */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    position: relative;
    left: auto;
    right: auto;
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Gambar memenuhi area penuh */
    object-position: center;
    display: block;
}

/* Slider Buttons - Clean Design */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(15, 81, 50, 0.8);
    backdrop-filter: blur(5px);
    border: 2px solid var(--gold);
    color: var(--gold);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.slider-btn:hover {
    background: var(--primary-green);
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
    left: 1rem;
}

.slider-btn.next {
    right: 1rem;
}

/* Slider Dots - Clean Design */
.slider-dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 0.75rem;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid var(--primary-green);
}

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

.dot:hover {
    background: var(--gold);
    border-color: var(--gold);
}

/* ==================== SLIDER INFO SECTION (Below Slider) ==================== */
.slider-info {
    padding: 3.5rem 0;
    background: linear-gradient(180deg,
        #FFFFFF 0%,
        #FAFBF8 50%,
        #FFFFFF 100%
    );
    color: var(--primary-green);
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 4px solid var(--gold);
    border-bottom: 4px solid var(--gold);
    box-shadow:
        0 8px 30px rgba(15, 81, 50, 0.12),
        inset 0 2px 0 rgba(212, 175, 55, 0.2),
        inset 0 -2px 0 rgba(212, 175, 55, 0.2);
}

/* Islamic Geometric Pattern Background */
.slider-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 25px,
            rgba(212, 175, 55, 0.03) 25px,
            rgba(212, 175, 55, 0.03) 50px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 25px,
            rgba(15, 81, 50, 0.02) 25px,
            rgba(15, 81, 50, 0.02) 50px
        ),
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.06) 0%, transparent 50%);
    opacity: 1;
    pointer-events: none;
}

.slider-info-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.info-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-teal) 50%, var(--primary-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(2px 2px 6px rgba(37, 99, 235, 0.3));
    letter-spacing: 1.2px;
    line-height: 1.2;
}

/* ==================== ARTISTIC SUBTITLE WRAPPER (Simple & Clean) ==================== */
.info-subtitle-wrapper {
    margin: 0.5rem 0 2rem;
    padding: 0.5rem 1rem;
}

/* Decorative Stars */
.decorative-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    margin: 0.25rem 0;
}

.decorative-stars .star {
    color: var(--gold);
    font-size: 0.875rem;
    opacity: 0.8;
}

.decorative-stars .divider {
    width: 120px;
    height: 1px;
    background: var(--gold);
    opacity: 0.6;
}

/* Year Box - Enhanced Design */
.year-box {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    border: 3px solid var(--primary-orange);
    border-radius: 16px;
    padding: 1rem 3rem;
    margin: 1rem 0;
    background: linear-gradient(135deg,
        rgba(245, 158, 11, 0.12) 0%,
        rgba(59, 130, 246, 0.08) 50%,
        rgba(16, 185, 129, 0.05) 100%
    );
    box-shadow:
        0 4px 15px rgba(245, 158, 11, 0.25),
        inset 0 2px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 0 rgba(245, 158, 11, 0.3);
    position: relative;
    overflow: hidden;
}

.year-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    animation: shimmer 3s infinite;
}

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

.year-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-green);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 0.35rem;
    opacity: 0.85;
    position: relative;
    z-index: 1;
}

.year-value {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3.5px;
    filter: drop-shadow(0 2px 4px rgba(245, 158, 11, 0.4));
    position: relative;
    z-index: 1;
}

/* Motto - Simple with Crescents */
.motto {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0.75rem 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.motto .crescent {
    font-size: 1.25rem;
    animation: colorBlink 2s ease-in-out infinite;
}

/* Random Color Blink Animation for Crescent */
@keyframes colorBlink {
    0% { color: var(--gold); }
    14% { color: #FFD700; }
    28% { color: #FFA500; }
    42% { color: #FF6B6B; }
    56% { color: #4ECDC4; }
    70% { color: #95E1D3; }
    84% { color: #F38181; }
    100% { color: var(--gold); }
}

.motto-text {
    font-size: 1.0625rem;
    font-weight: 500;
    font-style: italic;
    line-height: 1.6;
    color: var(--primary-green);
    margin: 0;
    text-align: center;
    opacity: 0.9;
}

/* ==================== COUNTDOWN TIMER - URGENT & NO BACKGROUND ==================== */
.countdown-wrapper {
    margin: 1.25rem 0;
    padding: 0.5rem 0;
    position: relative;
}

.countdown-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.375rem;
    min-width: 70px;
    max-width: 70px;
    padding: 0;
    background: transparent;
    border: none;
    transition: all 0.3s ease;
    overflow: hidden;
}

.countdown-value {
    font-size: 2.25rem;
    font-weight: 900;
    color: #DC143C;
    line-height: 1;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8),
                 0 0 25px rgba(255, 255, 255, 0.6),
                 0 2px 8px rgba(255, 255, 255, 0.4);
    animation: numberUrgent 2s ease-in-out infinite;
    overflow: hidden;
    text-overflow: clip;
    white-space: nowrap;
    display: block;
    width: 100%;
    max-width: 70px;
    text-align: center;
}

@keyframes numberUrgent {
    0%, 100% {
        transform: scale(1);
        text-shadow: 0 0 15px rgba(255, 255, 255, 0.8),
                     0 0 25px rgba(255, 255, 255, 0.6),
                     0 2px 8px rgba(255, 255, 255, 0.4);
    }
    50% {
        transform: scale(1.08);
        text-shadow: 0 0 20px rgba(255, 255, 255, 1),
                     0 0 35px rgba(255, 255, 255, 0.8),
                     0 3px 12px rgba(255, 255, 255, 0.6);
    }
}

.countdown-label {
    font-size: 0.625rem;
    font-weight: 700;
    color: var(--primary-green);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.countdown-separator {
    font-size: 2rem;
    font-weight: 900;
    color: #DC143C;
    opacity: 0.9;
    margin: 0 -0.125rem;
    line-height: 1;
    padding-bottom: 1.25rem;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.7),
                 0 0 20px rgba(255, 255, 255, 0.5);
    animation: separatorUrgent 1.5s ease-in-out infinite;
}

@keyframes separatorUrgent {
    0%, 100% {
        opacity: 0.9;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.1);
    }
}

/* ==================== INFO SCHEDULE (Pendaftaran & Tes Masuk) ==================== */
.info-schedule-wrapper {
    margin: 1rem 0;
    padding: 0.5rem 0;
}

.schedule-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 1rem;
}

.schedule-box {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 0.75rem;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Pendaftaran - Colorful Blue-Teal Theme */
.schedule-box:first-child {
    background: linear-gradient(135deg,
        rgba(37, 99, 235, 0.08) 0%,
        rgba(20, 184, 166, 0.05) 100%);
    border: 2px solid rgba(37, 99, 235, 0.3);
    box-shadow:
        0 2px 8px rgba(37, 99, 235, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.schedule-box:first-child::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(37, 99, 235, 0.03) 10px,
        rgba(37, 99, 235, 0.03) 20px
    );
    animation: slideStripes 25s linear infinite;
}

.schedule-box:first-child:hover {
    border-color: rgba(37, 99, 235, 0.5);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
    transform: translateY(-2px);
}

.schedule-box:first-child .schedule-icon {
    background: rgba(37, 99, 235, 0.12);
    border: 1.5px solid rgba(37, 99, 235, 0.35);
}

.schedule-box:first-child .schedule-icon i {
    color: var(--primary-blue);
}

.schedule-box:first-child .schedule-details strong {
    color: var(--primary-blue);
    text-shadow: none;
}

/* Tes Masuk - Colorful Teal-Green Theme */
.schedule-box:last-child {
    background: linear-gradient(135deg,
        rgba(20, 184, 166, 0.08) 0%,
        rgba(16, 185, 129, 0.05) 100%);
    border: 2px solid rgba(20, 184, 166, 0.3);
    box-shadow:
        0 2px 8px rgba(20, 184, 166, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.schedule-box:last-child::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(20, 184, 166, 0.08) 1px, transparent 1px);
    background-size: 15px 15px;
    animation: moveDots 20s linear infinite;
}

.schedule-box:last-child:hover {
    border-color: rgba(20, 184, 166, 0.5);
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.25);
    transform: translateY(-2px);
}

.schedule-box:last-child .schedule-icon {
    background: rgba(20, 184, 166, 0.12);
    border: 2px solid rgba(20, 184, 166, 0.3);
}

.schedule-box:last-child .schedule-icon i {
    color: var(--primary-teal);
}

.schedule-box:last-child .schedule-details strong {
    color: var(--primary-teal);
    text-shadow: none;
}

/* Animations */
@keyframes slideStripes {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

@keyframes moveDots {
    0% { background-position: 0 0; }
    100% { background-position: 15px 15px; }
}

.schedule-icon {
    position: relative;
    z-index: 1;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 0.25rem;
    animation: iconPulse 2s ease-in-out infinite;
}

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

.schedule-icon i {
    font-size: 1.25rem;
}

.schedule-details {
    position: relative;
    z-index: 1;
    text-align: center;
}

.schedule-details strong {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 0.375rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.schedule-details p {
    font-size: 0.6875rem;
    color: var(--primary-green);
    margin: 0;
    line-height: 1.5;
    font-weight: 500;
    opacity: 0.85;
}

.schedule-details p.time {
    font-size: 0.625rem;
    color: var(--primary-green);
    margin-top: 0.125rem;
    opacity: 0.7;
}

/* Old subtitle (backup) */
.info-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
}

.info-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

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

.btn-outline-dark:hover {
    background: var(--primary-green);
    color: var(--white);
    border-color: var(--primary-green);
    box-shadow: 0 4px 15px rgba(15, 81, 50, 0.3);
    transform: translateY(-2px);
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #F7931E 0%, #E67E22 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--primary-green);
    border-color: var(--primary-green);
    font-weight: 600;
}

.btn-outline:hover {
    background: var(--gradient-green);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    transform: translateY(-2px);
    border-color: var(--primary-green);
}

/* ==================== SECTIONS ==================== */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: var(--white);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 2px solid var(--gold);
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

/* ==================== INFO PENDAFTARAN ==================== */
.info-pendaftaran {
    padding: 4rem 0;
    background: var(--light-gray);
}

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

.info-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

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

.info-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.info-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 1.5rem;
}

.info-details {
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--light-gray);
}

.info-item:last-child {
    border-bottom: none;
}

.info-item i {
    color: var(--gold);
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.info-item strong {
    display: block;
    color: var(--primary-green);
    margin-bottom: 0.25rem;
}

.info-item p {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--gray);
}

/* ==================== PROGRAMS SECTION ==================== */
.programs {
    padding: 1.5rem 0 4rem 0;
    background: var(--white);
}

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

.program-card {
    position: relative;
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 2px solid transparent;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--gold);
}

.program-card.featured {
    border-color: var(--gold);
    background: linear-gradient(to bottom, #FFF8E7, var(--white));
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--gradient-orange);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 16px rgba(245, 158, 11, 0.6);
    }
}

.program-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
}

.program-card:hover .program-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 16px rgba(20, 184, 166, 0.4);
}

.program-card:nth-child(1) .program-icon {
    background: var(--gradient-orange);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.program-card:nth-child(2) .program-icon {
    background: var(--gradient-blue);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.program-card:nth-child(3) .program-icon {
    background: var(--gradient-green);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.program-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-teal);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.program-card:nth-child(1) h3 {
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.program-card:nth-child(2) h3 {
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.program-card:nth-child(3) h3 {
    background: var(--gradient-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.program-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.program-features {
    list-style: none;
    margin-bottom: 2rem;
}

.program-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--dark);
}

.program-features li i {
    color: var(--primary-green);
    font-size: 1rem;
}

/* ==================== FOOTER ==================== */
.footer {
    background: linear-gradient(135deg, #0D9488 0%, #10B981 50%, #059669 100%);
    color: var(--white);
    padding: 3.5rem 0 1.5rem;
    position: relative;
    overflow: hidden;
    border-top: 4px solid var(--primary-orange);
    box-shadow: 0 -4px 20px rgba(16, 185, 129, 0.2);
}

.footer::before {
    content: '🌴';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 120px;
    opacity: 0.06;
    pointer-events: none;
    transform: rotate(-15deg);
    filter: brightness(1.2);
}

.footer::after {
    content: '🌴';
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%) rotate(5deg);
    font-size: 110px;
    opacity: 0.04;
    pointer-events: none;
    filter: brightness(1.25);
}

.footer-bottom::before {
    content: '🌴';
    position: absolute;
    bottom: 20px;
    right: 30px;
    font-size: 100px;
    opacity: 0.05;
    pointer-events: none;
    transform: rotate(20deg) scaleX(-1);
    filter: brightness(1.3);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
    text-align: center;
    align-items: center;
}

.footer-about h3,
.footer-contact h4 {
    background: linear-gradient(135deg, #FBBF24 0%, #FDE047 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.2rem;
    font-weight: 800;
    font-size: 1.5rem;
    filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.4));
    letter-spacing: 0.5px;
}

.footer-about p {
    opacity: 1;
    display: inline-block;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.35rem;
    line-height: 1.5;
    font-weight: 800;
    font-style: italic;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(
        90deg,
        #FFD700 0%,
        #FFF 15%,
        #FFD700 30%,
        #FFF 50%,
        #FFD700 70%,
        #FFF 85%,
        #FFD700 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
    letter-spacing: 1px;
    position: relative;
    padding: 0.75rem 2.5rem;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.3));
}

.footer-about p::before {
    content: '☪';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) rotate(-15deg);
    font-size: 2rem;
    color: var(--gold);
    filter: drop-shadow(0 0 10px var(--gold));
    animation: float-left 3s ease-in-out infinite;
}

.footer-about p::after {
    content: '☪';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(15deg);
    font-size: 2rem;
    color: var(--gold);
    filter: drop-shadow(0 0 10px var(--gold));
    animation: float-right 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

@keyframes float-left {
    0%, 100% {
        transform: translateY(-50%) rotate(-15deg) translateX(0);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-50%) rotate(-20deg) translateX(-5px);
        opacity: 1;
    }
}

@keyframes float-right {
    0%, 100% {
        transform: translateY(-50%) rotate(15deg) translateX(0);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-50%) rotate(20deg) translateX(5px);
        opacity: 1;
    }
}

.footer-contact p {
    opacity: 0.95;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    line-height: 1.6;
}

.footer-contact i {
    color: #FBBF24;
    font-size: 1.25rem;
    filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.5));
}

.footer-link {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-link:hover {
    color: var(--gold);
    text-decoration: underline;
}

.contact-info-row {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-info-row p {
    margin-bottom: 0;
}

@media (max-width: 480px) {
    .contact-info-row {
        flex-direction: column;
        gap: 0.75rem;
    }

    .contact-info-row p {
        margin-bottom: 0.75rem;
    }
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid rgba(212, 175, 55, 0.3);
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    opacity: 0.85;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

/* ==================== MAPS SECTION ==================== */
.maps-section {
    margin-top: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.maps-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.maps-header i {
    font-size: 2rem;
    color: #FBBF24;
    filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.5));
}

.maps-header h3 {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-yellow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.4));
    letter-spacing: 0.5px;
}

.maps-container {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 10px 40px rgba(20, 184, 166, 0.3),
        0 0 0 3px var(--primary-teal),
        inset 0 0 0 3px rgba(255, 255, 255, 0.1);
    border: 4px solid var(--primary-teal);
}

.maps-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.maps-overlay {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.btn-open-maps {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--gradient-teal);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow:
        0 6px 20px rgba(20, 184, 166, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-open-maps:link,
.btn-open-maps:visited {
    color: white !important;
}

.btn-open-maps:hover,
.btn-open-maps:hover:link,
.btn-open-maps:hover:visited {
    transform: translateY(-3px);
    box-shadow:
        0 8px 30px rgba(253, 224, 71, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, #FDE047 0%, #FACC15 100%) !important;
    color: #000000 !important;
    text-shadow: none !important;
    text-decoration: none !important;
    -webkit-text-fill-color: #000000 !important;
}

.btn-open-maps:active {
    transform: translateY(-1px);
    color: #000000 !important;
    -webkit-text-fill-color: #000000 !important;
}

.btn-open-maps i {
    font-size: 1.1rem;
}

/* Responsive Maps */
@media (max-width: 767px) {
    .maps-container {
        height: 300px;
        border-radius: 16px;
    }

    .maps-header h3 {
        font-size: 1.5rem;
    }

    .maps-header i {
        font-size: 1.5rem;
    }

    .btn-open-maps {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }
}

/* ==================== ANIMATIONS ==================== */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== RESPONSIVE - TABLET ==================== */
@media (min-width: 768px) {
    /* Slider - No padding changes (full width) */
    .slider-container {
        padding: 0;
    }

    .slide {
        left: 0;
        right: 0;
        width: 100%;
    }

    /* Slider Info */
    .info-title {
        font-size: 3rem;
    }

    .info-subtitle {
        font-size: 1.5rem;
    }

    .info-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .slider-btn {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .slider-btn.prev {
        left: 2rem;
    }

    .slider-btn.next {
        right: 2rem;
    }

    /* Info Grid */
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Program Grid */
    .program-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Footer */
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* ==================== RESPONSIVE - DESKTOP ==================== */
@media (min-width: 1024px) {
    /* Slider - No padding changes (full width) */
    .slider-container {
        padding: 0;
    }

    .slide {
        left: 0;
        right: 0;
        width: 100%;
    }

    /* Slider Info */
    .info-title {
        font-size: 3.5rem;
    }

    .info-subtitle {
        font-size: 1.75rem;
    }

    .slider-btn {
        width: 70px;
        height: 70px;
    }

    .slider-btn.prev {
        left: 3rem;
    }

    .slider-btn.next {
        right: 3rem;
    }
}

/* ==================== RESPONSIVE - LARGE DESKTOP ==================== */
@media (min-width: 1366px) {
    /* Slider - No padding changes (full width) */
    .slider-container {
        padding: 0;
    }

    .slide {
        left: 0;
        right: 0;
        width: 100%;
    }
}

/* ==================== RESPONSIVE - WIDESCREEN ==================== */
@media (min-width: 1920px) {
    /* Slider - No padding changes (full width) */
    .slider-container {
        padding: 0;
    }

    .slide {
        left: 0;
        right: 0;
        width: 100%;
    }
}

/* ==================== TOUCH DEVICES ==================== */
@media (hover: none) {
    .slider-btn {
        background: rgba(255, 255, 255, 0.3);
    }

    .program-card:active {
        transform: scale(0.98);
    }

    .btn:active {
        transform: scale(0.95);
    }
}

/* ==================== MOBILE SPECIFIC ==================== */
@media (max-width: 767px) {
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .slider-btn.prev {
        left: 0.5rem;
    }

    .slider-btn.next {
        right: 0.5rem;
    }

    .slider-dots {
        bottom: 1rem;
    }

    .dot {
        width: 12px;
        height: 12px;
    }

    /* Slider Info */
    .slider-info {
        padding: 2rem 0;
    }

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

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

    /* Artistic Subtitle - Mobile */
    .info-subtitle-wrapper {
        padding: 0.75rem 0.5rem;
        margin: 1rem 0 1.5rem;
    }

    .decorative-stars .divider {
        width: 80px;
    }

    .decorative-stars .star {
        font-size: 0.75rem;
    }

    .year-box {
        padding: 0.75rem 2rem;
    }

    .year-label {
        font-size: 0.625rem;
        letter-spacing: 1.5px;
    }

    .year-value {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }

    .motto {
        flex-direction: row;
        gap: 0.5rem;
        padding: 0 0.5rem;
    }

    .motto .crescent {
        font-size: 1.125rem;
    }

    .motto-text {
        font-size: 0.9375rem;
    }

    /* Countdown - Mobile */
    .countdown-wrapper {
        padding: 0.375rem 0;
        margin: 1rem 0;
    }

    .countdown-container {
        gap: 0.375rem;
    }

    .countdown-item {
        min-width: 60px;
        padding: 0;
    }

    .countdown-value {
        font-size: 1.75rem;
    }

    .countdown-label {
        font-size: 0.5rem;
        letter-spacing: 0.75px;
    }

    .countdown-separator {
        font-size: 1.5rem;
        margin: 0 -0.125rem;
        padding-bottom: 1rem;
    }

    /* Info Schedule - Mobile */
    .schedule-grid {
        gap: 0.5rem;
        padding: 0 0.5rem;
    }

    .schedule-box {
        padding: 0.75rem 0.5rem;
        gap: 0.375rem;
    }

    .schedule-icon {
        width: 38px;
        height: 38px;
    }

    .schedule-icon i {
        font-size: 1rem;
    }

    .schedule-details strong {
        font-size: 0.625rem;
        letter-spacing: 0.75px;
    }

    .schedule-details p {
        font-size: 0.625rem;
    }

    .schedule-details p.time {
        font-size: 0.5625rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .info-card,
    .program-card {
        padding: 1.5rem;
    }
}

/* ==================== BOTTOM INFO BAR ==================== */
.bottom-info-bar {
    position: fixed;
    bottom: 70px;
    left: 0;
    right: 0;
    width: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    z-index: 999;
    border-top: 3px solid var(--gold);
}

.bottom-info-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.bottom-labels-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.bottom-labels-row > .section-label {
    color: #FFFFFF;
}

.right-labels {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bottom-content-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.divider-vertical {
    color: #FFD700;
    font-size: 0.75rem;
    font-weight: 300;
    opacity: 0.5;
}

.section-label {
    font-size: 0.5rem;
    font-weight: 700;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.bottom-quota-table {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 0.5rem;
    justify-content: center;
}

.quota-mini-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.125rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.25rem 0.375rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.quota-mini-label {
    font-size: 0.5rem;
    font-weight: 600;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quota-mini-value {
    font-size: 0.875rem;
    font-weight: 900;
    color: #25D366;
    line-height: 1;
}

.quota-zero-mini {
    color: #FF4444;
}

.quota-mini-sublabel {
    font-size: 0.375rem;
    font-weight: 500;
    color: rgba(255, 215, 0, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    line-height: 1;
    margin-top: 0.125rem;
}

.deadline-text {
    font-size: 0.625rem;
    font-weight: 700;
    color: #FFFFFF;
    white-space: nowrap;
}


.bottom-countdown {
    display: flex;
    gap: 0.25rem;
    align-items: flex-end;
    justify-content: flex-end;
}

.bottom-countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.125rem;
    position: relative;
}

.countdown-icon {
    font-size: 0.5rem;
    color: #DC143C;
    opacity: 0.7;
    margin-bottom: 0.125rem;
}

.bottom-countdown-item:nth-child(1) .countdown-icon {
    animation: iconBounce 2s ease-in-out infinite;
}

.bottom-countdown-item:nth-child(3) .countdown-icon {
    animation: iconSpin 3s linear infinite;
}

.bottom-countdown-item:nth-child(5) .countdown-icon {
    animation: iconPulse 1.5s ease-in-out infinite;
}

.bottom-countdown-item:nth-child(7) .countdown-icon {
    animation: iconBlink 1s ease-in-out infinite;
}

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

@keyframes iconSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

@keyframes iconBlink {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 0.2; }
}

.bottom-countdown-value {
    font-size: 1.125rem;
    font-weight: 900;
    color: #DC143C;
    line-height: 1;
    min-width: 1.5rem;
    text-align: center;
}

.bottom-countdown-label-item {
    font-size: 0.5rem;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1;
    white-space: nowrap;
}

.bottom-countdown-separator {
    font-size: 1.125rem;
    font-weight: 900;
    color: #DC143C;
    line-height: 1;
    padding-bottom: 0.625rem;
}

@keyframes separatorBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* ==================== BOTTOM NAVIGATION BAR ==================== */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: #1a1a1a;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0.5rem 0 0.75rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    flex: 1;
    position: relative;
}

.nav-item i {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    transition: all 0.3s ease;
}

.nav-item span {
    font-size: 0.625rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-item.active {
    color: var(--gold);
}

.nav-item.active i {
    transform: scale(1.1);
}

.nav-item:not(.nav-item-center):hover {
    color: rgba(255, 255, 255, 0.9);
}

/* WhatsApp Center Button */
.nav-item-center {
    position: relative;
    margin-top: 0;
    flex: 0 0 auto;
}

.nav-center-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    margin-bottom: 0.25rem;
}

.nav-center-icon i {
    color: #FFFFFF;
    font-size: 1.25rem;
    margin: 0;
}

.nav-item-center:hover .nav-center-icon {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.6);
}

.nav-item-center:active .nav-center-icon {
    transform: scale(0.95);
}

.nav-item-center span {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.625rem;
}

/* ==================== QUOTA TABLE ==================== */
.quota-table-wrapper {
    background: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(15, 81, 50, 0.1);
    padding: 2rem;
    margin-top: 0;
    margin-bottom: 2rem;
    border: 3px solid transparent;
    background-image:
        linear-gradient(white, white),
        linear-gradient(90deg, var(--gold), var(--primary-green), var(--gold));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    background-size: 100% 100%, 200% 100%;
    animation: borderShine 3s linear infinite;
    position: relative;
}

@keyframes borderShine {
    0% { background-position: 0% 0%, 0% 0%; }
    100% { background-position: 0% 0%, 200% 0%; }
}

.quota-table-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.75rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-green) 100%);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(20, 184, 166, 0.3);
    border: 3px solid transparent;
    background-image:
        linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-green) 100%),
        linear-gradient(90deg, #FBBF24, #FFFFFF, #FBBF24);
    background-origin: border-box, border-box;
    background-clip: padding-box, border-box;
    background-size: 100% 100%, 200% 100%;
    animation: headerBorderShine 3s linear infinite;
    position: relative;
}

@keyframes headerBorderShine {
    0% { background-position: 0% 0%, 0% 0%; }
    100% { background-position: 0% 0%, 200% 0%; }
}

.quota-table-header i {
    font-size: 2rem;
    color: #FBBF24;
    filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.6));
}

.quota-table-header h3 {
    font-size: 1.5rem;
    font-weight: 900;
    background: var(--gradient-yellow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.5));
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.table-responsive {
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
}

.quota-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.quota-table thead {
    background: rgba(212, 175, 55, 0.15);
}

.quota-table thead th {
    color: #1a1a1a;
    font-weight: 700;
    text-transform: uppercase;
    padding: 1rem 0.75rem;
    text-align: center;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    border: none;
    position: relative;
}

/* Align Program column to left */
.quota-table thead th:nth-child(2) {
    text-align: left;
}

/* Hide No. column */
.quota-table th.col-no,
.quota-table td.col-no {
    display: none;
}

/* Hide Terisi column */
.quota-table th.col-terisi,
.quota-table td.col-terisi {
    display: none;
}

.quota-table tbody tr {
    background: #FFFFFF;
    transition: all 0.3s ease;
}

.quota-table tbody tr:hover {
    background: rgba(212, 175, 55, 0.05);
    transform: scale(1.01);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.quota-table tbody tr:nth-child(even) {
    background: rgba(15, 81, 50, 0.03);
}

.quota-table tbody tr:nth-child(even):hover {
    background: rgba(212, 175, 55, 0.08);
}

.quota-table tbody td {
    padding: 1rem 0.75rem;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: #333;
    font-weight: 500;
}

.quota-table tbody td:first-child {
    font-weight: 700;
    color: var(--primary);
}

.quota-table tbody td:nth-child(2) {
    text-align: left;
    font-weight: 600;
    color: #1a1a1a;
}

.quota-available {
    font-weight: 800;
    color: #25D366;
    font-size: 1rem;
}

/* Row dengan kuota penuh (merah) */
.quota-table tbody tr.quota-full {
    background: #FFFFFF;
}

.quota-table tbody tr.quota-full:hover {
    background: rgba(220, 20, 60, 0.05);
    transform: scale(1.01);
}

.quota-table tbody tr.quota-full td {
    color: #8B0000;
    font-weight: 700;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.quota-zero {
    font-weight: 900;
    font-size: 1.125rem;
    color: #B91C1C;
    animation: quotaZeroBlink 1.5s ease-in-out infinite;
}

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

/* Button Info di Tabel */
.btn-table-info {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 0.875rem;
    border: none;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-table-info i {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.btn-table-info:hover i {
    transform: rotate(15deg) scale(1.1);
}

/* Shine effect on hover */
.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.4), transparent);
    transition: left 0.5s ease;
}

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

/* SMP Button - Orange CTA */
.btn-info-smp {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: #FFFFFF;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-info-smp:hover {
    background: linear-gradient(135deg, #F7931E 0%, #E67E22 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.5);
}

.btn-info-smp:active {
    transform: translateY(0) scale(0.98);
}

/* SMA Button - Modern Blue */
.btn-info-sma {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    color: #FFFFFF;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-info-sma:hover {
    background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.5);
}

.btn-info-sma:active {
    transform: translateY(0) scale(0.98);
}

/* TAHFIDZ Button - Vibrant Teal-Green */
.btn-info-tahfidz {
    background: linear-gradient(135deg, #2DD4BF 0%, #14B8A6 100%);
    color: #FFFFFF;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-info-tahfidz:hover {
    background: linear-gradient(135deg, #14B8A6 0%, #0D9488 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.5);
}

.btn-info-tahfidz:active {
    transform: translateY(0) scale(0.98);
}

/* Legend */
.quota-legend {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 2px solid rgba(0, 0, 0, 0.1);
}

.legend-color.available {
    background: #25D366;
}

.legend-color.full {
    background: linear-gradient(135deg, #DC143C 0%, #B91C1C 100%);
}

.legend-text {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #333;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .quota-table-wrapper {
        padding: 1rem;
    }

    .quota-table-header h3 {
        font-size: 1rem;
    }

    .quota-table {
        font-size: 0.75rem;
    }

    .quota-table thead th {
        padding: 0.75rem 0.5rem;
        font-size: 0.625rem;
    }

    .quota-table tbody td {
        padding: 0.75rem 0.5rem;
    }

    .quota-available {
        font-size: 0.875rem;
    }

    .quota-zero {
        font-size: 1rem;
    }

    .quota-legend {
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-start;
    }

    /* Button Info - Mobile */
    .btn-table-info {
        padding: 0.375rem 0.625rem;
        font-size: 0.625rem;
        gap: 0.25rem;
        border-radius: 4px;
    }

    .btn-table-info i {
        font-size: 0.75rem;
    }
}

/* Mobile Adjustments */
@media (max-width: 360px) {
    .nav-item i {
        font-size: 1.125rem;
    }

    .nav-item span {
        font-size: 0.5625rem;
    }

    .nav-center-icon {
        width: 55px;
        height: 55px;
    }

    .nav-center-icon i {
        font-size: 1.5rem;
    }
}

/* ==========================================
   CSS ID SELECTOR UNTUK BUTTON MAPS
   Specificity tertinggi - Override semua CSS sebelumnya
   HARUS DI BAGIAN PALING BAWAH!
   ========================================== */

/* Normal state - Teks putih */
#maps-link,
a#maps-link,
a#maps-link:link,
a#maps-link:visited {
    color: white !important;
    text-decoration: none !important;
    -webkit-text-fill-color: white !important;
}

/* Hover state - Background kuning, teks HITAM */
#maps-link:hover,
a#maps-link:hover,
a#maps-link:hover:link,
a#maps-link:hover:visited {
    background: linear-gradient(135deg, #FDE047 0%, #FACC15 100%) !important;
    color: #000000 !important;
    text-shadow: none !important;
    text-decoration: none !important;
    -webkit-text-fill-color: #000000 !important;
}

/* Active state - Teks HITAM */
#maps-link:active,
a#maps-link:active {
    color: #000000 !important;
    text-shadow: none !important;
    -webkit-text-fill-color: #000000 !important;
}
