/* ==========================================
   LOON ASSIST - Modern Homepage CSS
   Color Scheme: DSWD Blue & Gold
   ========================================== */

@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;600;700&family=Fredoka:wght@400;500;600&display=swap');
:root {
    --primary-blue: #0d47a1;
    --dark-blue: #051d47;
    --light-blue: #1565c0;
    --accent-gold: #d4af37;
    --gold-light: #e8c750;
    --white: #ffffff;
    --light-gray: #f5f7fa;
    --dark-gray: #1a1f36;
    --text-secondary: #54606d;
    --shadow: 0 2px 8px rgba(13, 71, 161, 0.08);
    --shadow-md: 0 4px 16px rgba(13, 71, 161, 0.12);
    --shadow-lg: 0 12px 32px rgba(13, 71, 161, 0.15);
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}


/* ==========================================
   GLOBAL STYLES
   ========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--dark-gray);
    background: linear-gradient(135deg, #fafbfc 0%, #f0f3f7 100%);
    line-height: 1.6;
    letter-spacing: 0.3px;
}

.playful-brand {
    font-family: 'Fredoka', 'Segoe UI', sans-serif;
    letter-spacing: 0.5px;
}

.logo-main {
    font-family: 'Baloo 2', 'Segoe UI', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* ==========================================
   NAVIGATION BAR - 3D GLASSY GOVERNMENT STYLE
   ========================================== */

.navbar {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.75) 0%, rgba(59, 130, 246, 0.7) 35%, rgba(14, 165, 233, 0.65) 70%, rgba(255, 215, 0, 0.15) 100%);
    padding: 0.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(35px);
    border-bottom: 3px solid rgba(255, 215, 0, 0.6);
    box-shadow: 0 8px 32px rgba(30, 58, 138, 0.4), 0 0 40px rgba(14, 165, 233, 0.25), 0 0 60px rgba(255, 215, 0, 0.1), inset 0 1px 3px rgba(255, 255, 255, 0.4), inset 0 -1px 3px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.navbar-container {
    width: 100%;
    margin: 0;
    padding: 0 30px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 18px;
    cursor: pointer;
    transition: var(--transition);
    padding: 0.3rem 1.5rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.15), inset 0 1px 2px rgba(255, 255, 255, 0.2);
}

.logo-section:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 30px rgba(14, 165, 233, 0.25), 0 0 25px rgba(255, 215, 0, 0.15), inset 0 1px 3px rgba(255, 255, 255, 0.3);
}

.logo {
    width: 75px;
    height: 75px;
    margin-right: 10px;
    border-radius: 50%;
    padding: 6px;
    object-fit: cover;
    border: 2px solid rgba(255, 215, 0, 0.5);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4), 0 8px 25px rgba(30, 58, 138, 0.3), inset 0 1px 3px rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.logo-section:hover .logo {
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.6), 0 8px 30px rgba(14, 165, 233, 0.4), inset 0 1px 3px rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 215, 0, 0.8);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffc107 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    text-shadow: 0 2px 8px rgba(255, 215, 0, 0.3), 0 4px 15px rgba(30, 58, 138, 0.2);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.logo-sub {
    font-size: 0.85rem;
    background: linear-gradient(90deg, #ffed4e 0%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.15));
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--accent-gold);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--accent-gold);
}


/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
    overflow: hidden;
    background-color: #f0f5ff;
    transition: background-image 1s ease-in-out;
    image-rendering: crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    -webkit-backface-visibility: hidden;
    filter: contrast(1.05) brightness(1.02) saturate(1.08);
}

.index-home .hero {
    background-color: #f0f5ff;
}

.hero-background {
    display: none !important;
}

.floating-shape {
    display: none !important;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 50%;
    right: 10%;
    animation: float 8s ease-in-out infinite;
    animation-delay: 2s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    bottom: 10%;
    left: 50%;
    animation: float 7s ease-in-out infinite;
    animation-delay: 4s;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(30px);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 35%, #0ea5e9 70%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    filter: drop-shadow(0 4px 12px rgba(14, 165, 233, 0.4)) drop-shadow(0 2px 8px rgba(255, 215, 0, 0.2));
    text-shadow: 0 2px 8px rgba(30, 58, 138, 0.3);
}

