.nec-booking-wrapper {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.nec-booking-container {
    max-width: 900px;
    margin: 0 auto;
}

.nec-form-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    color: #fff;
}

.nec-header {
    text-align: center;
    margin-bottom: 35px;
}

.nec-header h2 {
    font-size: 28px;
    margin: 0 0 8px 0;
    background: linear-gradient(135deg, #fff 0%, #e2c28b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nec-header p {
    color: #94a3b8;
    font-size: 14px;
    margin: 0;
}

.nec-form-row {
    margin-bottom: 20px;
}

.nec-two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.nec-full-width {
    width: 100%;
}

.nec-form-group {
    position: relative;
}

.nec-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
    color: #e2e8f0;
}

.nec-form-group input,
.nec-form-group select,
.nec-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #334155;
    border-radius: 10px;
    background: #0f172a;
    color: #fff;
    font-size: 15px;
    box-sizing: border-box;
}

.nec-form-group input:focus,
.nec-form-group select:focus,
.nec-form-group textarea:focus {
    outline: none;
    border-color: #e2c28b;
}

.nec-hint {
    display: block;
    font-size: 11px;
    color: #64748b;
    margin-top: 6px;
}

.nec-checkbox label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.nec-checkbox input {
    width: 18px;
    height: 18px;
}

.nec-submit-btn {
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, #e2c28b 0%, #c4a25a 100%);
    color: #1a1a2e;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.nec-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.nec-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Google Places Autocomplete Styling */
.pac-container {
    z-index: 999999 !important;
    border-radius: 8px !important;
    background: #ffffff !important;
    border: 1px solid #e2c28b !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2) !important;
}

.pac-item {
    padding: 10px 15px !important;
    color: #1a1a2e !important;
    background: #ffffff !important;
    border-bottom: 1px solid #e2e8f0 !important;
    font-size: 14px !important;
    cursor: pointer !important;
}

.pac-item:hover {
    background: #e2c28b !important;
    color: #1a1a2e !important;
}

.pac-item-selected {
    background: #e2c28b !important;
    color: #1a1a2e !important;
}

.pac-item-query {
    color: #1a1a2e !important;
    font-weight: bold !important;
}

.pac-icon {
    display: none !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nec-booking-wrapper {
        padding: 10px;
    }
    
    .nec-form-card {
        padding: 25px;
    }
    
    .nec-two-columns {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .nec-header h2 {
        font-size: 22px;
    }
    
    .nec-header p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .nec-form-card {
        padding: 20px;
    }
    
    .nec-header h2 {
        font-size: 20px;
    }
    
    .nec-form-group input,
    .nec-form-group select,
    .nec-form-group textarea {
        padding: 10px 14px;
        font-size: 14px;
    }
    
    .nec-submit-btn {
        padding: 12px 16px;
        font-size: 14px;
    }
}