/**
 * Full-Width Responsive Homepage Theme
 * Modern, Clean, No Container Restrictions
 */

/* ========================
   ROOT & GLOBAL VARIABLES
   ======================== */
:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --dark-gradient: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --text-light: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.7);
    --accent-cyan: #00d4ff;
    --accent-pink: #ff6b9d;
    --accent-gold: #ffd700;
    --shadow-glow: 0 20px 60px rgba(0, 0, 0, 0.3);
    --border-radius: 24px;
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 40px;
    --spacing-xl: 60px;
}

/* ========================
   BASE BODY STYLES
   ======================== */
* {
    box-sizing: border-box;
}

body.fullwidth-theme {
    margin: 0;
    padding: 0;
    background: var(--dark-gradient);
    min-height: 100vh;
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    color: var(--text-light);
    overflow-x: hidden;
    width: 100%;
}

/* Remove all container restrictions */
body.fullwidth-theme .container,
body.fullwidth-theme .container-fluid {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

body.fullwidth-theme .page-wrapper,
body.fullwidth-theme .page-content--bge5,
body.fullwidth-theme .login-wrap,
body.fullwidth-theme .login-content {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
}

body.fullwidth-theme .row {
    margin: 0 !important;
    width: 100% !important;
}

body.fullwidth-theme [class*="col-"] {
    padding: 0 !important;
}

/* ========================
   HERO SECTION
   ======================== */
.fw-hero {
    width: 100%;
    min-height: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: var(--spacing-xl) 16px;
    position: relative;
    background: var(--dark-gradient);
}

.fw-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(118, 75, 162, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.fw-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    padding: 10px;
    background: var(--glass-bg);
    border: 2px solid var(--glass-border);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.3);
    animation: floatLogo 4s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes floatLogo {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.fw-title {
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 700;
    margin: var(--spacing-md) 0 var(--spacing-xs);
    background: linear-gradient(135deg, #fff 0%, #a8edea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.fw-subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: var(--accent-cyan);
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.fw-tagline {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: var(--text-muted);
    max-width: 600px;
    position: relative;
    z-index: 1;
}

/* ========================
   SECTIONS LAYOUT
   ======================== */
.fw-section {
    width: 100%;
    padding: var(--spacing-lg) 16px;
    position: relative;
    display: flex;
    justify-content: center;
}

.fw-section-inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 16px;
}

.fw-section-title {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 600;
    text-align: center;
    margin-bottom: var(--spacing-lg);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    width: 100%;
}

.fw-section-title i {
    color: var(--accent-cyan);
}

/* ========================
   DOWNLOAD APP SECTION
   ======================== */
.fw-download {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
}

.fw-platforms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.fw-platform-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    text-decoration: none !important;
    color: var(--text-light) !important;
}

.fw-platform-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: var(--shadow-glow);
    border-color: var(--accent-cyan);
}

.fw-platform-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    flex-shrink: 0;
}

.fw-platform-icon.android {
    background: linear-gradient(135deg, #3DDC84, #2BB673);
}

.fw-platform-icon.ios {
    background: linear-gradient(135deg, #007AFF, #0056CC);
}

.fw-platform-info h4 {
    margin: 0 0 4px;
    font-size: 1.1rem;
    font-weight: 600;
}

.fw-platform-info p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.fw-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 8px;
}

.fw-badge.available {
    background: linear-gradient(135deg, #00d4ff, #00a8cc);
    color: #000;
}

.fw-badge.coming-soon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-muted);
}

.fw-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-md);
}

.fw-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.fw-feature i {
    color: var(--accent-cyan);
}

/* ========================
   PRAYER SCHEDULE SECTION
   ======================== */
.fw-prayer {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(255, 107, 157, 0.05) 100%);
    padding: var(--spacing-lg) 16px;
    display: flex;
    justify-content: center;
}

.fw-prayer-container {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius);
    padding: var(--spacing-lg);
    backdrop-filter: blur(20px);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.fw-prayer-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: var(--spacing-lg);
    gap: var(--spacing-sm);
}

.fw-prayer-title {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    font-weight: 700;
    margin: 0 0 var(--spacing-sm);
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fw-prayer-title i {
    font-size: 1.5em;
    -webkit-text-fill-color: initial;
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.fw-date-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-md);
    width: 100%;
}

.fw-date-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: clamp(0.8rem, 2vw, 0.95rem);
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.fw-date-item i {
    color: var(--accent-pink);
    font-size: 1rem;
}

/* Prayer Grid - Consistent Cards */
.fw-prayer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.fw-prayer-item {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: var(--spacing-md);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.fw-prayer-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-pink));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fw-prayer-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(0, 212, 255, 0.3);
}

.fw-prayer-item:hover::before {
    opacity: 1;
}

