/* =====================================================
   COMING SOON PAGE - KARSIL CARGO
   Standalone CSS for maintenance page
===================================================== */

/* =====================================================
   CSS VARIABLES
===================================================== */
:root {
    /* Colors */
    --primary: #0f172a;
    --primary-dark: #020617;
    --primary-light: #1e293b;
    --accent: #ff8000;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;

    /* Typography */
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;

    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.375rem;
    --radius-lg: 0.5rem;
    --radius-xl: 0.75rem;
    --radius-2xl: 1rem;
    --radius-3xl: 1.5rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    /* Transitions */
    --transition-fast: all 0.15s ease;
    --transition-normal: all 0.3s ease;
    --transition-slow: all 0.5s ease;

    /* Z-index */
    --z-base: 1;
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;

    /* Layout */
    --topbar-height: 40px;
    --header-height: 80px;
    --container-max: 1280px;
}

/* =====================================================
   RESET & BASE
===================================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--gray-300);
    background-color: var(--primary);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

::selection {
    background: var(--accent);
    color: var(--white);
}

/* =====================================================
   LAYOUT
===================================================== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-6);
}

/* =====================================================
   TOPBAR
===================================================== */
.topbar {
    background: var(--primary-dark);
    height: var(--topbar-height);
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: calc(var(--z-fixed) + 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.topbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.topbar-contact {
    display: flex;
    align-items: center;
    gap: var(--space-6);
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    color: var(--gray-300);
    transition: var(--transition-fast);
}

.topbar-item:hover {
    color: var(--accent);
}

.topbar-item i {
    color: var(--accent);
    font-size: var(--text-xs);
}

.topbar-social {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.topbar-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.05);
    color: var(--gray-300);
    font-size: var(--text-sm);
    transition: var(--transition-fast);
}

.topbar-social a:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
}

/* =====================================================
   HEADER
===================================================== */
.header {
    position: fixed;
    top: var(--topbar-height);
    left: 0;
    right: 0;
    height: var(--header-height);
    z-index: var(--z-fixed);
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.logo img {
    height: 48px;
    width: auto;
}

/* =====================================================
   COMING SOON WRAPPER
===================================================== */
.coming-soon-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.coming-soon-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(15, 23, 42, 0.95) 0%, rgba(3, 7, 18, 1) 100%);
    z-index: -3;
}

.coming-soon-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 128, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 128, 0, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -2;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

.coming-soon-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    z-index: -1;
    animation: pulse 8s ease-in-out infinite;
}

.glow-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 128, 0, 0.4) 0%, transparent 70%);
    top: -200px;
    right: -200px;
}

.glow-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
    animation-delay: -4s;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.1);
    }
}

/* =====================================================
   CONTENT
===================================================== */
.coming-soon-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-8) var(--space-4);
    text-align: center;
    margin-top: calc(var(--topbar-height) + var(--header-height));
}



.cs-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: linear-gradient(135deg, rgba(255, 128, 0, 0.15) 0%, rgba(255, 128, 0, 0.05) 100%);
    border: 1px solid rgba(255, 128, 0, 0.3);
    border-radius: var(--radius-full);
    color: var(--accent);
    font-size: var(--text-sm);
    font-weight: 600;
    margin-bottom: var(--space-6);
    animation: fadeIn 1s ease-out 0.2s backwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.cs-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--space-6);
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeIn 1s ease-out 0.4s backwards;
}

.cs-title span {
    background: linear-gradient(135deg, var(--accent) 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cs-subtitle {
    font-size: var(--text-lg);
    color: var(--gray-300);
    max-width: 700px;
    margin: 0 auto var(--space-10);
    line-height: 1.6;
    animation: fadeIn 1s ease-out 0.6s backwards;
}

/* =====================================================
   COUNTDOWN TIMER
===================================================== */
.countdown-container {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-10);
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeIn 1s ease-out 0.8s backwards;
}

.countdown-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-6) var(--space-8);
    min-width: 120px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 128, 0, 0.5);
    box-shadow: 0 10px 30px rgba(255, 128, 0, 0.2);
}

.countdown-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent) 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1;
    margin-bottom: var(--space-2);
}

.countdown-label {
    font-size: var(--text-sm);
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

/* =====================================================
   TRACKING SECTION
===================================================== */
.cs-tracking-section {
    width: 100%;
    max-width: 600px;
    margin: 0 auto var(--space-10);
    animation: fadeIn 1s ease-out 1s backwards;
}

.cs-tracking-title {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
}

.cs-tracking-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    backdrop-filter: blur(10px);
}

.cs-tracking-input-wrapper {
    display: flex;
    gap: var(--space-3);
    margin-bottom: var(--space-3);
}

.cs-tracking-input {
    flex: 1;
    padding: var(--space-4);
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    color: var(--white);
    font-size: var(--text-base);
    transition: all 0.3s ease;
}

.cs-tracking-input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(255, 128, 0, 0.1);
}

.cs-tracking-input::placeholder {
    color: var(--gray-500);
}

.cs-tracking-btn {
    padding: var(--space-4) var(--space-6);
    background: linear-gradient(135deg, var(--accent) 0%, #f97316 100%);
    border: none;
    border-radius: var(--radius-lg);
    color: var(--white);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.cs-tracking-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 128, 0, 0.3);
}

.cs-tracking-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.cs-tracking-hint {
    font-size: var(--text-sm);
    color: var(--gray-400);
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

/* =====================================================
   SERVICE NOTICE
===================================================== */
.cs-notice {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(34, 197, 94, 0.05) 100%);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    max-width: 700px;
    margin: 0 auto var(--space-10);
    animation: fadeIn 1s ease-out 1.2s backwards;
}

.cs-notice-content {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    text-align: left;
}

.cs-notice-icon {
    width: 48px;
    height: 48px;
    background: rgba(34, 197, 94, 0.2);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #22c55e;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.cs-notice-text h3 {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-2);
}

.cs-notice-text p {
    color: var(--gray-300);
    line-height: 1.6;
}

/* =====================================================
   CONTACT LINKS
===================================================== */
.cs-contact {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeIn 1s ease-out 1.4s backwards;
}

.cs-contact-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-5);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    color: var(--gray-300);
    text-decoration: none;
    font-size: var(--text-sm);
    transition: all 0.3s ease;
}

.cs-contact-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

/* =====================================================
   SHAKE ANIMATION
===================================================== */
@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-8px);
    }

    75% {
        transform: translateX(8px);
    }
}

.shake {
    animation: shake 0.4s ease;
}

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 768px) {
    .topbar {
        display: none;
    }

    .header {
        top: 0;
    }

    .coming-soon-content {
        margin-top: var(--header-height);
        padding: var(--space-6) var(--space-4);
    }

    .countdown-item {
        min-width: 100px;
        padding: var(--space-4) var(--space-6);
    }

    .countdown-number {
        font-size: 2.5rem;
    }

    .cs-tracking-input-wrapper {
        flex-direction: column;
    }

    .cs-tracking-btn {
        justify-content: center;
    }

    .cs-notice-content {
        flex-direction: column;
        text-align: center;
    }

    .cs-subtitle {
        font-size: var(--text-base);
    }
}