/* 
* Seya Connect - Maintenance Page Styles (Refined)
* Design System: Deep Navy + Electric Cyan + Sci-Fi/Tech
*/

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&family=Orbitron:wght@400;500;700;900&family=Inter:wght@300;400;500;600&display=swap');

:root {
    /* Colors */
    --bg-color: #020b1c;
    /* Deep Navy Blue */
    --text-primary: #ffffff;
    --text-secondary: #b0c4de;
    --accent-cyan: #00f0ff;
    /* Electric Cyan */
    --accent-blue: #0077ff;
    /* Bright Blue */
    --accent-glow: rgba(0, 240, 255, 0.6);

    /* Gradients */
    --gradient-main: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
    --gradient-text: linear-gradient(to right, #fff, var(--accent-cyan));

    /* Glassmorphism / Tech Borders */
    --glass-bg: rgba(2, 11, 28, 0.7);
    --glass-border: rgba(0, 240, 255, 0.2);
    --glass-blur: 10px;

    /* Spacing */
    --container-padding: 2rem;
    --border-radius: 12px;
    /* Sharper corners for tech feel */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    line-height: 1.6;
}

/* Background Image & Overlay */
.bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../../assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    z-index: -2;
    opacity: 0.4;
    /* Dimmed to let content pop */
    filter: contrast(1.2) saturate(1.2);
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
    /* Already good to have, ensures clicks go through */
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, var(--bg-color) 90%);
    z-index: -1;
}

/* Tech Grid */
.bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 240, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -1;
    pointer-events: none;
    mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
}

/* Main Container */
.container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 800px;
    /* Wider for split look if needed, but keeping centered for now */
    padding: var(--container-padding);
    text-align: center;
}

.tech-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 4rem 2rem;
    box-shadow:
        0 0 20px rgba(0, 240, 255, 0.1),
        inset 0 0 20px rgba(0, 240, 255, 0.05);
    position: relative;
    overflow: hidden;
    animation: fadeIn 1s ease-out;
}

/* Decorative Tech Lines */
.tech-card::before,
.tech-card::after {
    content: '';
    position: absolute;
    background: var(--accent-cyan);
    transition: all 0.3s ease;
}

.tech-card::before {
    top: 0;
    left: 0;
    width: 100px;
    height: 2px;
    box-shadow: 0 0 10px var(--accent-cyan);
}

.tech-card::after {
    bottom: 0;
    right: 0;
    width: 100px;
    height: 2px;
    box-shadow: 0 0 10px var(--accent-cyan);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Logo / Branding */
.logo-wrapper {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.logo-img {
    max-width: 180px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.3));
    transition: filter 0.3s ease;
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: auto;
    /* Ensure it can still capture clicks if needed, but we'll block context menu in JS */
}

.logo-img:hover {
    filter: drop-shadow(0 0 15px rgba(0, 240, 255, 0.6));
}

/* Content */
h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    line-height: 1.1;
    text-transform: uppercase;
    background: var(--gradient-text);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
    letter-spacing: 0.05em;
}

.tagline {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-cyan);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
}

p.description {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Progress Bar (Tech Style) */
.progress-wrapper {
    margin-bottom: 3rem;
    position: relative;
    padding: 0 1rem;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    color: var(--accent-cyan);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.progress-track {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
}

.progress-fill {
    height: 100%;
    background: var(--accent-cyan);
    width: 0%;
    position: relative;
    box-shadow: 0 0 15px var(--accent-cyan);
    transition: width 0.5s ease-out;
}

.progress-fill::after {
    content: '';
    position: absolute;
    right: 0;
    top: -3px;
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px #fff;
}

/* Footer / Contact */
.footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    color: var(--text-primary);
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.8rem 2rem;
    background: rgba(0, 240, 255, 0.05);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 4px;
    /* Techy corners */
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-link:hover {
    background: rgba(0, 240, 255, 0.15);
    border-color: var(--accent-cyan);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
    transform: translateY(-2px);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-icon {
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: var(--accent-cyan);
    filter: drop-shadow(0 0 5px var(--accent-cyan));
    transform: scale(1.1);
}

/* Glitch Effect Class (for JS) */
.glitch-text {
    position: relative;
}

/* Responsive */
@media (max-width: 640px) {
    h1 {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .tech-card {
        padding: 3rem 1.5rem;
    }
}