.hero-subtitle {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 2rem;
    background: linear-gradient(90deg, #ffed4e 0%, #ffd700 50%, #ffc107 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    filter: drop-shadow(0 3px 10px rgba(255, 215, 0, 0.3)) drop-shadow(0 1px 4px rgba(30, 58, 138, 0.2));
}

.hero-description {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
    font-weight: 600;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.7) 0%, rgba(59, 130, 246, 0.65) 35%, rgba(14, 165, 233, 0.6) 70%, rgba(255, 215, 0, 0.1) 100%);
    padding: 2rem 2rem;
    border-radius: 18px;
    backdrop-filter: blur(25px);
    box-shadow: 0 8px 32px rgba(30, 58, 138, 0.35), 0 0 35px rgba(14, 165, 233, 0.2), 0 0 50px rgba(255, 215, 0, 0.08), inset 0 1px 3px rgba(255, 255, 255, 0.3), inset 0 -1px 3px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 215, 0, 0.5);
}

.btn-get-started {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 35%, #0ea5e9 70%, #ffd700 100%);
    color: #ffffff;
    padding: 1.3rem 3.5rem;
    font-size: 1.1rem;
    font-weight: 900;
    border: 3px solid rgba(255, 215, 0, 0.8);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4), 0 0 35px rgba(14, 165, 233, 0.3), 0 0 50px rgba(255, 215, 0, 0.15), inset 0 1px 3px rgba(255, 255, 255, 0.4), inset 0 -2px 10px rgba(0, 0, 0, 0.2);
    letter-spacing: 2px;
    text-transform: uppercase;
    filter: drop-shadow(0 6px 15px rgba(30, 58, 138, 0.35)) drop-shadow(0 0 20px rgba(255, 215, 0, 0.2));
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.btn-get-started::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.7s ease;
}

.btn-get-started:hover {
    transform: translateY(-8px) scale(1.12);
    background: linear-gradient(135deg, #1a2c6d 0%, #2563eb 35%, #06b6d4 70%, #ffed4e 100%);
    box-shadow: 0 12px 35px rgba(30, 58, 138, 0.5), 0 0 50px rgba(14, 165, 233, 0.45), 0 0 80px rgba(255, 215, 0, 0.25), inset 0 1px 4px rgba(255, 255, 255, 0.5), inset 0 -2px 15px rgba(0, 0, 0, 0.25);
    filter: drop-shadow(0 10px 25px rgba(30, 58, 138, 0.45)) drop-shadow(0 0 30px rgba(255, 215, 0, 0.3));
}

.btn-get-started:hover::before {
    left: 100%;
}

.btn-get-started:active {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 6px 18px rgba(30, 58, 138, 0.35), 0 0 25px rgba(14, 165, 233, 0.2), inset 0 1px 3px rgba(255, 255, 255, 0.3), inset 0 -2px 8px rgba(0, 0, 0, 0.2);
    filter: drop-shadow(0 4px 12px rgba(30, 58, 138, 0.3));
}

.scroll-indicator {
    margin-top: 3rem;
    animation: bounce 2s infinite;
}

.scroll-indicator p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.scroll-arrow {
    font-size: 1.5rem;
    color: var(--accent-gold);
}

@keyframes bounce {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}


/* ==========================================
   SERVICES SECTION
   ========================================== */

.services {
    padding: 5rem 0;
    background: #f8fbff;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-green);
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold) 0%, var(--primary-green) 100%);
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 18px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--accent-gold);
    border: 1px solid rgba(15, 61, 105, 0.08);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}


/* ==========================================
   PROCESS SECTION
   ========================================== */

.process {
    padding: 5rem 0;
    background: #fbfcff;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    align-items: center;
    position: relative;
}

.step {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    color: var(--white);
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    background: var(--accent-gold);
    color: var(--primary-green);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.step-connector {
    background: var(--accent-gold);
    height: 4px;
    position: relative;
    z-index: 1;
}

.step-connector:last-of-type {
    display: none;
}


/* ==========================================
   CONTACT SECTION
   ========================================== */

.contact {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-green) 100%);
    color: var(--white);
}