.fw-prayer-item.active {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-pink));
    border-color: transparent;
    box-shadow:
        0 15px 40px rgba(0, 212, 255, 0.4),
        0 0 60px rgba(0, 212, 255, 0.2);
    transform: translateY(-5px) scale(1.05);
}

.fw-prayer-item.active::before {
    opacity: 0;
}

.fw-prayer-name {
    font-size: clamp(0.8rem, 2vw, 0.95rem);
    color: var(--text-muted);
    margin-bottom: 8px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fw-prayer-item.active .fw-prayer-name {
    color: rgba(255, 255, 255, 0.9);
}

.fw-prayer-time {
    font-size: clamp(1.4rem, 3.5vw, 1.8rem);
    font-weight: 800;
    color: var(--text-light);
    font-family: 'Poppins', monospace;
}

.fw-prayer-item.active .fw-prayer-time {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Prayer Footer - Consistent Layout */
.fw-prayer-footer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-sm);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.fw-current-time,
.fw-next-prayer,
.fw-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: clamp(0.8rem, 2vw, 0.95rem);
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.fw-current-time:hover,
.fw-next-prayer:hover,
.fw-location:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
}

.fw-current-time i {
    color: var(--accent-cyan);
    font-size: 1.1rem;
}

.fw-next-prayer i {
    color: var(--accent-pink);
    font-size: 1.1rem;
}

.fw-location i {
    color: var(--accent-gold);
    font-size: 1.1rem;
}

/* Prayer Responsive */
@media (max-width: 992px) {
    .fw-prayer-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: var(--spacing-sm);
    }

    .fw-prayer-item {
        padding: var(--spacing-sm);
        min-height: 90px;
    }
}

@media (max-width: 768px) {
    .fw-prayer-container {
        padding: var(--spacing-md);
    }

    .fw-prayer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .fw-prayer-item {
        padding: 15px 10px;
        min-height: 85px;
        border-radius: 16px;
    }

    .fw-prayer-footer {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .fw-current-time,
    .fw-next-prayer,
    .fw-location {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .fw-prayer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .fw-prayer-item {
        padding: 12px 8px;
        min-height: 80px;
        border-radius: 14px;
    }

    .fw-prayer-item:last-child {
        grid-column: span 2;
    }

    .fw-date-info {
        flex-direction: column;
        gap: 8px;
    }

    .fw-date-item {
        justify-content: center;
    }
}

/* ========================
   PPDB HERO SECTION
   ======================== */
.fw-ppdb {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 50%, #ffd700 100%);
    padding: var(--spacing-xl) 16px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.fw-ppdb::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.fw-ppdb::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.fw-ppdb-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.fw-ppdb-icon {
    font-size: 4rem;
    margin-bottom: var(--spacing-md);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.fw-ppdb-title {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.fw-ppdb-desc {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
    opacity: 0.95;
}

.fw-ppdb-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.25);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    backdrop-filter: blur(10px);
}

.fw-ppdb-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #ffd700, #ffa500);
    color: #333 !important;
    padding: 18px 48px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.fw-ppdb-btn::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;
}

.fw-ppdb-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.fw-ppdb-btn:hover::before {
    left: 100%;
}

.fw-ppdb-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.fw-ppdb-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.fw-ppdb-feature i {
    color: #ffd700;
}

/* ========================
   LOGIN BOXES SECTION
   ======================== */
.fw-login {
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    padding: var(--spacing-xl) 16px;
    display: flex;
    justify-content: center;
}

.fw-login .fw-section-inner {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.fw-login-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    width: 100%;
}

.fw-login-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius);
    padding: var(--spacing-lg);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    text-decoration: none !important;
    color: var(--text-light) !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    min-height: 280px;
    backdrop-filter: blur(15px);
}

.fw-login-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fw-login-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fw-login-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.4);
}

.fw-login-card:hover::before {
    transform: scaleX(1);
}

.fw-login-card:hover::after {
    opacity: 1;
}

