/* Modern Luxury Booking Form Styling for Golden Hands Spa */

.modern-booking-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

.modern-booking-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #d4af37, #e2c054, #b89428);
}

.booking-header-title {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    color: #1a1a1a;
    font-size: 28px;
    margin-bottom: 8px;
}

.booking-header-sub {
    color: #666;
    font-size: 14px;
    margin-bottom: 28px;
    line-height: 1.6;
}

.modern-form-group {
    margin-bottom: 20px;
    position: relative;
}

.modern-form-group label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: #444444;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modern-form-group label i {
    color: #d4af37;
    font-size: 16px;
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #d4af37;
    font-size: 18px;
    pointer-events: none;
    z-index: 2;
}

.modern-input {
    width: 100%;
    height: 52px;
    padding: 12px 16px 12px 48px !important;
    background: #fcfbf7 !important;
    border: 1px solid #e2ded0 !important;
    border-radius: 12px !important;
    font-size: 14px !important;
    color: #222222 !important;
    transition: all 0.3s ease !important;
    box-sizing: border-box !important;
}

.modern-input:focus {
    outline: none !important;
    border-color: #d4af37 !important;
    background: #ffffff !important;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2) !important;
}

textarea.modern-input {
    height: 110px !important;
    padding-top: 14px !important;
    resize: vertical;
}

.modern-select-wrap {
    position: relative;
    width: 100%;
}

/* Responsive & Full Text Display for Service Choose Dropdown */
.modern-select-wrap select,
.modern-select-wrap .nice-select,
.modern-select-wrap select option {
    width: 100% !important;
    min-height: 52px !important;
    height: auto !important;
    padding: 12px 35px 12px 48px !important;
    background-color: #fcfbf7 !important;
    border: 1px solid #e2ded0 !important;
    border-radius: 12px !important;
    font-size: 14px !important;
    color: #222222 !important;
    line-height: 1.5 !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    text-overflow: clip !important;
    box-sizing: border-box !important;
}

