/* Page Specific Styles - Attendance Theme (Rose/Pink) */
.attendance-hero {
    padding: 8rem 0 5rem;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.attendance-hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.attendance-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: #fff1f2;
    /* Rose 50 */
}

.attendance-text span.highlight {
    color: #fb7185;
    /* Rose 400 */
    background: linear-gradient(135deg, #fb7185, #f43f5e);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    color: #ffe4e6;
    /* Rose 100 */
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.subtitle strong {
    color: #fff;
}

.attendance-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

/* Abstract Biometric Interface */
.auth-device {
    background: rgba(30, 10, 20, 0.6);
    border: 1px solid rgba(251, 113, 133, 0.3);
    border-radius: 30px;
    padding: 20px;
    width: 300px;
    height: 480px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    transform: rotateY(-15deg);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: transform 0.5s ease;
}

.auth-device:hover {
    transform: rotateY(0deg) scale(1.02);
    border-color: rgba(251, 113, 133, 0.6);
}

.screen {
    background: #000;
    width: 100%;
    height: 60%;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #f43f5e;
    box-shadow: 0 0 10px #f43f5e;
    animation: scan 2s linear infinite;
}

.fingerprint {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 100px;
    border: 2px solid rgba(244, 63, 94, 0.3);
    border-radius: 40px;
}

.status-message {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    text-align: center;
    color: #10b981;
    font-family: 'Fira Code', monospace;
    font-size: 12px;
    opacity: 0;
    animation: fadeInOut 2s infinite;
}

@keyframes scan {
    0% {
        top: 10%;
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        top: 90%;
        opacity: 0;
    }
}

@keyframes fadeInOut {

    0%,
    100% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }
}

/* Button Styling - Rose Theme */
.btn-neon {
    background: linear-gradient(90deg, #e11d48, #f43f5e);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    /* Standardized Shape */
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(225, 29, 72, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-neon:hover {
    background: linear-gradient(90deg, #f43f5e, #fb7185);
    /* Brighter Rose */
    transform: translateY(-2px);
    box-shadow: 0 8px 25px -5px rgba(244, 63, 94, 0.6);
    border-color: rgba(251, 113, 133, 0.5);
}

.btn-secondary-neon {
    background: transparent;
    color: white;
    padding: 0 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(251, 113, 133, 0.5);
    box-shadow: none;
}

.btn-secondary-neon:hover {
    background: linear-gradient(90deg, #f43f5e, #fb7185);
    border-color: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px -5px rgba(244, 63, 94, 0.6);
}

/* Feature Cards - Rose Overlay */
.feature-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #fff1f2;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -10px rgba(225, 29, 72, 0.15);
    border-color: #fecdd3;
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: #fff1f2;
    color: #e11d48;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #881337;
}

.feature-desc {
    color: #4b5563;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Modules Dark Section (Rose Variant) */
.modules-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #4c0519 0%, #881337 100%);
    position: relative;
    overflow: hidden;
}

.modules-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: #f43f5e;
    top: -100px;
    left: -100px;
    animation: float 6s ease-in-out infinite;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: #fb7185;
    bottom: -150px;
    right: -150px;
    animation: float 8s ease-in-out infinite reverse;
}

/* Stats Section */
.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #e11d48;
    margin-bottom: 0.5rem;
    font-family: 'Outfit', sans-serif;
}

.stat-label {
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 991px) {
    .attendance-hero-content {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .attendance-text h1 {
        font-size: 3rem;
    }

    .subtitle {
        margin: 0 auto 2rem;
    }

    .attendance-visual {
        width: 100%;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .attendance-hero {
        padding: 6rem 0 4rem;
        min-height: auto;
    }

    .attendance-text h1 {
        font-size: 2.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .auth-device {
        width: 100%;
        max-width: 300px;
        height: 450px;
        transform: none !important;
    }

    .auth-device:hover {
        transform: none !important;
    }
}

/* Responsive Comparison Section */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.comparison-card {
    padding: 3rem;
    border-radius: 20px;
}

@media (max-width: 991px) {
    .comparison-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .comparison-card {
        padding: 2rem !important;
    }

    .comparison-card[style*="scale"] {
        transform: scale(1) !important;
        margin-top: 1.5rem;
    }
}