/* Root Wrapper */
.ab-wrapper-621683cd {
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    padding: 20px;
}

/* Booking Card */
.ab-card-621683cd {
    background: #ffffff;
    max-width: 420px;
    width: 100%;
    padding: 32px 28px;
    border-radius: 22px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    box-sizing: border-box;
}

/* Typography */
.ab-heading-621683cd {
    color: #1f1f1f;
    font-weight: 700;
    font-size: 26px;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

/* Info Box */
.ab-info-box-621683cd {
    background: #f8f9fa;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 12px;
    padding: 18px 20px;
    margin-bottom: 24px;
}
.ab-info-title-621683cd {
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.ab-info-content-621683cd {
    font-size: 13px;
    color: #555;
    line-height: 1.6;
}
.ab-info-content-621683cd ul {
    margin: 0;
    padding-left: 20px;
}

/* Forms */
.ab-form-placeholders-621683cd {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.ab-form-row-621683cd {
    display: flex;
    gap: 12px;
}
.ab-form-group-621683cd {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.ab-col-full { width: 100%; }
.ab-col-half { width: 50%; }

.ab-form-group-621683cd label {
    font-size: 12px;
    font-weight: 600;
    color: #444;
}

.ab-input-621683cd {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #e1e1e1;
    border-radius: 12px;
    background: #ffffff;
    font-family: inherit;
    font-size: 14px;
    color: #333;
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}
.ab-textarea-621683cd {
    resize: vertical;
}

/* Button */
.ab-btn-621683cd {
    width: 100%;
    color: #fff;
    border: none;
    padding: 15px 24px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    box-shadow: 0 8px 15px rgba(254, 95, 21, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.ab-btn-621683cd:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 20px rgba(254, 95, 21, 0.3);
}

/* Disclaimer */
.ab-disclaimer-621683cd {
    font-size: 11px;
    color: #888;
    text-align: center;
    margin-top: 16px;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 480px) {
    .ab-form-row-621683cd {
        flex-direction: column;
    }
    .ab-col-half {
        width: 100%;
    }
}