/* Fix Nice-Select Plugin truncation & mobile overflow */
.modern-select-wrap .nice-select {
    float: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

.modern-select-wrap .nice-select .current {
    white-space: normal !important;
    word-wrap: break-word !important;
    line-height: 1.4 !important;
    display: block !important;
    width: 100% !important;
    padding-right: 15px !important;
    color: #222222 !important;
    font-weight: 500 !important;
}

.modern-select-wrap .nice-select .list {
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100vw !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
    border: 1px solid #d4af37 !important;
    background: #ffffff !important;
    padding: 6px 0 !important;
    max-height: 340px !important;
    overflow-y: auto !important;
    z-index: 9999 !important;
}

.modern-select-wrap .nice-select .option {
    white-space: normal !important;
    word-wrap: break-word !important;
    line-height: 1.4 !important;
    height: auto !important;
    min-height: 44px !important;
    padding: 10px 16px !important;
    font-size: 13px !important;
    color: #333333 !important;
    border-bottom: 1px solid #f0f0f0 !important;
    display: flex !important;
    align-items: center !important;
}

.modern-select-wrap .nice-select .option:last-child {
    border-bottom: none !important;
}

.modern-select-wrap .nice-select .option.selected,
.modern-select-wrap .nice-select .option:hover {
    background-color: #fff8e6 !important;
    color: #a67c1e !important;
    font-weight: 700 !important;
}

/* Native Option Styling for Mobile Devices */
select option {
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 10px !important;
    font-size: 14px !important;
    color: #1a1a1a !important;
    background: #ffffff !important;
}

.modern-select-wrap::after {
    content: '\eed8';
    font-family: 'IcoFont';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    pointer-events: none;
}

/* Time Slot Quick Selector */
.time-slots-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.time-chip {
    background: #f5f2e9;
    border: 1px solid #e0dabf;
    color: #444;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.time-chip:hover, .time-chip.selected {
    background: #d4af37;
    color: #ffffff;
    border-color: #d4af37;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
}

/* Dynamic Price Estimator Pill */
.price-estimate-badge {
    background: #fff8e6;
    border: 1px solid #f0dc9e;
    border-radius: 12px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.price-estimate-badge span {
    font-size: 13px;
    color: #666;
    font-weight: 600;
}

.price-estimate-badge strong {
    font-size: 18px;
    color: #a67c1e;
    font-weight: 700;
}

/* Modern Submit Button */
.btn-modern-submit {
    width: 100%;
    height: 56px;
    background: linear-gradient(135deg, #d4af37 0%, #b89428 100%);
    color: #ffffff;
    font-family: 'Cinzel', serif;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    letter-spacing: 0.5px;
}

.btn-modern-submit:hover {
    background: linear-gradient(135deg, #e2c050 0%, #c49f31 100%);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
}

/* Sidebar Info Card Enhancements */
.sidebar-info-card {
    background: linear-gradient(145deg, #1c1f26, #121419);
    border-radius: 24px;
    padding: 35px 30px;
    color: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    height: 100%;
}

.sidebar-info-card h4 {
    color: #d4af37;
    font-family: 'Cinzel', serif;
    font-size: 20px;
    margin-bottom: 15px;
}

.info-item-block {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.info-item-block i {
    font-size: 24px;
    color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-item-block h5 {
    color: #ffffff;
    font-size: 15px;
    margin: 0 0 4px 0;
    font-weight: 700;
}

.info-item-block p {
    color: #a0aec0;
    font-size: 13px;
    margin: 0;
    line-height: 1.5;
}

/* Responsive & Luxury Front-End Package Price Display Styling */
.package_item {
    position: relative;
    padding-left: 95px !important;
    min-height: 80px;
    margin-bottom: 35px !important;
    background: #ffffff;
    border-radius: 16px;
    padding: 16px 16px 16px 105px !important;
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.package_item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.4);
}

.package_item img {
    width: 78px !important;
    height: 78px !important;
    border-radius: 12px !important;
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    object-fit: cover;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.package_item h5 {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: space-between !important;
    font-size: 16px !important;
    line-height: 1.4 !important;
    margin-bottom: 8px !important;
    gap: 8px;
}

.package_item h5 a {
    color: #1a1a1a !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    text-decoration: none;
    flex: 1;
    min-width: 180px;
    transition: color 0.3s ease;
}

.package_item h5 a:hover {
    color: #d4af37 !important;
}

.package_item h5 span:not(.piborder),
.package_item span:not(.piborder) {
    background: #fff8e6 !important;
    color: #a67c1e !important;
    border: 1px solid #f0dc9e !important;
    border-radius: 20px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    padding: 4px 12px !important;
    margin: 0 !important;
    white-space: nowrap !important;
    display: inline-flex !important;
    align-items: center !important;
    box-shadow: 0 2px 6px rgba(212, 175, 55, 0.1);
}

.package_item .piborder {
    display: none !important;
}

.package_item p {
    color: #718096 !important;
    font-size: 13px !important;
    margin: 0 !important;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}

.package_item p::before {
    content: '\eedb';
    font-family: 'IcoFont';
    color: #d4af37;
    font-size: 14px;
}

/* Mobile & Tablet Responsive Alignment */
@media (max-width: 768px) {
    .package_item {
        padding: 16px 14px 16px 92px !important;
    }

    .package_item img {
        width: 68px !important;
        height: 68px !important;
        left: 10px;
    }

    .package_item h5 {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 6px !important;
    }

    .package_item h5 a {
        font-size: 15px !important;
        line-height: 1.3 !important;
    }

    .package_item h5 span:not(.piborder),
    .package_item span:not(.piborder) {
        font-size: 12px !important;
        padding: 3px 10px !important;
    }
}
.btn-modern-submit {
    width: 100%;
    height: 56px;
    background: linear-gradient(135deg, #d4af37 0%, #b89428 100%);
    color: #ffffff;
    font-family: 'Cinzel', serif;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    letter-spacing: 0.5px;
}

.btn-modern-submit:hover {
    background: linear-gradient(135deg, #e2c050 0%, #c49f31 100%);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
}

/* Sidebar Info Card Enhancements */
.sidebar-info-card {
    background: linear-gradient(145deg, #1c1f26, #121419);
    border-radius: 24px;
    padding: 35px 30px;
    color: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    height: 100%;
}

.sidebar-info-card h4 {
    color: #d4af37;
    font-family: 'Cinzel', serif;
    font-size: 20px;
    margin-bottom: 15px;
}

.info-item-block {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.info-item-block i {
    font-size: 24px;
    color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-item-block h5 {
    color: #ffffff;
    font-size: 15px;
    margin: 0 0 4px 0;
    font-weight: 700;
}

.info-item-block p {
    color: #a0aec0;
    font-size: 13px;
    margin: 0;
    line-height: 1.5;
}
