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

/* Scroll Progress Indicator */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    z-index: 9999;
    transition: width 0.1s ease;
    box-shadow: 0 2px 10px rgba(79, 61, 155, 0.6);
}

:root {
    /* Brand Color Palette */
    --primary-color: #e77871;
    --secondary-color: #4f3d9b;
    --tertiary-color: #e7b26c;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --bg-accent: #fef5f4;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(79, 61, 155, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(79, 61, 155, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(79, 61, 155, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(79, 61, 155, 0.1);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===================================
   LAYOUT
   =================================== */
.landing-main {
    width: 100%;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7rem 0 5rem;
    position: relative;
}

/* ===================================
   SECTION HEADERS
   =================================== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--tertiary-color) 100%);\n    color: white;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 15px rgba(231, 120, 113, 0.3);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin-bottom: 1rem;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero-section {
    background: linear-gradient(135deg, #4f3d9b 0%, #5a4db8 35%, #e77871 70%, #e7b26c 100%);
    color: white;
    position: relative;
    overflow: hidden;
    cursor: default;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(79, 61, 155, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(79, 61, 155, 0.3) 0%, transparent 50%);
    animation: gradientShift 15s ease infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.4;
}

/* Mouse Follow Effect - Background Glow */
.hero-section .mouse-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(79, 61, 155, 0.3) 0%, transparent 70%);
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    z-index: 1;
    filter: blur(60px);
    mix-blend-mode: screen;
}

/* Interactive Background Elements */
.hero-section .interactive-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    transition: transform 0.3s ease-out, opacity 0.3s ease;
    z-index: 1;
}

/* Sparkle Particles */
.hero-section .sparkle-particle {
    position: absolute;
    pointer-events: none;
    z-index: 3;
}

.sparkle-particle::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, rgba(255, 255, 255, 1) 0%, rgba(231, 120, 113, 0.8) 50%, transparent 100%);
    border-radius: 50%;
    box-shadow: 
        0 0 10px rgba(255, 255, 255, 0.8),
        0 0 20px rgba(231, 120, 113, 0.6),
        0 0 30px rgba(79, 61, 155, 0.4);
    animation: sparkleGlow 0.6s ease-out forwards;
}

.sparkle-particle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
    transform: translate(-50%, -50%) rotate(var(--rotation, 0deg));
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
    animation: sparkleRotate 0.6s linear forwards;
}

@keyframes sparkleGlow {
    0% {
        transform: scale(0) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: scale(1.5) rotate(180deg);
        opacity: 0.8;
    }
    100% {
        transform: scale(0.5) rotate(360deg);
        opacity: 0;
    }
}

@keyframes sparkleRotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) scale(0);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) rotate(180deg) scale(1.5);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg) scale(0);
        opacity: 0;
    }
}

/* Particle Trail */
.hero-section .particle-trail {
    position: absolute;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, rgba(79, 61, 155, 0.9) 0%, rgba(231, 120, 113, 0.6) 50%, transparent 100%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
    animation: particleFade 1.2s ease-out forwards;
    box-shadow: 0 0 15px rgba(79, 61, 155, 0.8);
}

@keyframes particleFade {
    0% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
    100% {
        transform: scale(2) translateY(-50px);
        opacity: 0;
    }
}

/* Scatter Pieces */
.hero-section .scatter-piece {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(135deg, rgba(231, 178, 108, 0.9), rgba(231, 120, 113, 0.7));
    pointer-events: none;
    z-index: 2;
    animation: scatterAway 0.8s ease-out forwards;
    box-shadow: 0 0 10px rgba(231, 120, 113, 0.6);
}

@keyframes scatterAway {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translate(var(--tx, 50px), var(--ty, 50px)) scale(0) rotate(360deg);
        opacity: 0;
    }
}