/* Card Type Specific Styles */
.fw-login-card.admin::before {
    background: linear-gradient(90deg, #00d4ff, #0099cc, #00d4ff);
}

.fw-login-card.admin:hover {
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(0, 212, 255, 0.2);
}

.fw-login-card.payment::before {
    background: linear-gradient(90deg, #ff6b9d, #ff4757, #ff6b9d);
}

.fw-login-card.payment:hover {
    border-color: rgba(255, 107, 157, 0.5);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(255, 107, 157, 0.2);
}

.fw-login-card.student::before {
    background: linear-gradient(90deg, #a8edea, #00d4ff, #a8edea);
}

.fw-login-card.student:hover {
    border-color: rgba(168, 237, 234, 0.5);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(168, 237, 234, 0.2);
}

/* Login Icon */
.fw-login-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    font-size: 2.5rem;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.fw-login-card:hover .fw-login-icon {
    transform: scale(1.1);
}

.fw-login-card.admin .fw-login-icon {
    background: linear-gradient(145deg, rgba(0, 212, 255, 0.2), rgba(0, 153, 204, 0.1));
    border: 2px solid rgba(0, 212, 255, 0.4);
    color: var(--accent-cyan);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
}

.fw-login-card.admin:hover .fw-login-icon {
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.4);
    border-color: rgba(0, 212, 255, 0.7);
}

.fw-login-card.payment .fw-login-icon {
    background: linear-gradient(145deg, rgba(255, 107, 157, 0.2), rgba(255, 71, 87, 0.1));
    border: 2px solid rgba(255, 107, 157, 0.4);
    color: var(--accent-pink);
    box-shadow: 0 0 30px rgba(255, 107, 157, 0.2);
}

.fw-login-card.payment:hover .fw-login-icon {
    box-shadow: 0 0 40px rgba(255, 107, 157, 0.4);
    border-color: rgba(255, 107, 157, 0.7);
}

.fw-login-card.student .fw-login-icon {
    background: linear-gradient(145deg, rgba(168, 237, 234, 0.2), rgba(0, 212, 255, 0.1));
    border: 2px solid rgba(168, 237, 234, 0.4);
    color: #a8edea;
    box-shadow: 0 0 30px rgba(168, 237, 234, 0.2);
}

.fw-login-card.student:hover .fw-login-icon {
    box-shadow: 0 0 40px rgba(168, 237, 234, 0.4);
    border-color: rgba(168, 237, 234, 0.7);
}

.fw-login-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

/* Login Text */
.fw-login-title {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.fw-login-desc {
    color: var(--text-muted);
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
    margin-bottom: var(--spacing-md);
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

/* Login Features */
.fw-login-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.fw-login-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 16px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.fw-login-card:hover .fw-login-feature {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
}

.fw-login-feature i {
    font-size: 0.9rem;
}

.fw-login-card.admin .fw-login-feature i {
    color: var(--accent-cyan);
}

.fw-login-card.payment .fw-login-feature i {
    color: var(--accent-pink);
}

.fw-login-card.student .fw-login-feature i {
    color: #a8edea;
}

/* Login Responsive */
@media (max-width: 992px) {
    .fw-login-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-md);
    }

    .fw-login-card {
        padding: var(--spacing-md);
        min-height: 250px;
    }

    .fw-login-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .fw-login-icon img {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 768px) {
    .fw-login-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        max-width: 450px;
        margin: 0 auto;
    }

    .fw-login-card {
        padding: var(--spacing-lg);
        min-height: auto;
        flex-direction: row;
        text-align: left;
        gap: var(--spacing-md);
    }

    .fw-login-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .fw-login-icon img {
        width: 45px;
        height: 45px;
    }

    .fw-login-content {
        flex: 1;
        text-align: left;
    }

    .fw-login-features {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
    }

    .fw-login-feature {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .fw-login-grid {
        max-width: 100%;
    }

    .fw-login-card {
        padding: var(--spacing-md);
    }

    .fw-login-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .fw-login-icon img {
        width: 38px;
        height: 38px;
    }

    .fw-login-features {
        display: none;
    }
}

/* ========================
   FOOTER
   ======================== */
.fw-footer {
    text-align: center;
    padding: var(--spacing-lg) var(--spacing-md);
    color: var(--text-muted);
    font-size: 0.85rem;
    border-top: 1px solid var(--glass-border);
}

/* ========================
   LOADING SCREEN OVERRIDE
   ======================== */
body.fullwidth-theme .loading-screen {
    background: var(--dark-gradient);
}

/* ========================
   WHATSAPP BUTTON
   ======================== */
.fw-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    text-decoration: none;
}

.fw-whatsapp:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
    color: #fff;
}

/* ========================
   ANIMATIONS
   ======================== */
.fw-fade-in {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.fw-fade-in-delay-1 {
    animation-delay: 0.2s;
}

.fw-fade-in-delay-2 {
    animation-delay: 0.4s;
}

.fw-fade-in-delay-3 {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================
   RESPONSIVE TYPOGRAPHY
   ======================== */
@media (max-width: 768px) {
    :root {
        --spacing-lg: 30px;
        --spacing-xl: 40px;
    }

    .fw-platforms {
        grid-template-columns: 1fr;
    }

    .fw-login-grid {
        grid-template-columns: 1fr;
    }

    .fw-ppdb-btn {
        padding: 15px 35px;
        font-size: 1rem;
    }

    .fw-ppdb-features {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-md: 16px;
        --spacing-lg: 24px;
    }

    .fw-logo {
        width: 90px;
        height: 90px;
    }

    .fw-prayer-header {
        flex-direction: column;
        text-align: center;
    }

    .fw-prayer-footer {
        flex-direction: column;
        text-align: center;
    }
}