.gb-booking-form-wrapper {
    background: #080808;
    border: 1px solid rgba(255, 0, 51, 0.15);
    border-radius: 12px;
    padding: 40px;
    max-width: 720px;
    margin: 40px auto;
    font-family: 'DM Sans', -apple-system, sans-serif;
    color: #ffffff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 0, 51, 0.05);
}

.gb-booking-header h2 {
    font-family: 'Cormorant Garamond', 'Cinzel', serif;
    font-size: 2.3rem;
    font-weight: 700;
    text-align: center;
    color: #ffffff;
    text-shadow: 0 0 15px rgba(255, 0, 51, 0.4);
    margin-bottom: 5px;
}

.gb-booking-header .gb-sub {
    font-size: 1.1rem;
    color: #ff0033;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 25px;
}

.gb-intro-box {
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid #ff0033;
    padding: 15px 20px;
    margin-bottom: 35px;
    border-radius: 0 8px 8px 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #cccccc;
}

/* Steps Progress bar */
.gb-steps-progress {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 40px;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

.gb-steps-progress::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10px;
    right: 10px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
    transform: translateY(-50%);
}

.gb-step-indicator {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #121212;
    border: 2px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    z-index: 2;
    transition: all 0.3s ease;
    color: #999;
}

.gb-step-indicator.active {
    background: #ff0033;
    border-color: #ff0033;
    color: #fff;
    box-shadow: 0 0 10px rgba(255, 0, 51, 0.6);
}

.gb-step-indicator.completed {
    background: #440011;
    border-color: #ff0033;
    color: #ff0033;
}

/* Step Content Styles */
.gb-form-step {
    display: none;
}

.gb-form-step.active {
    display: block;
}

.gb-form-step h3 {
    font-family: 'Cormorant Garamond', 'Cinzel', serif;
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.gb-field-group {
    margin-bottom: 25px;
}

.gb-field-group label {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 8px;
    color: #e0e0e0;
}

.field-desc {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 10px;
    line-height: 1.4;
}

.gb-input {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: #ffffff;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.gb-input:focus {
    border-color: #ff0033;
    background: rgba(255, 255, 255, 0.08);
    outline: none;
    box-shadow: 0 0 10px rgba(255, 0, 51, 0.25);
}

.gb-textarea {
    min-height: 100px;
    resize: vertical;
}

.gb-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: normal !important;
    font-size: 0.9rem !important;
    color: #ccc !important;
    cursor: pointer;
}

.gb-checkbox-label input {
    margin-top: 3px;
    accent-color: #ff0033;
}

.gb-step-navigation {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 30px;
}

.gb-btn {
    padding: 12px 25px;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
}

.gb-btn-next, .gb-btn-submit {
    background: #ff0033;
    color: #fff;
    box-shadow: 0 0 10px rgba(255, 0, 51, 0.3);
}

.gb-btn-next:hover, .gb-btn-submit:hover {
    background: #e6002e;
    box-shadow: 0 0 18px rgba(255, 0, 51, 0.6);
}

.gb-btn-prev {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gb-btn-prev:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Payment & Deposit Custom Panels */
.gb-deposit-notice {
    background: rgba(255, 0, 51, 0.06);
    border: 1px solid rgba(255, 0, 51, 0.2);
    border-radius: 6px;
    padding: 15px 20px;
    margin-bottom: 25px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.gb-deposit-notice .notice-title {
    font-weight: bold;
    color: #ff0033;
    margin-bottom: 5px;
}

.gb-payment-options {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.gb-payment-pill {
    flex: 1;
    text-align: center;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 600;
}

.gb-payment-pill input {
    display: none;
}

.gb-payment-pill.active {
    border-color: #ff0033;
    background: rgba(255, 0, 51, 0.08);
    color: #ff0033;
}

.gb-payment-panel {
    display: none;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    margin-bottom: 25px;
}

.gb-payment-panel.active {
    display: block;
}

.square-simulated-fields {
    display: flex;
    gap: 10px;
}

.square-simulated-fields .half { flex: 2; }
.square-simulated-fields .quarter { flex: 1; }

.gb-payid-details {
    margin-bottom: 15px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 4px;
    font-size: 0.9rem;
}

/* Thank you block */
.gb-thankyou-card {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.gb-thankyou-card h2 {
    font-family: 'Cormorant Garamond', 'Cinzel', serif;
    font-size: 2.2rem;
    color: #ff0033;
    margin-bottom: 20px;
}

.gb-thankyou-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #e0e0e0;
    max-width: 580px;
    margin: 10px auto;
}
