.contact-form-wrap-1{
    max-width: 750px !important;
    box-shadow: unset !important;
    background: unset !important;
    padding: 0 !important;
}

.countdown {
    position: relative;
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    padding: 30px;
    background: #1d4999;
    border-radius: 16px;
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.2);
    max-width: 700px;
    margin: 0px auto;
    font-family: 'Orbitron', sans-serif;
}

.countdown::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0;
    border-bottom: 40px solid #fbde04;
    border-right: 40px solid transparent;
}

.countdown::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-top: 40px solid #fbde04;
    border-left: 40px solid transparent;
}


.countdown-item {
    /* background: linear-gradient(145deg, #1a1a1a, #0d0d0d); */
    border: 2px solid #ffffff;
    border-radius: 12px;
    padding: 20px 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.countdown-item:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px #ffffff;
}

.countdown-number {
    font-size: 48px;
    color: #ffffff;
    font-weight: 700;
    display: block;
    padding-bottom: 20px;
}

.countdown-label {
    font-size: 14px;
    color: #fbde04;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 8px;
}


@media (max-width: 767px) {
    .countdown {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
        border-radius: 12px;
    }

    .countdown-item {
        padding: 15px 20px;
    }

    .countdown-number {
        font-size: 32px;
        padding-bottom: 10px;
    }

    .countdown-label {
        font-size: 12px;
    }

    .countdown::before,
    .countdown::after {
        border-width: 20px;
    }
}