@keyframes gradientShift {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.title-line {
    display: block;
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.title-line:nth-child(1) {
    animation-delay: 0.2s;
}

.title-line:nth-child(2) {
    animation-delay: 0.4s;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
    opacity: 0;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.8s forwards;
    opacity: 0;
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0.75rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn::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:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(79, 61, 155, 0.45);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(79, 61, 155, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px) scale(1.02);
}

.btn-login {
    background: linear-gradient(135deg, rgba(79, 61, 155, 0.95) 0%, rgba(231, 120, 113, 0.95) 100%);
    color: white;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

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

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

.btn-login:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(79, 61, 155, 0.6);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-login svg {
    transition: transform 0.3s ease;
}

.btn-login:hover svg {
    transform: translateX(4px);
}


/* ===================================
   SERVICES SECTION
   =================================== */
.services-section {
    background: var(--bg-primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 1.25rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}\n\n.service-card::before {\n    content: '';\n    position: absolute;\n    top: 0;\n    left: 0;\n    width: 100%;\n    height: 4px;\n    background: linear-gradient(90deg, var(--primary-color), var(--tertiary-color));\n    transform: scaleX(0);\n    transform-origin: left;\n    transition: transform 0.4s ease;\n}\n\n.service-card:hover::before {\n    transform: scaleX(1);\n}\n\n.service-card:hover {\n    transform: translateY(-10px);\n    box-shadow: 0 20px 40px rgba(79, 61, 155, 0.15);\n    border-color: rgba(231, 120, 113, 0.3);\n}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    box-shadow: 0 8px 20px rgba(79, 61, 155, 0.3);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(231, 120, 113, 0.4);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.service-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===================================
   CAREERS SECTION
   =================================== */
.careers-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #5a4db8 60%, var(--primary-color) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.careers-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(79, 61, 155, 0.3) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.careers-section .section-header {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
}

.careers-section .section-tag {
    background: linear-gradient(135deg, 
                rgba(255, 255, 255, 0.98) 0%, 
                rgba(254, 245, 245, 0.95) 50%,
                rgba(255, 255, 255, 0.98) 100%);
    backdrop-filter: blur(15px);
    color: var(--secondary-color);
    font-weight: 700;
    border: 2px solid rgba(231, 120, 113, 0.25);
    padding: 0.75rem 1.75rem;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    box-shadow: 0 8px 25px rgba(231, 120, 113, 0.2), 
                0 4px 10px rgba(79, 61, 155, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.careers-section .section-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
                transparent 0%, 
                rgba(231, 120, 113, 0.1) 50%, 
                transparent 100%);
    transition: left 0.5s ease;
}

.careers-section .section-tag:hover::before {
    left: 100%;
}

.careers-section .section-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(231, 120, 113, 0.25), 
                0 6px 15px rgba(79, 61, 155, 0.2);
    border-color: rgba(231, 120, 113, 0.4);
}

.careers-section .section-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
    position: relative;
    background: linear-gradient(135deg, 
                #ffffff 0%, 
                #fef5f5 25%,
                #ffffff 50%, 
                #fff8f0 75%,
                #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3)) 
            drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}

.careers-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, 
                transparent 0%, 
                rgba(231, 120, 113, 0.6) 25%,
                rgba(231, 178, 108, 0.8) 50%,
                rgba(231, 120, 113, 0.6) 75%,
                transparent 100%);
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(231, 120, 113, 0.4);
}

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

.careers-text {
    text-align: center;
}

.careers-description {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
}

.careers-perks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.perk-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 0.75rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: var(--transition);
}\n\n.perk-item:hover {\n    background: rgba(255, 255, 255, 0.25);\n    border-color: rgba(255, 255, 255, 0.4);\n    transform: translateX(8px);\n}\n\n.perk-item svg {\n    flex-shrink: 0;\n    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));\n}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact-section {
    background: var(--bg-secondary);
}

.contact-content {
    max-width: 700px;
    margin: 0 auto;
}

.contact-info {
    text-align: center;
}

.contact-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    background: white;
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
    text-align: left;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}\n\n.contact-method::before {\n    content: '';\n    position: absolute;\n    top: 0;\n    left: 0;\n    width: 4px;\n    height: 100%;\n    background: linear-gradient(180deg, var(--secondary-color), var(--primary-color));\n    transform: scaleY(0);\n    transform-origin: top;\n    transition: transform 0.3s ease;\n}\n\n.contact-method:hover::before {\n    transform: scaleY(1);\n}\n\n.contact-method:hover {\n    transform: translateX(8px);\n    box-shadow: 0 8px 25px rgba(79, 61, 155, 0.15);\n}\n\n.contact-method svg {\n    color: var(--secondary-color);\n    flex-shrink: 0;\n    transition: var(--transition);\n}\n\n.contact-method:hover svg {\n    color: var(--primary-color);\n    transform: scale(1.1);\n}

