.tour-details-soon .container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

.tour-soon-card {
    position: relative;
    border-radius: 28px;
    padding: 60px 45px;
    text-align: center;
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.06),
        0 2px 10px rgba(0, 0, 0, 0.04);
}

/* Premium Glow Border */
.tour-soon-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(
        135deg,
        rgba(255,255,255,0.25),
        rgba(255,255,255,0.05),
        rgba(255,255,255,0.2)
    );

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* Floating Blur Effect */
.tour-soon-card::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    top: -120px;
    right: -100px;
    background: rgba(255,255,255,0.06);
    filter: blur(60px);
    pointer-events: none;
}

/* Badge */
.tour-soon-card .badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 100px;
    margin-bottom: 25px;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    letter-spacing: 1px;
    text-transform: uppercase;
    flex-wrap: wrap;
}

/* Heading */
.tour-soon-card h2 {
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 800;
    word-break: break-word;
}

/* Description */
.tour-soon-card p {
    max-width: 700px;
    margin: 0 auto 35px;
    line-height: 1.8;
}

/* Upload Status */
.upload-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: rgba(49, 45, 45, 0.08);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 14px 24px;
    border-radius: 100px;
    color: #066168;
    margin-bottom: 40px;
    position: relative;
    text-align: center;
    width: fit-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

/* Red Dot */
.upload-status span {
    width: 12px;
    height: 12px;
    min-width: 12px;
    min-height: 12px;
    background: #ff0000;
    border-radius: 50%;
    position: relative;
    display: block;
    flex-shrink: 0;
}

/* Pulse Effect */
.upload-status span::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: rgba(255, 0, 0, 0.3);
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

/* WhatsApp Button */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 34px;
    border-radius: 100px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #ffffff;
    text-decoration: none;
    transition: all 0.35s ease;
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.35);
    text-align: center;
    max-width: 100%;
}

.whatsapp-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 45px rgba(37, 211, 102, 0.45);
    color: #ffffff;
}

/* ===============================
   LARGE DESKTOP
================================== */

@media (min-width: 1400px) {

    .tour-soon-card {
        padding: 80px 70px;
    }
}

/* ===============================
   LAPTOP
================================== */

@media (max-width: 1199px) {

    .tour-soon-card {
        padding: 50px 35px;
    }
}

/* ===============================
   TABLET
================================== */

@media (max-width: 991px) {

    .tour-details-soon {
        padding: 70px 15px;
    }

    .tour-soon-card {
        padding: 45px 28px;
        border-radius: 24px;
    }

    .tour-soon-card::after {
        width: 180px;
        height: 180px;
        top: -90px;
        right: -70px;
    }

    .tour-soon-card p {
        line-height: 1.7;
    }

    .upload-status {
        padding: 12px 18px;
        gap: 12px;
    }

    .whatsapp-btn {
        padding: 16px 28px;
    }
}

/* ===============================
   MOBILE
================================== */

@media (max-width: 767px) {

    .tour-details-soon {
        padding: 60px 12px;
    }

    .tour-soon-card {
        padding: 35px 20px;
        border-radius: 20px;
    }

    .tour-soon-card::after {
        width: 130px;
        height: 130px;
        top: -70px;
        right: -50px;
    }

    .tour-soon-card .badge {
        width: 100%;
        padding: 10px 16px;
    }

    .tour-soon-card p {
        margin-bottom: 28px;
        line-height: 1.6;
    }

    .upload-status {
        width: 100%;
        border-radius: 18px;
        padding: 14px 16px;
        gap: 12px;
        flex-wrap: nowrap;
    }

    .whatsapp-btn {
        width: 100%;
        padding: 15px 20px;
        border-radius: 18px;
    }
}

/* ===============================
   SMALL MOBILE
================================== */

@media (max-width: 480px) {

    .tour-details-soon {
        padding: 50px 10px;
    }

    .tour-soon-card {
        padding: 28px 16px;
        border-radius: 18px;
    }

    .tour-soon-card .badge {
        padding: 9px 14px;
    }

    .upload-status {
        padding: 12px 14px;
        gap: 10px;
    }

    .whatsapp-btn {
        padding: 14px 16px;
    }
}