/* Box Sizing Reset */
.acb-booking-wrapper,
.acb-booking-wrapper * {
    box-sizing: border-box;
}

/* Outer Section Wrapper */
.acb-booking-wrapper {
    width: 100%;
    background-color: #0d0826;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
}

/* Inner Dotted Box Container */
.acb-booking-container {
    max-width: 900px;
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(255, 255, 255, 0.15);
    padding: 60px 50px;
    text-align: center;
}

/* Subtitle Header */
.acb-booking-subtitle {
    color: #ffffff;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 12px;
    opacity: 0.8;
}

/* Main Title */
.acb-booking-title {
    color: #ffffff;
    font-size: 46px;
    font-family: 'Georgia', serif;
    font-weight: 400;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.acb-booking-title span {
    color: #d99a6c;
}

/* Description Text */
.acb-booking-description {
    color: #ffffff;
    font-size: 13px;
    letter-spacing: 0.5px;
    margin: 0 auto 40px;
    opacity: 0.8;
    max-width: 650px;
}

/* ==========================================================================
   CONTACT FORM 7 GRID & STYLING OVERRIDES
   ========================================================================== */

/* Grid Layout */
.acb-cf7-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.acb-cf7-col {
    flex: 1 1 calc(50% - 10px);
    min-width: 250px;
}

.acb-cf7-full,
.acb-cf7-submit {
    flex: 1 1 100%;
}

/* Input Fields, Select, & Textareas */
.acb-booking-form-wrap input[type="text"],
.acb-booking-form-wrap input[type="email"],
.acb-booking-form-wrap input[type="date"],
.acb-booking-form-wrap select,
.acb-booking-form-wrap textarea {
    width: 100% !important;
    background-color: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
    padding: 16px 18px !important;
    font-size: 11px !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    border-radius: 0px !important;
    outline: none !important;
    box-shadow: none !important;
    transition: border-color 0.3s ease;
}

.acb-booking-form-wrap input:focus,
.acb-booking-form-wrap select:focus,
.acb-booking-form-wrap textarea:focus {
    border-color: #d99a6c !important;
}

/* Placeholders */
.acb-booking-form-wrap input::placeholder,
.acb-booking-form-wrap textarea::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
    font-size: 11px;
    letter-spacing: 1.5px;
}

/* Custom Select Dropdown Arrow */
.acb-booking-form-wrap select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23ffffff" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>') !important;
    background-repeat: no-repeat !important;
    background-position: right 12px center !important;
    background-size: 18px !important;
    color: rgba(255, 255, 255, 0.6) !important;
}

.acb-booking-form-wrap select option {
    background-color: #0d0826;
    color: #ffffff;
}

/* Textarea height */
.acb-booking-form-wrap textarea {
    height: 140px !important;
    resize: vertical;
}

/* Submit Button Centered */
.acb-cf7-submit {
    text-align: center;
    margin-top: 15px;
}

.acb-booking-form-wrap input[type="submit"] {
    background-color: #d99a6c !important;
    color: #ffffff !important;
    border: none !important;
    padding: 16px 40px !important;
    font-size: 11px !important;
    letter-spacing: 2px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    transition: background-color 0.3s ease !important;
    border-radius: 0px !important;
    display: inline-block !important;
}

.acb-booking-form-wrap input[type="submit"]:hover {
    background-color: #c4885b !important;
}

/* CF7 Spinner & Validation Message Adjustments */
.acb-booking-form-wrap .wpcf7-spinner {
    display: block;
    margin: 10px auto 0;
}

.acb-booking-form-wrap .wpcf7-response-output {
    border-color: #d99a6c !important;
    color: #ffffff !important;
    font-size: 12px;
    margin-top: 20px !important;
}

.acb-booking-form-wrap .wpcf7-not-valid-tip {
    color: #ff6b6b;
    font-size: 10px;
    text-transform: uppercase;
    text-align: left;
    margin-top: 4px;
}

/* Responsive Breakpoints */
@media (max-width: 768px) {
    .acb-booking-container {
        padding: 40px 20px;
    }

    .acb-booking-title {
        font-size: 32px;
    }

    .acb-cf7-col {
        flex: 1 1 100%;
    }
}