/* Resort Booking Widget Styles */
.rbw-booking-widget {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    transition: transform 0.3s ease;
}

.rbw-booking-widget:hover {
    transform: translateY(-4px);
}

.rbw-widget-header {
    text-align: center;
    margin-bottom: 32px;
}

.rbw-widget-title {
    font-size: 28px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 8px;
    margin-top: 0;
}

.rbw-widget-subtitle {
    color: #718096;
    font-size: 16px;
    margin: 0;
}

.rbw-form-group {
    margin-bottom: 24px;
}

.rbw-form-label {
    display: block;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
    font-size: 16px;
}

.rbw-select-wrapper {
    position: relative;
    transition: transform 0.2s ease;
}

.rbw-form-select {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 16px;
    color: #2d3748;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 16px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 50px;
}

.rbw-form-select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.rbw-form-select:hover {
    border-color: #cbd5e0;
}

.rbw-booking-button {
    width: 100%;
    padding: 18px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.rbw-booking-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.rbw-booking-button:active {
    transform: translateY(0);
}

.rbw-booking-button:disabled {
    background: #e2e8f0 !important;
    color: #a0aec0;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.rbw-booking-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.rbw-booking-button:hover::before {
    left: 100%;
}

.rbw-features {
    display: flex;
    justify-content: space-around;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
}

.rbw-feature {
    text-align: center;
    flex: 1;
}

.rbw-feature-icon {
    width: 32px;
    height: 32px;
    margin: 0 auto 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.rbw-feature-text {
    font-size: 12px;
    color: #718096;
    font-weight: 500;
}

.rbw-success-message {
    background: #f0fff4;
    border: 2px solid #68d391;
    color: #22543d;
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 20px;
    display: none;
    text-align: center;
    font-weight: 500;
}

.rbw-mobile-label {
    display: none;
}

@media (max-width: 768px) {
    .rbw-booking-widget {
        padding: 24px;
        margin: 10px;
    }
    
    .rbw-widget-title {
        font-size: 24px;
    }
    
    .rbw-booking-button {
        padding: 16px 20px;
        font-size: 16px;
    }
    
    .rbw-desktop-label {
        display: none;
    }
    
    .rbw-mobile-label {
        display: inline;
    }
}