.contact .section-title {
    color: var(--accent-gold);
}

.contact .section-title::after {
    background: linear-gradient(90deg, var(--accent-gold) 0%, var(--white) 100%);
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.contact-icon {
    font-size: 2rem;
}

.contact-item h3 {
    margin-bottom: 0.5rem;
    color: var(--accent-gold);
}

.contact-item p {
    font-size: 0.95rem;
}


/* ==========================================
   FOOTER
   ========================================== */

.footer {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.8) 0%, rgba(59, 130, 246, 0.75) 35%, rgba(14, 165, 233, 0.7) 70%, rgba(255, 215, 0, 0.1) 100%);
    color: var(--white);
    text-align: center;
    padding: 2.2rem 2rem;
    border-top: 3px solid rgba(255, 215, 0, 0.7);
    backdrop-filter: blur(30px);
    box-shadow: 0 -8px 32px rgba(30, 58, 138, 0.3), 0 0 35px rgba(14, 165, 233, 0.2), 0 0 50px rgba(255, 215, 0, 0.08), inset 0 1px 3px rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.15);
}


/* ==========================================
   MODAL - LOGIN (GOVERNMENT STYLE)
   ========================================== */

.modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2000;
    animation: slideInModal 0.4s ease-out;
}

@keyframes slideInModal {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1999;
    backdrop-filter: blur(8px);
}

.modal.active {
    display: block;
}

.modal-overlay.active {
    display: block;
}


/* Government Style Modal */

.modal-content.gov-style {
    background: rgba(255, 255, 255, 0.15);
    padding: 0;
    border-radius: 16px;
    width: 105%;
    max-width: 700px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37), 0 20px 60px rgba(31, 38, 135, 0.3), inset 0 0 20px rgba(255, 255, 255, 0.35), 0 0 60px rgba(70, 150, 220, 0.5), 0 0 100px rgba(255, 215, 0, 0.15);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
}

.modal-content.gov-style::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(70, 150, 220, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
}

.modal-content.gov-style::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
}


/* Modal Branding Section */

.modal-branding {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #0ea5e9 100%);
    padding: 1.8rem 1.5rem 1.5rem;
    text-align: center;
    position: relative;
    border-bottom: 4px solid #ffd700;
    box-shadow: inset 0 2px 10px rgba(255, 255, 255, 0.2), 0 4px 15px rgba(30, 58, 138, 0.3);
}

.logo-container {
    margin-bottom: 0.7rem;
    display: flex;
    justify-content: center;
}

.modal-logo {
    width: 75px;
    height: 75px;
    object-fit: contain;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.3)) drop-shadow(0 0 30px rgba(70, 150, 220, 0.4));
    animation: logoEntrance 0.6s ease-out;
    background: rgba(255, 255, 255, 0.15);
    padding: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: inset 0 2px 8px rgba(255, 255, 255, 0.2);
}

@keyframes logoEntrance {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-title {
    font-size: 1.3rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 2px;
    margin: 0;
    text-transform: uppercase;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.4), 0 6px 16px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 215, 0, 0.3);
    margin-bottom: 0.4rem;
    opacity: 1;
}

.modal-subtitle {
    font-size: 0.8rem;
    color: #ffffff;
    letter-spacing: 1.2px;
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
    opacity: 0.98;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}


/* Modal Divider */

.modal-divider {
    height: 3px;
    background: linear-gradient(90deg, transparent, #ffd700, #ffed4e, #ffd700, transparent);
    width: 85%;
    margin: 0 auto;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
}


/* Login Form Section */

.modal-content.gov-style .login-form {
    padding: 2.2rem 2rem;
    margin: 0;
    position: relative;
    z-index: 2;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.modal-close {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: rgba(255, 255, 255, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.6);
    font-size: 1.8rem;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 10;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.2), inset 0 1px 4px rgba(255, 255, 255, 0.3);
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.35);
    border-color: #ffd700;
    transform: rotate(90deg);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.3), 0 0 20px rgba(255, 215, 0, 0.3), inset 0 1px 4px rgba(255, 255, 255, 0.4);
}

