.booking-success *{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

body{

    font-family:Arial,sans-serif;

    background:
    linear-gradient(rgba(0,0,0,.70),rgba(0,0,0,.70)),
    url("../images/booking/booking.jpg");

    background-size:cover;
    background-position:center;
    background-attachment:fixed;

    color:#fff;

    min-height:100vh;

    margin:0;
}

.booking-success .container{

    width:100%;
    max-width:700px;

    margin:80px auto;

    background:rgba(0,0,0,.1);

    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);

    border-radius:20px;

    padding:50px;

    text-align:center;

    box-shadow:0 15px 35px rgba(0,0,0,.35);

    border:1px solid rgba(255,255,255,.08);

}

.booking-success .check{

    font-size:70px;

    color:#34A853;

}

.booking-success h1{

    margin-top:20px;

    font-size:38px;

}

.booking-success h2{

    margin-top:10px;

    color:#cfcfcf;

    font-weight:400;

    font-size:22px;

}

.booking-success .intro{

    margin-top:30px;

    line-height:1.8;

}

.booking-success .email{

    margin-top:20px;

    line-height:1.8;

    color:#cfcfcf;

}

.booking-success .info{

    margin-top:40px;

    background:#252525;

    border-radius:15px;

    padding:30px;

    text-align:left;

}

.booking-success .info h3{

    margin-bottom:20px;

}

.booking-success .info ul{

    padding-left:20px;

    line-height:2;

}

.booking-success .home-btn{

    display:inline-block;

    margin-top:40px;

    background:#d32f2f;

    color:#fff;

    text-decoration:none;

    padding:16px 35px;

    border-radius:8px;

    font-weight:bold;

    transition:.25s;

}

.booking-success .home-btn:hover{

    background:#b71c1c;

}

.booking-success .footer{

    margin-top:25px;

    color:#999;

    font-size:14px;

}

.booking-success .booking-box{

    width:min(90%,600px);

    margin:30px auto;

    padding:24px;

    background:#2d2d2d;

    border-radius:20px;

}

.booking-success .booking-label{

    color:#bfbfbf;

    font-size:20px;

    margin-bottom:12px;

}

.booking-success #bookingId{

    display:block;

    width:100%;

    font-size:clamp(16px,4vw,32px);

    font-weight:700;

    color:#fff;

    text-align:center;

    white-space:nowrap;

    overflow:hidden;

}


@media (max-width:768px){

    .booking-success .booking-box{

        max-width:100%;

        padding:20px 15px;

    }

    .booking-success #bookingId{

        font-size:16px;

        line-height:1.4;

        letter-spacing:0;

    }

    .booking-success .info{

        margin-top:40px;

        background:#252525;

        border-radius:15px;

        padding:15px;

        text-align:left;

    }

    .booking-success .info h3{

        margin-bottom:20px;

    }

    .booking-success .info ul{

        padding-left:20px;

        line-height:2;

    }

}