/* 4JAKS Forms Stylesheet */

/* Form Styles */
.form-input,
.form-select,
.form-textarea {
    background: rgba(30, 25, 40, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #f8fafc;
    transition: all 0.2s ease;
    font-size: 1rem;
}

/* Ensure select matches input height */
.form-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='rgba(255,255,255,0.5)'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.25rem;
    padding-right: 3rem;
    min-height: 3.75rem;
    line-height: 1.5;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #ec4899;
    box-shadow: 0 0 0 2px rgba(236, 72, 153, 0.15);
    background: rgba(40, 30, 55, 0.9);
}

.form-label {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.625rem;
    display: block;
}

/* Button Styles */
.btn-primary {
    background: linear-gradient(135deg, #ec4899 0%, #d946ef 50%, #a855f7 100%);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary span {
    position: relative;
    z-index: 1;
}

/* Time Slot / Day Selection Styles */
.time-slot {
    cursor: pointer;
    transition: all 0.2s ease;
    background: rgba(30, 25, 40, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.time-slot:hover {
    border-color: rgba(236, 72, 153, 0.4);
    background: rgba(236, 72, 153, 0.1);
    transform: translateY(-1px);
}

.time-slot.selected {
    border-color: #ec4899;
    background: rgba(236, 72, 153, 0.15);
    box-shadow: 0 0 0 1px rgba(236, 72, 153, 0.3);
}

.time-slot.unavailable {
    opacity: 0.35;
    cursor: not-allowed;
    background: rgba(60, 60, 70, 0.3);
}

.time-slot.unavailable:hover {
    border-color: rgba(255, 255, 255, 0.08);
    background: rgba(60, 60, 70, 0.3);
    transform: none;
}

/* Addon Card Styles */
.addon-card {
    position: relative;
    transition: all 0.3s ease;
}

.addon-card:hover {
    transform: scale(1.02);
}

.addon-card.selected {
    border-color: #ec4899;
}

.addon-btn {
    transition: all 0.3s ease;
}

