.reservation-modal {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0,0,0,.18);
    margin: 0 auto;
    position: relative;
    font-family: 'Montserrat', Arial, sans-serif;
}
.modal-header {
    background: var(--color-success);
    border-radius: 8px 8px 0 0;
    text-align: center;
    padding: 2px 25px 8px 25px;
    border-bottom: none !important;
}
.modal-title {
    font-size: 1.2em;
    font-weight: 600;
    color: #fafafa;
}
.btn-close {
    filter: invert(1);
}
.decorative-line {
    color: #cb0025;
    font-size: 1.3rem;
    letter-spacing: 0.2em;
    margin-top: 0;
    margin-bottom: 18px;
}
.form-container {
    background: #fff;
    border-radius: 0 0 8px 8px;
}
.form-section {
    padding: 0 20px;
    box-sizing: border-box;
}
.section-title {
    font-size: .8em;
    margin-bottom: 16px;
    font-weight: bold;
    color: #413f7d;
    letter-spacing: .05em;
    text-align: center;
    border-bottom: 1px solid #ddd;
}
.form-label {
    display: block;
    font-size: .8em;
    margin-bottom: 7px;
    color: #3d3b3b;
    font-weight: 500;
}
.form-control, .form-select {
    width: 100%;
    padding: 11px 12px;
    font-size: .8em;
    border: 1px solid #dbdbdb;
    border-radius: 5px;
    background: #fafafa;
    color: #222;
    font-family: inherit;
    transition: border-color 0.2s;
    box-sizing: border-box;
    outline: none;
}
.form-control:focus, .form-select:focus {
    border-color: #cb0025;
}
.form-control::-webkit-input-placeholder {
    color: #878787;
}
.form-control:-moz-placeholder {
    color: #878787;
}
.form-control::-moz-placeholder {
    color: #878787;
}
.form-control:-ms-input-placeholder {
    color: #878787;
}
textarea.form-control {
    resize: vertical;
    min-height: 45px;
    max-height: 180px;
}
.captcha-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}
#captchaCanvas, .border.rounded {
    background: #ededed;
    border-radius: 6px;
    border: 1px solid #ccc;
    padding: 0;
    font-size: 1.3rem;
    letter-spacing: 8px;
    font-family: 'Courier New', Courier, monospace;
    color: #222;
    font-weight: 700;
    user-select: none;
}
.btn-outline-secondary {
    font-size: 1.3rem;
    color: #7a7a7a;
    padding: 6px 12px;
    border-radius: 5px;
    transition: color .2s;
    border: 1px solid #ccc;
    background: none;
    cursor: pointer;
}
.btn-outline-secondary:hover {
    color: #cb0025;
    border-color: #cb0025;
}
.btn-danger, .btn-danger.w-100 {
    width: 100%;
    background: #cb0025;
    color: #fff;
    border: none;
    font-size: 1.1rem;
    padding: 16px;
    border-radius: 5px;
    font-weight: 600;
    letter-spacing: 0.12em;
    cursor: pointer;
    transition: background 0.18s;
    margin-top: 7px;
}
.btn-danger:hover, .btn-danger:focus {
    background: #a8011d;
}
.privacy-text p{
    font-size: 0.9em;
    color: rgba(32, 80, 114, 0.99) !important;
    margin-top: 12px;
    line-height: 1.4;
}
/* Responsive tweaks */
@media (max-width: 875px) {
    .reservation-modal {
        max-width: 98vw;
        padding: 12px 4px 8px 4px;
    }
    .form-section {
        padding: 14px 4vw;
    }
}
@media (max-width: 550px) {
    .modal-title {
        font-size: 1.3rem;
        padding: 12px 0;
    }
    .form-section {
        padding: 10px 2vw;
    }
}