.contact-method div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.method-label {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
}

.method-value {
    font-size: 1.125rem;
    color: var(--text-primary);
    font-weight: 600;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--text-primary);
    color: white;
    padding: 3rem 0 2rem;
}

.footer-content {
    text-align: center;
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-logo {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

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

/* Scroll Animation Classes */
.service-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.service-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation for grid items */
.service-card:nth-child(1) { transition-delay: 0.1s; }
.service-card:nth-child(2) { transition-delay: 0.2s; }
.service-card:nth-child(3) { transition-delay: 0.3s; }
.service-card:nth-child(4) { transition-delay: 0.4s; }
.service-card:nth-child(5) { transition-delay: 0.5s; }
.service-card:nth-child(6) { transition-delay: 0.6s; }

/* ===================================
   RESPONSIVE DESIGN - MOBILE FIRST
   =================================== */

/* Small devices (landscape phones, 576px and up) */
@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.875rem;
    }
    
    .careers-section .section-title {
        font-size: 2rem;
        letter-spacing: -0.3px;
    }
    
    .careers-section .section-tag {
        padding: 0.6rem 1.25rem;
        font-size: 0.85rem;
        letter-spacing: 1px;
    }
    
    .careers-section .section-title::after {
        width: 60px;
        height: 3px;
        bottom: -10px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }

    .btn-login {
        width: 100%;
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .careers-perks {
        grid-template-columns: 1fr;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
    
    .section {
        padding: 6rem 0;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .careers-section .section-title {
        font-size: 3rem;
    }
    
    .careers-section .section-tag {
        font-size: 0.9rem;
        padding: 0.7rem 1.5rem;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .section-title {
        font-size: 3.5rem;
    }
    
    .careers-section .section-title {
        font-size: 3.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .container {
        padding: 0 3rem;
    }
}

/* ===================================
   EMPLOYEE LOGIN ICON
   =================================== */
.employee-login-icon {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #06b6d4 100%);
    color: white;
    text-decoration: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    box-shadow: 0 4px 20px rgba(30, 58, 138, 0.4), 0 0 0 0 rgba(59, 130, 246, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    animation: pulse-ring 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.employee-login-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.employee-login-icon:hover::before {
    opacity: 1;
    animation: shimmer 1s ease-in-out;
}

.employee-login-icon:hover {
    transform: translateY(-5px) scale(1.08) rotate(5deg);
    box-shadow: 0 12px 40px rgba(30, 58, 138, 0.6), 
                0 0 0 8px rgba(59, 130, 246, 0.15),
                0 0 60px rgba(6, 182, 212, 0.3);
    animation: none;
}

.employee-login-icon svg {
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.employee-login-icon:hover svg {
    transform: scale(1.1);
}

/* Tooltip */
.employee-login-tooltip {
    position: absolute;
    top: 50%;
    left: calc(100% + 1rem);
    transform: translateY(-50%) translateX(-10px);
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 0.625rem 1.25rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    pointer-events: none;
}

.employee-login-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 100%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-right-color: #1e3a8a;
}

.employee-login-icon:hover .employee-login-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

/* Pulse Animation */
@keyframes pulse-ring {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(30, 58, 138, 0.4), 
                    0 0 0 0 rgba(59, 130, 246, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(30, 58, 138, 0.4), 
                    0 0 0 8px rgba(59, 130, 246, 0);
    }
}

/* Shimmer Animation */
@keyframes shimmer {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .employee-login-icon {
        top: auto;
        right: auto;
        bottom: 1.25rem;
        left: 1.25rem;
        width: 52px;
        height: 52px;
    }
    
    .employee-login-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .employee-login-tooltip {
        display: none;
    }
}

@media (max-width: 480px) {
    .employee-login-icon {
        top: auto;
        right: auto;
        bottom: 1rem;
        left: 1rem;
        width: 48px;
        height: 48px;
    }
    
    .employee-login-icon svg {
        width: 18px;
        height: 18px;
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .employee-login-icon {
        animation: none !important;
    }
}