.login-form {
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 1.4rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.form-group input {
    width: 100%;
    padding: 0.9rem 1.1rem;
    border: 2px solid rgba(70, 150, 220, 0.6);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.92);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    color: #1e3a8a;
    font-weight: 500;
    box-shadow: 0 4px 20px rgba(30, 58, 138, 0.2), inset 0 1px 4px rgba(255, 255, 255, 0.8), inset 0 -1px 2px rgba(30, 58, 138, 0.1), 0 0 20px rgba(70, 150, 220, 0.25);
    backdrop-filter: blur(10px);
}

.form-group input::placeholder {
    color: rgba(30, 58, 138, 0.5);
}

.form-group input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.98);
    border-color: #ffd700;
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.3), 0 6px 25px rgba(70, 150, 220, 0.35), inset 0 1px 4px rgba(255, 255, 255, 0.9), inset 0 -1px 2px rgba(30, 58, 138, 0.1), 0 0 25px rgba(255, 215, 0, 0.25);
    transform: translateY(-2px);
}

.btn-sign-in {
    width: 100%;
    padding: 0.7rem 0.9rem;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #0ea5e9 100%);
    color: #ffffff;
    border: 2px solid rgba(255, 215, 0, 0.7);
    border-radius: 8px;
    font-weight: 900;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.45), 0 0 25px rgba(70, 150, 220, 0.4), inset 0 1px 3px rgba(255, 255, 255, 0.3), 0 4px 15px rgba(0, 0, 0, 0.2), 0 0 30px rgba(255, 215, 0, 0.15);
    position: relative;
    overflow: hidden;
    margin-top: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.btn-sign-in::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-sign-in:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(30, 58, 138, 0.5), 0 0 25px rgba(255, 215, 0, 0.4), inset 0 1px 2px rgba(255, 255, 255, 0.4), 0 4px 12px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #0ea5e9 0%, #3b82f6 50%, #1e3a8a 100%);
    border-color: #ffed4e;
}

.btn-sign-in:hover::before {
    left: 100%;
}

.btn-sign-in:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 15px rgba(30, 58, 138, 0.3), 0 0 15px rgba(255, 215, 0, 0.2), inset 0 1px 2px rgba(255, 255, 255, 0.2);
}


/* Modal Footer */

.modal-footer {
    padding: 1.4rem 2.2rem;
    background: linear-gradient(180deg, rgba(30, 58, 138, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    border-top: 2px solid rgba(255, 215, 0, 0.4);
    text-align: center;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
    box-shadow: inset 0 2px 8px rgba(255, 255, 255, 0.2), 0 -2px 8px rgba(30, 58, 138, 0.1);
}

.footer-text {
    background: linear-gradient(90deg, #ffed4e 0%, #ffd700 50%, #ffc107 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 0.9rem;
    margin: 0;
    font-weight: 700;
    letter-spacing: 1px;
    filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.25)) drop-shadow(0 1px 4px rgba(30, 58, 138, 0.15));
}

.demo-credentials {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.08) 100%);
    padding: 1.2rem;
    border-radius: 12px;
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-left: 4px solid var(--accent-gold);
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2), inset 0 1px 2px rgba(255, 255, 255, 0.3);
}

.demo-credentials p {
    color: var(--primary-green);
    margin: 0.4rem 0;
    font-weight: 600;
}

.demo-credentials code {
    background: rgba(212, 175, 55, 0.2);
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    font-weight: 700;
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: inline-block;
    color: var(--primary-green);
}


/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 768px) {
    .navbar-container {
        flex-direction: column;
        gap: 1rem;
    }
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1.3rem;
    }
    .hero-description {
        font-size: 1rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .process-steps {
        grid-template-columns: 1fr;
    }
    .step-connector {
        width: 4px;
        height: 20px;
        margin: 0 auto;
    }
    .modal-content {
        width: 95%;
    }
}

@media (max-width: 480px) {
    .logo-text {
        display: none;
    }
    .hero-title {
        font-size: 1.5rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .btn-get-started {
        padding: 0.75rem 2rem;
        font-size: 1rem;
    }
    .section-title {
        font-size: 1.5rem;
    }
    .nav-links {
        gap: 0.5rem;
        font-size: 0.8rem;
    }
}