* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    min-height: 100vh;
    background: linear-gradient( to right, #0f172a, #13294b);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    color: white;
}


/* CONTAINER */

.container {
    width: 100%;
    max-width: 1300px;
    height: 90vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    align-items: center;
}


/* LEFT */

.left-content h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.left-content p {
    color: #dbe4f0;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 15px;
}

.mini-text {
    color: #38bdf8;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 14px;
}


/* INFO */

.info-box {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.info-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 16px;
    border-radius: 14px;
    backdrop-filter: blur(10px);
    transition: 0.3s;
    font-size: 14px;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.3);
}


/* FOTO BENGKEL */

.bengkel-img {
    width: 100%;
    margin-top: 20px;
    padding: 4px;
    border-radius: 28px;
    background: linear-gradient( 135deg, rgba(56, 189, 248, 0.8), rgba(255, 255, 255, 0.1), rgba(56, 189, 248, 0.4));
    box-shadow: 0 0 30px rgba(56, 189, 248, 0.15);
    overflow: hidden;
    transition: 0.5s;
}

.bengkel-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    border-radius: 24px;
    transition: 0.5s;
}

.bengkel-img:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 0 45px rgba(56, 189, 248, 0.35);
}

.bengkel-img:hover img {
    transform: scale(1.03);
}


/* FORM */

.form-box {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 25px;
    backdrop-filter: blur(15px);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
}

.form-box h2 {
    margin-bottom: 20px;
    font-size: 24px;
}


/* INPUT */

.input-group {
    margin-bottom: 14px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 14px;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 12px;
    border: none;
    outline: none;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.07);
    color: white;
    font-size: 14px;
    transition: 0.3s;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    border: 1px solid #38bdf8;
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.3);
}

.input-group textarea {
    resize: none;
}

select option {
    color: black;
}


/* BUTTON */

.btn-booking {
    width: 100%;
    border: none;
    background: #1ea7ff;
    color: white;
    padding: 14px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.btn-booking:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px #1ea7ff;
}


/* BACK */

.back-btn {
    position: absolute;
    top: 20px;
    left: 20px;
    text-decoration: none;
    color: white;
    background: rgba(255, 255, 255, 0.08);
    padding: 10px 18px;
    border-radius: 12px;
    transition: 0.3s;
    font-size: 14px;
}

.back-btn:hover {
    background: #1ea7ff;
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.3);
}


/* RESPONSIVE */

@media(max-width:1000px) {
    body {
        height: auto;
        padding: 20px;
    }
    .container {
        grid-template-columns: 1fr;
        height: auto;
    }
    .left-content {
        text-align: center;
    }
    .info-box {
        justify-content: center;
    }
}

@media(max-width:600px) {
    .left-content h1 {
        font-size: 32px;
    }
    .bengkel-img img {
        height: 180px;
    }
}

select option:disabled {
    color: #777;
    background: #cfcfcf;
}


/* HARGA */

.price-box {
    margin-top: 15px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px;
    border-radius: 14px;
    color: white;
    font-size: 15px;
    font-weight: 500;
}

#hargaText {
    display: block;
    margin-top: 8px;
    color: #38bdf8;
    font-size: 22px;
    font-weight: 700;
}