/* ======================================================
   Jack Rental Mobil — Coming Soon
   ====================================================== */

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: #0B1220;
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

/* ------------------------------------------------------
   Background blobs
------------------------------------------------------ */
.cs-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.cs-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: .35;
}

.cs-blob-1 {
    width: 480px;
    height: 480px;
    background: #0F62FE;
    top: -120px;
    left: -100px;
    animation: cs-float 12s ease-in-out infinite;
}

.cs-blob-2 {
    width: 420px;
    height: 420px;
    background: #22D3EE;
    bottom: -140px;
    right: -100px;
    animation: cs-float 14s ease-in-out infinite reverse;
}

.cs-blob-3 {
    width: 320px;
    height: 320px;
    background: #7C3AED;
    top: 40%;
    left: 60%;
    animation: cs-float 16s ease-in-out infinite;
}

@keyframes cs-float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}

/* ------------------------------------------------------
   Layout
------------------------------------------------------ */
.cs-wrapper {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.cs-card {
    width: 100%;
    max-width: 640px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    text-align: center;
    backdrop-filter: blur(20px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .35);
    animation: cs-fade-up .6s ease;
}

@keyframes cs-fade-up {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ------------------------------------------------------
   Brand
------------------------------------------------------ */
.cs-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    margin-bottom: 1.75rem;
}

.cs-brand-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, #0F62FE, #22D3EE);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    color: #fff;
}

.cs-brand-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

/* ------------------------------------------------------
   Badge
------------------------------------------------------ */
.cs-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(15, 98, 254, .15);
    border: 1px solid rgba(15, 98, 254, .35);
    color: #6CA2FE;
    padding: .5rem 1.1rem;
    border-radius: 999px;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .02em;
    margin-bottom: 1.5rem;
}

.cs-badge i {
    font-size: .75rem;
}

/* ------------------------------------------------------
   Title / Text
------------------------------------------------------ */
.cs-title {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 1.1rem;
    background: linear-gradient(135deg, #fff, #B8C7E0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cs-subtitle {
    font-size: .98rem;
    color: #A9B4C7;
    line-height: 1.7;
    max-width: 480px;
    margin: 0 auto 2rem;
}

/* ------------------------------------------------------
   Progress bar
------------------------------------------------------ */
.cs-progress {
    width: 100%;
    max-width: 320px;
    height: 8px;
    background: rgba(255, 255, 255, .08);
    border-radius: 999px;
    margin: 0 auto 2rem;
    overflow: hidden;
}

.cs-progress-bar {
    height: 100%;
    width: 72%;
    border-radius: 999px;
    background: linear-gradient(90deg, #0F62FE, #22D3EE);
    position: relative;
    animation: cs-shimmer 2.4s ease-in-out infinite;
}

@keyframes cs-shimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: .7; }
}

/* ------------------------------------------------------
   Divider
------------------------------------------------------ */
.cs-divider {
    height: 1px;
    background: rgba(255, 255, 255, .08);
    margin: 0 auto 1.75rem;
    max-width: 400px;
}

/* ------------------------------------------------------
   Contact
------------------------------------------------------ */
.cs-contact-label {
    font-size: .85rem;
    color: #7C8AA5;
    margin-bottom: 1.1rem;
}

.cs-contact-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .9rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}

.cs-btn {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: .8rem 1.5rem;
    border-radius: 10px;
    font-size: .9rem;
    font-weight: 600;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.cs-btn-primary {
    background: linear-gradient(135deg, #0F62FE, #22D3EE);
    color: #fff;
}

.cs-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(15, 98, 254, .35);
}

.cs-btn-outline {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .15);
    color: #fff;
}

.cs-btn-outline:hover {
    background: rgba(255, 255, 255, .1);
    transform: translateY(-2px);
}

.cs-email {
    font-size: .85rem;
    color: #7C8AA5;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    margin-bottom: 1.75rem;
}

/* ------------------------------------------------------
   Socials
------------------------------------------------------ */
.cs-socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .8rem;
}

.cs-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    transition: background .2s ease, transform .2s ease;
}

.cs-socials a:hover {
    background: #0F62FE;
    transform: translateY(-2px);
}

/* ------------------------------------------------------
   Footer
------------------------------------------------------ */
.cs-footer {
    position: relative;
    z-index: 1;
    margin-top: 2rem;
    font-size: .8rem;
    color: #5B6A85;
    text-align: center;
}

/* ------------------------------------------------------
   Responsive
------------------------------------------------------ */
@media (max-width: 560px) {
    .cs-card {
        padding: 2.25rem 1.5rem;
        border-radius: 18px;
    }

    .cs-title {
        font-size: 1.6rem;
    }

    .cs-subtitle {
        font-size: .9rem;
    }

    .cs-contact-row {
        flex-direction: column;
        width: 100%;
    }

    .cs-btn {
        width: 100%;
        justify-content: center;
    }
}
