/* ============================================
   JKC Infotech - Coming Soon Page
   Premium CCTV & Security Solutions
   ============================================ */

/* CSS Variables - Same as main website */
:root {
    /* Primary Colors - Royal Blue */
    --primary-dark: #1e3a8a;
    --primary: #2563eb;
    --primary-light: #4169E1;

    /* Secondary Colors */
    --secondary: #1e40af;
    --secondary-light: #3b82f6;

    /* Accent Colors */
    --accent: #ffffff;
    --accent-dark: #f1f5f9;
    --accent-light: #f8fafc;

    /* Highlight */
    --highlight: #60a5fa;
    --highlight-dark: #3b82f6;

    /* Neutrals */
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #1e3a8a 0%, #4169E1 100%);
    --gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e3a8a 40%, #4169E1 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);

    /* Shadows */
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1), 0 6px 10px rgba(0, 0, 0, 0.08);
    --shadow-glow: 0 0 30px rgba(65, 105, 225, 0.4);

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Transitions */
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;
}

/* Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-family);
    background: var(--gray-50);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Page Container */
.coming-soon-page {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    color: var(--gray-800);
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-100) 100%);
}

/* Background Decorations */
.bg-decoration {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(65, 105, 225, 0.1) 0%, transparent 70%);
}

.circle-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.circle-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
    animation: float 10s ease-in-out infinite reverse;
}

.circle-3 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 4s ease-in-out infinite;
}

/* Main Content */
.content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    width: 100%;
}

/* Logo */
.logo-container {
    margin-bottom: 2rem;
}

.logo {
    height: 80px;
    width: auto;
    margin: 0 auto;
    filter: drop-shadow(0 4px 20px rgba(30, 58, 138, 0.15));
}

/* Headline */
.headline {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.coming {
    display: block;
    font-weight: 300;
    font-size: 0.6em;
    letter-spacing: 1em;
    margin-right: -1em;
    color: var(--gray-500);
}

.soon {
    display: block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

/* Description */
.description {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--gray-600);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* Progress Indicator */
.progress-indicator {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 3rem;
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: pulse-ring 2s ease-out infinite;
}

.pulse-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(65, 105, 225, 0.6);
    animation: pulse-core 2s ease-in-out infinite;
}

/* Contact Section */
.contact-section {
    margin-bottom: 2rem;
}

.contact-text {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 1rem;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50px;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all var(--transition-base);
}

.contact-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    color: var(--white);
}

.contact-link svg {
    flex-shrink: 0;
}

/* Footer */
.footer {
    margin-top: auto;
    padding-top: 2rem;
}

.footer p {
    font-size: 0.85rem;
    color: var(--gray-500);
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

@keyframes pulse-core {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.animate-slide-up {
    animation: slideUp 0.8s ease forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

.animate-slide-down {
    animation: slideDown 0.8s ease forwards;
}

/* Responsive */
@media (max-width: 768px) {
    .coming-soon-page {
        padding: 1.5rem;
    }

    .logo {
        height: 60px;
    }

    .description {
        margin-bottom: 2rem;
    }

    .progress-indicator {
        width: 60px;
        height: 60px;
        margin-bottom: 2rem;
    }

    .pulse-ring {
        width: 60px;
        height: 60px;
    }

    .circle-1 {
        width: 400px;
        height: 400px;
        top: -150px;
        right: -150px;
    }

    .circle-2 {
        width: 250px;
        height: 250px;
        bottom: -100px;
        left: -100px;
    }

    .circle-3 {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .coming-soon-page {
        padding: 1rem;
    }

    .logo {
        height: 50px;
    }

    .headline {
        letter-spacing: -1px;
    }

    .coming {
        letter-spacing: 0.5em;
        margin-right: -0.5em;
    }

    .contact-link {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
}