/* =====================================================
   GLOBAL
===================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html,
body {
    width: 100%;
    min-height: 100%;
}
body {
    font-family: 'Montserrat', sans-serif;
    background: #071a2b;
    color: #ffffff;
}
/* =====================================================
   MAIN PAGE
===================================================== */
.coming-page {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
/* =====================================================
   BACKGROUND IMAGE
===================================================== */
.page-bg {
    position: absolute;
    inset: 0;
    background-image: url("image/bg.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transform: scale(1.02);
    z-index: 0;
}
/* =====================================================
   DARK BLUE OVERLAY
===================================================== */
.page-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(4, 19, 34, 0.92) 0%,
            rgba(4, 22, 38, 0.82) 30%,
            rgba(4, 22, 38, 0.45) 65%,
            rgba(4, 22, 38, 0.68) 100%
        );
    z-index: 1;
}
/* =====================================================
   HEADER
===================================================== */
.top-header {
    position: relative;
    z-index: 5;
    width: 100%;
    padding: 18px 24px 0;
}
.header-inner {
    max-width: 1320px;
    margin: auto;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 10px;
}
/* =====================================================
   LOGO
===================================================== */
.logo-box {
    padding: 6px 12px;
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}
.logo-box img {
    width: 145px;
    height: auto;
    display: block;
}
/* =====================================================
   COMING SOON LABEL
===================================================== */
.coming-label {
    font-size: 30px;
    letter-spacing: 2px;
    color: rgba(250, 205, 4, 0.993);
    display: flex;
    align-items: center;
    gap: 8px;
}
.coming-label span {
    width: 25px;
    height: 1px;
    background: rgba(255,255,255,0.45);
}
/* =====================================================
   MAIN CONTENT
===================================================== */
.main-content {
    position: relative;
    z-index: 3;
    flex: 1;
    display: flex;
    align-items: center;
    padding: 25px 24px 110px;
}
.content-wrapper {
    width: 100%;
    max-width: 1320px;
    margin: auto;
}
/* =====================================================
   CONTENT CARD
===================================================== */
.content-card {
    width: 100%;
    max-width: 660px;
    padding: 27px 32px 28px;
    background:
        linear-gradient(
            145deg,
            rgba(10, 37, 60, 0.92),
            rgba(4, 22, 38, 0.82)
        );
    border: 1px solid rgba(255,255,255,0.28);
    border-radius: 8px;
    box-shadow:
        0 20px 60px rgba(0,0,0,0.35),
        inset 0 0 30px rgba(255,255,255,0.02);
    backdrop-filter: blur(4px);
}
/* =====================================================
   SMALL HEADING
===================================================== */

.small-heading {
    font-size: 14px;
    color: #d3a14b;
    margin-bottom: 10px;
}
/* =====================================================
   TITLE
===================================================== */

.content-card h1 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    line-height: 1.3;
    font-weight: 500;
    letter-spacing: 0.7px;
    color: #ffffff;
    margin-bottom: 13px;
}

.content-card h1 span {
    color: #d6a64d;
}

/* =====================================================
   DESCRIPTION
===================================================== */

.intro-text {
    font-size: 16px;
    line-height: 1.65;
    color: rgba(255,255,255,0.72);
    margin-bottom: 20px;
}
/* =====================================================
   COUNTDOWN
===================================================== */

.countdown {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 22px;
}
.time-box {
    flex: 1;
    text-align: left;
    position: relative;
}

.time-box:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 18px;
    top: 7px;
    width: 1px;
    height: 32px;
    background: rgba(255,255,255,0.15);
}

.time-number {
    font-family: 'Playfair Display', serif;
    font-size: 46px;
    line-height: 1;
    color: #e0ac4c;
    margin-bottom: 5px;
}
.time-label {
    font-size: 14px;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.62);
}
/* =====================================================
   FOOTER
===================================================== */
.bottom-footer {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
    background:
        linear-gradient(
            90deg,
            rgba(3,16,29,0.97),
            rgba(4,25,43,0.94)
        );
    border-top: 1px solid rgba(255,255,255,0.14);
}
.footer-container {
    max-width: 1320px;
    min-height: 72px;
    margin: auto;
    padding: 10px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-item {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 40px;
    padding: 0 20px;
    border-right: 1px solid rgba(255,255,255,0.12);
}
.footer-item:first-child {
    padding-left: 0;
}
.footer-item:last-child {
    border-right: none;
}
/* =====================================================
   FOOTER ICON
===================================================== */
.footer-icon {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(214,166,77,0.55);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d6a64d;
    font-size: 20px;
}
/* =====================================================
   FOOTER TEXT
===================================================== */
.footer-item small {
    display: block;
    font-size: 17px;
    color: #ffffff;
    margin-bottom: 4px;
}
.footer-item span {
    display: block;
    font-size: 16px;
    color: rgba(255,255,255,0.55);
}
/* =====================================================
   SOCIAL
==================================================== */
.social-links {
    display: flex;
    gap: 6px;
    margin-top: 5px;
}
.social-links a {
    width: 21px;
    height: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.28);
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s ease;
}
.social-links a:hover {
    background: #d6a64d;
    border-color: #d6a64d;
    color: #071a2b;
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {
    .main-content {
        padding-bottom: 130px;
    }
    .content-wrapper {
        padding-left: 20px;
    }
    .footer-container {
        flex-wrap: wrap;
        gap: 10px;
    }
    .footer-item {
        flex: 1 1 40%;
    }
}
/* =====================================================
   MOBILE
===================================================== */
@media (max-width: 767px) {
    .coming-page {
        min-height: 100svh;
    }
    .page-bg {
        background-position: 50% center;
    }
    .page-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(3,18,32,0.80) 0%,
                rgba(3,18,32,0.72) 35%,
                rgba(3,18,32,0.92) 100%
            );
    }
    /* Header */
    .top-header {
        padding: 15px 15px 0;
    }
    .logo-box img {
        width: 125px;
    }
    /* Main */
    .main-content {
        align-items: flex-end;
        padding: 30px 15px 100px;
    }
    .content-wrapper {
        padding-left: 0;
    }
    .content-card {
        max-width: 100%;
        padding: 23px 20px;
        border-radius: 6px;
    }
    .small-heading {
        font-size: 7px;
        margin-bottom: 8px;
    }
    .content-card h1 {
        font-size: 25px;
    }
    .intro-text {
        font-size: 9px;
    }
    /* Countdown */
    .countdown {
        margin-bottom: 18px;
    }
    .time-number {
        font-size: 19px;
    }
    .time-label {
        font-size: 6px;
    }
    .time-box:not(:last-child)::after {
        right: 8px;
    }
    /* Form */
    .notify-form {
        height: 38px;
    }
    .notify-form input {
        font-size: 8px;
    }
    .notify-form button {
        width: 95px;
        font-size: 7px;
    }
    /* Footer */
    .bottom-footer {
        position: relative;
    }
    .footer-container {
        min-height: auto;
        padding: 12px 15px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .footer-item {
        padding: 5px 0;
        border-right: none;
        min-height: 35px;
    }
    .footer-item:first-child {
        padding-left: 0;
    }
    .footer-icon {
        width: 27px;
        height: 27px;
        font-size: 9px;
    }
    .footer-item small {
        font-size: 12px;
    }
    .footer-item span {
        font-size: 6px;
    }
}
/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 400px) {
    .content-card h1 {
        font-size: 22px;
    }
    .intro-text {
        font-size: 14px;
    }
    .time-number {
        font-size: 27px;
    }
    .notify-form button {
        width: 85px;
    }
}